blob: d7f68279a29f6d2ab8cad10ebf0918e753fdef7d [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"
22#include "ns3/assert.h"
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080023#include "ns3/log.h"
24#include "ccnx-interest-header.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070025
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080026#include <boost/foreach.hpp>
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070027
28NS_LOG_COMPONENT_DEFINE ("CcnxFloodingStrategy");
29
30namespace ns3
31{
32
33NS_OBJECT_ENSURE_REGISTERED (CcnxFloodingStrategy);
34
35TypeId CcnxFloodingStrategy::GetTypeId (void)
36{
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080037 static TypeId tid = TypeId ("ns3::CcnxFloodingStrategy")
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070038 .SetGroupName ("Ccnx")
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080039 .SetParent<CcnxForwardingStrategy> ()
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070040 ;
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080041 return tid;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070042}
43
44CcnxFloodingStrategy::CcnxFloodingStrategy ()
45{
46}
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080047
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070048bool
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080049CcnxFloodingStrategy::PropagateInterest (const CcnxPitEntry &pitEntry,
50 const Ptr<CcnxFace> &incomingFace,
51 Ptr<CcnxInterestHeader> &header,
52 const Ptr<const Packet> &packet,
53 SendCallback sendCallback)
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070054{
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080055 NS_LOG_FUNCTION (this);
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070056
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080057 int propagatedCount = 0;
58 BOOST_FOREACH (const CcnxFibFaceMetric &metricFace, pitEntry.m_fibEntry.m_faces)
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070059 {
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080060 if (metricFace.m_status == CcnxFibFaceMetric::NDN_FIB_RED) // all non-read faces are in front
61 break;
62
63 if (metricFace.m_face == incomingFace) // same face as incoming, don't forward
64 continue;
65
66 if (pitEntry.m_outgoing.find (metricFace.m_face) != pitEntry.m_outgoing.end ()) // already forwarded before
67 continue;
68
69 bool faceAvailable = m_pit->TryAddOutgoing (pitEntry, metricFace.m_face);
70 if (!faceAvailable) // huh...
71 continue;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070072
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080073 sendCallback (metricFace.m_face, header, packet->Copy());
74 propagatedCount++;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070075 }
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080076
77 return propagatedCount > 0;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070078}
79
80} //namespace ns3