Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 2 | /** |
| 3 | * Copyright (c) 2011-2015 Tsinghua University, P.R.China. |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 4 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 5 | * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and |
| 6 | * contributors. |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 7 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 8 | * ndnSIM is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 11 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 12 | * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 15 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | * |
| 19 | * @author Xiaoke Jiang <shock.jiang@gmail.com> |
| 20 | **/ |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 21 | |
Alexander Afanasyev | 0c39537 | 2014-12-20 15:54:02 -0800 | [diff] [blame] | 22 | #include "ndn-consumer-zipf-mandelbrot.hpp" |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 23 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 24 | #include <math.h> |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 25 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 26 | NS_LOG_COMPONENT_DEFINE("ndn.ConsumerZipfMandelbrot"); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 27 | |
| 28 | namespace ns3 { |
| 29 | namespace ndn { |
| 30 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 31 | NS_OBJECT_ENSURE_REGISTERED(ConsumerZipfMandelbrot); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 32 | |
| 33 | TypeId |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 34 | ConsumerZipfMandelbrot::GetTypeId(void) |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 35 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 36 | static TypeId tid = |
| 37 | TypeId("ns3::ndn::ConsumerZipfMandelbrot") |
| 38 | .SetGroupName("Ndn") |
| 39 | .SetParent<ConsumerCbr>() |
| 40 | .AddConstructor<ConsumerZipfMandelbrot>() |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 41 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 42 | .AddAttribute("NumberOfContents", "Number of the Contents in total", StringValue("100"), |
| 43 | MakeUintegerAccessor(&ConsumerZipfMandelbrot::SetNumberOfContents, |
| 44 | &ConsumerZipfMandelbrot::GetNumberOfContents), |
| 45 | MakeUintegerChecker<uint32_t>()) |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 46 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 47 | .AddAttribute("q", "parameter of improve rank", StringValue("0.7"), |
| 48 | MakeDoubleAccessor(&ConsumerZipfMandelbrot::SetQ, |
| 49 | &ConsumerZipfMandelbrot::GetQ), |
| 50 | MakeDoubleChecker<double>()) |
| 51 | |
| 52 | .AddAttribute("s", "parameter of power", StringValue("0.7"), |
| 53 | MakeDoubleAccessor(&ConsumerZipfMandelbrot::SetS, |
| 54 | &ConsumerZipfMandelbrot::GetS), |
| 55 | MakeDoubleChecker<double>()); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 56 | |
| 57 | return tid; |
| 58 | } |
| 59 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 60 | ConsumerZipfMandelbrot::ConsumerZipfMandelbrot() |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 61 | : m_N(100) // needed here to make sure when SetQ/SetS are called, there is a valid value of N |
| 62 | , m_q(0.7) |
| 63 | , m_s(0.7) |
Alexander Afanasyev | d6453cd | 2015-08-20 21:45:36 -0700 | [diff] [blame] | 64 | , m_seqRng(CreateObject<UniformRandomVariable>()) |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 65 | { |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 66 | // SetNumberOfContents is called by NS-3 object system during the initialization |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 67 | } |
| 68 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 69 | ConsumerZipfMandelbrot::~ConsumerZipfMandelbrot() |
| 70 | { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 74 | ConsumerZipfMandelbrot::SetNumberOfContents(uint32_t numOfContents) |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 75 | { |
| 76 | m_N = numOfContents; |
| 77 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 78 | NS_LOG_DEBUG(m_q << " and " << m_s << " and " << m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 79 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 80 | m_Pcum = std::vector<double>(m_N + 1); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 81 | |
| 82 | m_Pcum[0] = 0.0; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 83 | for (uint32_t i = 1; i <= m_N; i++) { |
| 84 | m_Pcum[i] = m_Pcum[i - 1] + 1.0 / std::pow(i + m_q, m_s); |
| 85 | } |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 86 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 87 | for (uint32_t i = 1; i <= m_N; i++) { |
| 88 | m_Pcum[i] = m_Pcum[i] / m_Pcum[m_N]; |
| 89 | NS_LOG_LOGIC("Cumulative probability [" << i << "]=" << m_Pcum[i]); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | |
| 93 | uint32_t |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 94 | ConsumerZipfMandelbrot::GetNumberOfContents() const |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 95 | { |
| 96 | return m_N; |
| 97 | } |
| 98 | |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 99 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 100 | ConsumerZipfMandelbrot::SetQ(double q) |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 101 | { |
| 102 | m_q = q; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 103 | SetNumberOfContents(m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | double |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 107 | ConsumerZipfMandelbrot::GetQ() const |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 108 | { |
| 109 | return m_q; |
| 110 | } |
| 111 | |
| 112 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 113 | ConsumerZipfMandelbrot::SetS(double s) |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 114 | { |
| 115 | m_s = s; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 116 | SetNumberOfContents(m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | double |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 120 | ConsumerZipfMandelbrot::GetS() const |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 121 | { |
| 122 | return m_s; |
| 123 | } |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 124 | |
| 125 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 126 | ConsumerZipfMandelbrot::SendPacket() |
| 127 | { |
| 128 | if (!m_active) |
| 129 | return; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 130 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 131 | NS_LOG_FUNCTION_NOARGS(); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 132 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 133 | uint32_t seq = std::numeric_limits<uint32_t>::max(); // invalid |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 134 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 135 | // std::cout << Simulator::Now ().ToDouble (Time::S) << "s max -> " << m_seqMax << "\n"; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 136 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 137 | while (m_retxSeqs.size()) { |
| 138 | seq = *m_retxSeqs.begin(); |
| 139 | m_retxSeqs.erase(m_retxSeqs.begin()); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 140 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 141 | // NS_ASSERT (m_seqLifetimes.find (seq) != m_seqLifetimes.end ()); |
| 142 | // if (m_seqLifetimes.find (seq)->time <= Simulator::Now ()) |
| 143 | // { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 144 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 145 | // NS_LOG_DEBUG ("Expire " << seq); |
| 146 | // m_seqLifetimes.erase (seq); // lifetime expired. Trying to find another unexpired |
| 147 | // sequence number |
| 148 | // continue; |
| 149 | // } |
| 150 | NS_LOG_DEBUG("=interest seq " << seq << " from m_retxSeqs"); |
| 151 | break; |
| 152 | } |
| 153 | |
| 154 | if (seq == std::numeric_limits<uint32_t>::max()) // no retransmission |
| 155 | { |
| 156 | if (m_seqMax != std::numeric_limits<uint32_t>::max()) { |
| 157 | if (m_seq >= m_seqMax) { |
| 158 | return; // we are totally done |
| 159 | } |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 160 | } |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 161 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 162 | seq = ConsumerZipfMandelbrot::GetNextSeq(); |
| 163 | m_seq++; |
| 164 | } |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 165 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 166 | // std::cout << Simulator::Now ().ToDouble (Time::S) << "s -> " << seq << "\n"; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 167 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 168 | // |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 169 | shared_ptr<Name> nameWithSequence = make_shared<Name>(m_interestName); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 170 | nameWithSequence->appendSequenceNumber(seq); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 171 | // |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 172 | |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 173 | shared_ptr<Interest> interest = make_shared<Interest>(); |
Alexander Afanasyev | d6453cd | 2015-08-20 21:45:36 -0700 | [diff] [blame] | 174 | interest->setNonce(m_rand->GetValue(0, std::numeric_limits<uint32_t>::max())); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 175 | interest->setName(*nameWithSequence); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 176 | |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 177 | // NS_LOG_INFO ("Requesting Interest: \n" << *interest); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 178 | NS_LOG_INFO("> Interest for " << seq << ", Total: " << m_seq << ", face: " << m_face->getId()); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 179 | NS_LOG_DEBUG("Trying to add " << seq << " with " << Simulator::Now() << ". already " |
| 180 | << m_seqTimeouts.size() << " items"); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 181 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 182 | m_seqTimeouts.insert(SeqTimeout(seq, Simulator::Now())); |
| 183 | m_seqFullDelay.insert(SeqTimeout(seq, Simulator::Now())); |
Alexander Afanasyev | 400aae1 | 2013-01-19 13:27:52 -0800 | [diff] [blame] | 184 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 185 | m_seqLastDelay.erase(seq); |
| 186 | m_seqLastDelay.insert(SeqTimeout(seq, Simulator::Now())); |
Alexander Afanasyev | 400aae1 | 2013-01-19 13:27:52 -0800 | [diff] [blame] | 187 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 188 | m_seqRetxCounts[seq]++; |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 189 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 190 | m_rtt->SentSeq(SequenceNumber32(seq), 1); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 191 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 192 | m_transmittedInterests(interest, this, m_face); |
Alexander Afanasyev | 50ea1a3 | 2016-09-08 15:44:08 -0700 | [diff] [blame] | 193 | m_appLink->onReceiveInterest(*interest); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 194 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 195 | ConsumerZipfMandelbrot::ScheduleNextPacket(); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 196 | } |
| 197 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 198 | uint32_t |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 199 | ConsumerZipfMandelbrot::GetNextSeq() |
| 200 | { |
| 201 | uint32_t content_index = 1; //[1, m_N] |
| 202 | double p_sum = 0; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 203 | |
Alexander Afanasyev | d6453cd | 2015-08-20 21:45:36 -0700 | [diff] [blame] | 204 | double p_random = m_seqRng->GetValue(); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 205 | while (p_random == 0) { |
Alexander Afanasyev | d6453cd | 2015-08-20 21:45:36 -0700 | [diff] [blame] | 206 | p_random = m_seqRng->GetValue(); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 207 | } |
| 208 | // if (p_random == 0) |
| 209 | NS_LOG_LOGIC("p_random=" << p_random); |
| 210 | for (uint32_t i = 1; i <= m_N; i++) { |
| 211 | p_sum = m_Pcum[i]; // m_Pcum[i] = m_Pcum[i-1] + p[i], p[0] = 0; e.g.: p_cum[1] = p[1], |
| 212 | // p_cum[2] = p[1] + p[2] |
| 213 | if (p_random <= p_sum) { |
| 214 | content_index = i; |
| 215 | break; |
| 216 | } // if |
| 217 | } // for |
| 218 | // content_index = 1; |
| 219 | NS_LOG_DEBUG("RandomNumber=" << content_index); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 220 | return content_index; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 224 | ConsumerZipfMandelbrot::ScheduleNextPacket() |
| 225 | { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 226 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 227 | if (m_firstTime) { |
| 228 | m_sendEvent = Simulator::Schedule(Seconds(0.0), &ConsumerZipfMandelbrot::SendPacket, this); |
| 229 | m_firstTime = false; |
| 230 | } |
| 231 | else if (!m_sendEvent.IsRunning()) |
| 232 | m_sendEvent = Simulator::Schedule((m_random == 0) ? Seconds(1.0 / m_frequency) |
| 233 | : Seconds(m_random->GetValue()), |
| 234 | &ConsumerZipfMandelbrot::SendPacket, this); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 235 | } |
| 236 | |
| 237 | } /* namespace ndn */ |
| 238 | } /* namespace ns3 */ |