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 | |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 24 | #include "model/ndn-app-face.hpp" |
| 25 | #include "utils/ndn-fw-hop-count-tag.hpp" |
Alexander Afanasyev | 1a0fff6 | 2013-01-19 14:29:51 -0800 | [diff] [blame] | 26 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 27 | #include <math.h> |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 28 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 29 | NS_LOG_COMPONENT_DEFINE("ndn.ConsumerZipfMandelbrot"); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 30 | |
| 31 | namespace ns3 { |
| 32 | namespace ndn { |
| 33 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 34 | NS_OBJECT_ENSURE_REGISTERED(ConsumerZipfMandelbrot); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 35 | |
| 36 | TypeId |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 37 | ConsumerZipfMandelbrot::GetTypeId(void) |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 38 | { |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 39 | static TypeId tid = |
| 40 | TypeId("ns3::ndn::ConsumerZipfMandelbrot") |
| 41 | .SetGroupName("Ndn") |
| 42 | .SetParent<ConsumerCbr>() |
| 43 | .AddConstructor<ConsumerZipfMandelbrot>() |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 44 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 45 | .AddAttribute("NumberOfContents", "Number of the Contents in total", StringValue("100"), |
| 46 | MakeUintegerAccessor(&ConsumerZipfMandelbrot::SetNumberOfContents, |
| 47 | &ConsumerZipfMandelbrot::GetNumberOfContents), |
| 48 | MakeUintegerChecker<uint32_t>()) |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 49 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 50 | .AddAttribute("q", "parameter of improve rank", StringValue("0.7"), |
| 51 | MakeDoubleAccessor(&ConsumerZipfMandelbrot::SetQ, |
| 52 | &ConsumerZipfMandelbrot::GetQ), |
| 53 | MakeDoubleChecker<double>()) |
| 54 | |
| 55 | .AddAttribute("s", "parameter of power", StringValue("0.7"), |
| 56 | MakeDoubleAccessor(&ConsumerZipfMandelbrot::SetS, |
| 57 | &ConsumerZipfMandelbrot::GetS), |
| 58 | MakeDoubleChecker<double>()); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 59 | |
| 60 | return tid; |
| 61 | } |
| 62 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 63 | ConsumerZipfMandelbrot::ConsumerZipfMandelbrot() |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 64 | : m_N(100) // needed here to make sure when SetQ/SetS are called, there is a valid value of N |
| 65 | , m_q(0.7) |
| 66 | , m_s(0.7) |
| 67 | , m_SeqRng(0.0, 1.0) |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 68 | { |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 69 | // SetNumberOfContents is called by NS-3 object system during the initialization |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 70 | } |
| 71 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 72 | ConsumerZipfMandelbrot::~ConsumerZipfMandelbrot() |
| 73 | { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 77 | ConsumerZipfMandelbrot::SetNumberOfContents(uint32_t numOfContents) |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 78 | { |
| 79 | m_N = numOfContents; |
| 80 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 81 | NS_LOG_DEBUG(m_q << " and " << m_s << " and " << m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 82 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 83 | m_Pcum = std::vector<double>(m_N + 1); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 84 | |
| 85 | m_Pcum[0] = 0.0; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 86 | for (uint32_t i = 1; i <= m_N; i++) { |
| 87 | m_Pcum[i] = m_Pcum[i - 1] + 1.0 / std::pow(i + m_q, m_s); |
| 88 | } |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 89 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 90 | for (uint32_t i = 1; i <= m_N; i++) { |
| 91 | m_Pcum[i] = m_Pcum[i] / m_Pcum[m_N]; |
| 92 | NS_LOG_LOGIC("Cumulative probability [" << i << "]=" << m_Pcum[i]); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 93 | } |
| 94 | } |
| 95 | |
| 96 | uint32_t |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 97 | ConsumerZipfMandelbrot::GetNumberOfContents() const |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 98 | { |
| 99 | return m_N; |
| 100 | } |
| 101 | |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 102 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 103 | ConsumerZipfMandelbrot::SetQ(double q) |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 104 | { |
| 105 | m_q = q; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 106 | SetNumberOfContents(m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | double |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 110 | ConsumerZipfMandelbrot::GetQ() const |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 111 | { |
| 112 | return m_q; |
| 113 | } |
| 114 | |
| 115 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 116 | ConsumerZipfMandelbrot::SetS(double s) |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 117 | { |
| 118 | m_s = s; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 119 | SetNumberOfContents(m_N); |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | double |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 123 | ConsumerZipfMandelbrot::GetS() const |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 124 | { |
| 125 | return m_s; |
| 126 | } |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 127 | |
| 128 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 129 | ConsumerZipfMandelbrot::SendPacket() |
| 130 | { |
| 131 | if (!m_active) |
| 132 | return; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 133 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 134 | NS_LOG_FUNCTION_NOARGS(); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 135 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 136 | uint32_t seq = std::numeric_limits<uint32_t>::max(); // invalid |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 137 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 138 | // std::cout << Simulator::Now ().ToDouble (Time::S) << "s max -> " << m_seqMax << "\n"; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 139 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 140 | while (m_retxSeqs.size()) { |
| 141 | seq = *m_retxSeqs.begin(); |
| 142 | m_retxSeqs.erase(m_retxSeqs.begin()); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 143 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 144 | // NS_ASSERT (m_seqLifetimes.find (seq) != m_seqLifetimes.end ()); |
| 145 | // if (m_seqLifetimes.find (seq)->time <= Simulator::Now ()) |
| 146 | // { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 147 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 148 | // NS_LOG_DEBUG ("Expire " << seq); |
| 149 | // m_seqLifetimes.erase (seq); // lifetime expired. Trying to find another unexpired |
| 150 | // sequence number |
| 151 | // continue; |
| 152 | // } |
| 153 | NS_LOG_DEBUG("=interest seq " << seq << " from m_retxSeqs"); |
| 154 | break; |
| 155 | } |
| 156 | |
| 157 | if (seq == std::numeric_limits<uint32_t>::max()) // no retransmission |
| 158 | { |
| 159 | if (m_seqMax != std::numeric_limits<uint32_t>::max()) { |
| 160 | if (m_seq >= m_seqMax) { |
| 161 | return; // we are totally done |
| 162 | } |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 163 | } |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 164 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 165 | seq = ConsumerZipfMandelbrot::GetNextSeq(); |
| 166 | m_seq++; |
| 167 | } |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 168 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 169 | // std::cout << Simulator::Now ().ToDouble (Time::S) << "s -> " << seq << "\n"; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 170 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 171 | // |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 172 | shared_ptr<Name> nameWithSequence = make_shared<Name>(m_interestName); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 173 | nameWithSequence->appendSequenceNumber(seq); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 174 | // |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 175 | |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 176 | shared_ptr<Interest> interest = make_shared<Interest>(); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 177 | interest->setNonce(m_rand.GetValue()); |
| 178 | interest->setName(*nameWithSequence); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 179 | |
Alexander Afanasyev | faa01f9 | 2013-07-10 18:34:31 -0700 | [diff] [blame] | 180 | // NS_LOG_INFO ("Requesting Interest: \n" << *interest); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 181 | 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] | 182 | NS_LOG_DEBUG("Trying to add " << seq << " with " << Simulator::Now() << ". already " |
| 183 | << m_seqTimeouts.size() << " items"); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 184 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 185 | m_seqTimeouts.insert(SeqTimeout(seq, Simulator::Now())); |
| 186 | m_seqFullDelay.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_seqLastDelay.erase(seq); |
| 189 | m_seqLastDelay.insert(SeqTimeout(seq, Simulator::Now())); |
Alexander Afanasyev | 400aae1 | 2013-01-19 13:27:52 -0800 | [diff] [blame] | 190 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 191 | m_seqRetxCounts[seq]++; |
Saran Tarnoi | 5cd9a15 | 2013-02-15 15:59:15 -0800 | [diff] [blame] | 192 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 193 | m_rtt->SentSeq(SequenceNumber32(seq), 1); |
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 | m_transmittedInterests(interest, this, m_face); |
Mickey Sweatt | 89046c1 | 2014-11-16 20:32:27 -0800 | [diff] [blame] | 196 | m_face->onReceiveInterest(*interest); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 197 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 198 | ConsumerZipfMandelbrot::ScheduleNextPacket(); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 199 | } |
| 200 | |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 201 | uint32_t |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 202 | ConsumerZipfMandelbrot::GetNextSeq() |
| 203 | { |
| 204 | uint32_t content_index = 1; //[1, m_N] |
| 205 | double p_sum = 0; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 206 | |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 207 | double p_random = m_SeqRng.GetValue(); |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 208 | while (p_random == 0) { |
| 209 | p_random = m_SeqRng.GetValue(); |
| 210 | } |
| 211 | // if (p_random == 0) |
| 212 | NS_LOG_LOGIC("p_random=" << p_random); |
| 213 | for (uint32_t i = 1; i <= m_N; i++) { |
| 214 | p_sum = m_Pcum[i]; // m_Pcum[i] = m_Pcum[i-1] + p[i], p[0] = 0; e.g.: p_cum[1] = p[1], |
| 215 | // p_cum[2] = p[1] + p[2] |
| 216 | if (p_random <= p_sum) { |
| 217 | content_index = i; |
| 218 | break; |
| 219 | } // if |
| 220 | } // for |
| 221 | // content_index = 1; |
| 222 | NS_LOG_DEBUG("RandomNumber=" << content_index); |
Alexander Afanasyev | 1380010 | 2012-12-25 00:30:31 -0800 | [diff] [blame] | 223 | return content_index; |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 224 | } |
| 225 | |
| 226 | void |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 227 | ConsumerZipfMandelbrot::ScheduleNextPacket() |
| 228 | { |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 229 | |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 230 | if (m_firstTime) { |
| 231 | m_sendEvent = Simulator::Schedule(Seconds(0.0), &ConsumerZipfMandelbrot::SendPacket, this); |
| 232 | m_firstTime = false; |
| 233 | } |
| 234 | else if (!m_sendEvent.IsRunning()) |
| 235 | m_sendEvent = Simulator::Schedule((m_random == 0) ? Seconds(1.0 / m_frequency) |
| 236 | : Seconds(m_random->GetValue()), |
| 237 | &ConsumerZipfMandelbrot::SendPacket, this); |
Shock | b0f8315 | 2012-12-25 14:16:47 +0800 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | } /* namespace ndn */ |
| 241 | } /* namespace ns3 */ |