blob: 2a7f2ee378e609edf09440321be49ca2e0f6fdb8 [file] [log] [blame]
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011 University of California, Los Angeles
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
17 *
18 * Author: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 */
20
21#include "ccnx-flooding-strategy.h"
Alexander Afanasyevf377b332011-12-16 15:32:12 -080022#include "ccnx-interest-header.h"
23#include "ccnx-pit.h"
24#include "ccnx-pit-entry.h"
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -080025#include "ccnx-path-stretch-tag.h"
Alexander Afanasyevf377b332011-12-16 15:32:12 -080026
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070027#include "ns3/assert.h"
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080028#include "ns3/log.h"
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -080029#include "ns3/simulator.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070030
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080031#include <boost/ref.hpp>
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080032#include <boost/foreach.hpp>
Alexander Afanasyev19426ef2011-11-23 20:55:28 -080033#include <boost/lambda/lambda.hpp>
34#include <boost/lambda/bind.hpp>
35namespace ll = boost::lambda;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070036
37NS_LOG_COMPONENT_DEFINE ("CcnxFloodingStrategy");
38
39namespace ns3
40{
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080041
42using namespace __ccnx_private;
43
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070044NS_OBJECT_ENSURE_REGISTERED (CcnxFloodingStrategy);
45
46TypeId CcnxFloodingStrategy::GetTypeId (void)
47{
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080048 static TypeId tid = TypeId ("ns3::CcnxFloodingStrategy")
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070049 .SetGroupName ("Ccnx")
Alexander Afanasyev11453142011-11-25 16:13:33 -080050 .SetParent <CcnxForwardingStrategy> ()
51 .AddConstructor <CcnxFloodingStrategy> ()
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070052 ;
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080053 return tid;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070054}
55
56CcnxFloodingStrategy::CcnxFloodingStrategy ()
57{
58}
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080059
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070060bool
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080061CcnxFloodingStrategy::PropagateInterest (const CcnxPitEntry &pitEntry,
62 const Ptr<CcnxFace> &incomingFace,
63 Ptr<CcnxInterestHeader> &header,
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080064 const Ptr<const Packet> &packet)
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070065{
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080066 NS_LOG_FUNCTION (this);
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080067
68 // Try to work out with just green faces
69 bool greenOk = PropagateInterestViaGreen (pitEntry, incomingFace, header, packet);
70 if (greenOk)
71 return true;
72
73 // boo... :(
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080074 int propagatedCount = 0;
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080075
76 BOOST_FOREACH (const CcnxFibFaceMetric &metricFace, pitEntry.m_fibEntry.m_faces.get<i_metric> ())
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070077 {
Alexander Afanasyev23d2b542011-12-07 18:54:46 -080078 NS_LOG_DEBUG ("Trying " << boost::cref(metricFace));
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080079 if (metricFace.m_status == CcnxFibFaceMetric::NDN_FIB_RED) // all non-read faces are in front
80 break;
81
Alexander Afanasyev5a595072011-11-25 14:49:07 -080082 if (metricFace.m_face == incomingFace)
Alexander Afanasyev23d2b542011-12-07 18:54:46 -080083 {
84 NS_LOG_DEBUG ("continue (same as incoming)");
85 continue; // same face as incoming, don't forward
86 }
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080087
Alexander Afanasyev5a595072011-11-25 14:49:07 -080088 if (pitEntry.m_incoming.find (metricFace.m_face) != pitEntry.m_incoming.end ())
Alexander Afanasyev23d2b542011-12-07 18:54:46 -080089 {
90 NS_LOG_DEBUG ("continue (same as previous incoming)");
91 continue; // don't forward to face that we received interest from
92 }
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080093
94 CcnxPitEntryOutgoingFaceContainer::type::iterator outgoing =
95 pitEntry.m_outgoing.find (metricFace.m_face);
Alexander Afanasyev5a595072011-11-25 14:49:07 -080096
Alexander Afanasyev0a61c342011-12-06 12:48:55 -080097 if (outgoing != pitEntry.m_outgoing.end () &&
98 outgoing->m_retxCount >= pitEntry.m_maxRetxCount)
99 {
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800100 NS_LOG_DEBUG ("continue (same as previous outgoing)");
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800101 continue; // already forwarded before during this retransmission cycle
102 }
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800103 NS_LOG_DEBUG ("max retx count: " << pitEntry.m_maxRetxCount);
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800104
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800105 bool faceAvailable = metricFace.m_face->IsBelowLimit ();
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800106 if (!faceAvailable) // huh...
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800107 {
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800108 continue;
109 }
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800110
111 m_pit->modify (m_pit->iterator_to (pitEntry),
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800112 ll::bind(&CcnxPitEntry::AddOutgoing, ll::_1, metricFace.m_face));
113
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800114 // if (Simulator::GetContext ()==2)
115 // {
116 // NS_LOG_ERROR ("new outgoing entry for " << boost::cref (*metricFace.m_face));
117 // NS_LOG_ERROR ("size: " << pitEntry.m_outgoing.size ());
118 // }
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800119
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800120 Ptr<Packet> packetToSend = packet->Copy ();
121 TagPacket (packetToSend, metricFace);
Ilya Moiseenko1a8be032012-01-18 12:51:09 -0800122
Ilya Moiseenko1a8be032012-01-18 12:51:09 -0800123 //transmission
Alexander Afanasyeve9c9d722012-01-19 16:59:30 -0800124 metricFace.m_face->Send (packetToSend);
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800125 m_transmittedInterestsTrace (header, metricFace.m_face);
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800126
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800127 propagatedCount++;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700128 }
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800129
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800130 NS_LOG_INFO ("Propagated to " << propagatedCount << " faces");
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -0800131 return propagatedCount > 0;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -0700132}
133
134} //namespace ns3