Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 2 | /* |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 3 | * Copyright (c) 2011 University of California, Los Angeles |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * Ilya Moiseenko <iliamo@cs.ucla.edu> |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
| 22 | #include "ns3/assert.h" |
| 23 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 24 | #include "ccnx-forwarding-strategy.h" |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 25 | #include "ns3/ptr.h" |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 26 | #include "ns3/log.h" |
| 27 | #include "ns3/simulator.h" |
Alexander Afanasyev | f377b33 | 2011-12-16 15:32:12 -0800 | [diff] [blame] | 28 | |
| 29 | #include "ccnx-pit.h" |
| 30 | #include "ccnx-pit-entry.h" |
| 31 | |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 32 | #include "ccnx-interest-header.h" |
| 33 | |
| 34 | #include <boost/ref.hpp> |
| 35 | #include <boost/foreach.hpp> |
| 36 | #include <boost/lambda/lambda.hpp> |
| 37 | #include <boost/lambda/bind.hpp> |
| 38 | namespace ll = boost::lambda; |
| 39 | |
| 40 | NS_LOG_COMPONENT_DEFINE ("CcnxForwardingStrategy"); |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 41 | |
| 42 | namespace ns3 { |
| 43 | |
Alexander Afanasyev | 23d2b54 | 2011-12-07 18:54:46 -0800 | [diff] [blame] | 44 | using namespace __ccnx_private; |
| 45 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 46 | NS_OBJECT_ENSURE_REGISTERED (CcnxForwardingStrategy); |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 47 | |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 48 | TypeId CcnxForwardingStrategy::GetTypeId (void) |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 49 | { |
Alexander Afanasyev | c74a602 | 2011-08-15 20:01:35 -0700 | [diff] [blame] | 50 | static TypeId tid = TypeId ("ns3::CcnxForwardingStrategy") |
Alexander Afanasyev | 070aa48 | 2011-08-20 00:38:25 -0700 | [diff] [blame] | 51 | .SetGroupName ("Ccnx") |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 52 | .SetParent<Object> () |
Alexander Afanasyev | f377b33 | 2011-12-16 15:32:12 -0800 | [diff] [blame] | 53 | |
| 54 | .AddTraceSource ("OutInterests", "Interests that were transmitted", |
| 55 | MakeTraceSourceAccessor (&CcnxForwardingStrategy::m_transmittedInterestsTrace)) |
| 56 | |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 57 | ; |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 58 | return tid; |
| 59 | } |
| 60 | |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 61 | CcnxForwardingStrategy::CcnxForwardingStrategy () |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 62 | { |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Alexander Afanasyev | 4fa5e84 | 2011-11-21 13:38:39 -0800 | [diff] [blame] | 65 | CcnxForwardingStrategy::~CcnxForwardingStrategy () |
| 66 | { |
| 67 | } |
| 68 | |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 69 | void |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 70 | CcnxForwardingStrategy::SetPit (Ptr<CcnxPit> pit) |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 71 | { |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 72 | m_pit = pit; |
Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -0700 | [diff] [blame] | 73 | } |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 74 | |
| 75 | bool |
| 76 | CcnxForwardingStrategy::PropagateInterestViaGreen (const CcnxPitEntry &pitEntry, |
| 77 | const Ptr<CcnxFace> &incomingFace, |
| 78 | Ptr<CcnxInterestHeader> &header, |
| 79 | const Ptr<const Packet> &packet) |
| 80 | { |
Alexander Afanasyev | 120bf31 | 2011-12-19 01:24:47 -0800 | [diff] [blame] | 81 | NS_LOG_FUNCTION (this); |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 82 | |
| 83 | int propagatedCount = 0; |
| 84 | |
Alexander Afanasyev | 23d2b54 | 2011-12-07 18:54:46 -0800 | [diff] [blame] | 85 | BOOST_FOREACH (const CcnxFibFaceMetric &metricFace, pitEntry.m_fibEntry.m_faces.get<i_metric> ()) |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 86 | { |
| 87 | if (metricFace.m_status == CcnxFibFaceMetric::NDN_FIB_RED || |
| 88 | metricFace.m_status == CcnxFibFaceMetric::NDN_FIB_YELLOW) |
| 89 | break; //propagate only to green faces |
| 90 | |
| 91 | if (pitEntry.m_incoming.find (metricFace.m_face) != pitEntry.m_incoming.end ()) |
| 92 | continue; // don't forward to face that we received interest from |
| 93 | |
| 94 | CcnxPitEntryOutgoingFaceContainer::type::iterator outgoing = |
| 95 | pitEntry.m_outgoing.find (metricFace.m_face); |
| 96 | |
| 97 | if (outgoing != pitEntry.m_outgoing.end () && |
| 98 | outgoing->m_retxCount >= pitEntry.m_maxRetxCount) |
| 99 | { |
Alexander Afanasyev | 120bf31 | 2011-12-19 01:24:47 -0800 | [diff] [blame] | 100 | NS_LOG_DEBUG ("retxCount: " << outgoing->m_retxCount << ", maxRetxCount: " << pitEntry.m_maxRetxCount); |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 101 | continue; |
| 102 | } |
| 103 | |
| 104 | bool faceAvailable = metricFace.m_face->IsBelowLimit (); |
| 105 | if (!faceAvailable) // huh... |
| 106 | { |
| 107 | // let's try different green face |
| 108 | continue; |
| 109 | } |
| 110 | |
| 111 | m_pit->modify (m_pit->iterator_to (pitEntry), |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 112 | ll::bind (&CcnxPitEntry::AddOutgoing, ll::_1, metricFace.m_face)); |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 113 | |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 114 | Ptr<Packet> packetToSend = packet->Copy (); |
Ilya Moiseenko | 1a8be03 | 2012-01-18 12:51:09 -0800 | [diff] [blame] | 115 | |
| 116 | //transmission |
Alexander Afanasyev | e9c9d72 | 2012-01-19 16:59:30 -0800 | [diff] [blame] | 117 | metricFace.m_face->Send (packetToSend); |
Alexander Afanasyev | f377b33 | 2011-12-16 15:32:12 -0800 | [diff] [blame] | 118 | m_transmittedInterestsTrace (header, metricFace.m_face); |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 119 | |
| 120 | propagatedCount++; |
| 121 | break; // propagate only one interest |
| 122 | } |
| 123 | |
| 124 | return propagatedCount > 0; |
| 125 | } |
| 126 | |
Alexander Afanasyev | 9825610 | 2011-08-14 01:00:02 -0700 | [diff] [blame] | 127 | } //namespace ns3 |