blob: db94f6f8303fe30ea5d59c288941ded74be05442 [file] [log] [blame]
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -07001/* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2011,2012 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: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
21#include "ndnSIM-pit.h"
22#include "ns3/core-module.h"
23#include "ns3/ndnSIM-module.h"
Alexander Afanasyev31cb4692012-08-17 13:08:20 -070024#include "ns3/point-to-point-module.h"
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070025
26#include <boost/lexical_cast.hpp>
27
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070028NS_LOG_COMPONENT_DEFINE ("ndn.PitTest");
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070029
30namespace ns3
31{
32
Alexander Afanasyevee762552013-07-10 22:29:22 -070033class PitTestClient : public ndn::App
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070034{
35protected:
36 void
37 StartApplication ()
38 {
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070039 ndn::App::StartApplication ();
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070040
41 // add default route
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070042 Ptr<ndn::fib::Entry> fibEntry = GetNode ()->GetObject<ndn::Fib> ()->Add (ndn::Name ("/"), m_face, 0);
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070043 fibEntry->UpdateStatus (m_face, ndn::fib::FaceMetric::NDN_FIB_GREEN);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070044
Alexander Afanasyevee762552013-07-10 22:29:22 -070045 Simulator::Schedule (Seconds (0.1), &PitTestClient::SendPacket, this, std::string("/1"), 1);
46 Simulator::Schedule (Seconds (0.2), &PitTestClient::SendPacket, this, std::string("/2"), 1);
47 Simulator::Schedule (Seconds (0.3), &PitTestClient::SendPacket, this, std::string("/3"), 1);
48 Simulator::Schedule (Seconds (0.4), &PitTestClient::SendPacket, this, std::string("/1"), 2);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070049 }
50
51 void
52 StopApplication ()
53 {
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070054 ndn::App::StopApplication ();
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070055 }
56
57private:
58 void
59 SendPacket (const std::string &prefix, uint32_t nonce)
60 {
Alexander Afanasyevee762552013-07-10 22:29:22 -070061 Ptr<ndn::Interest> interest = Create<ndn::Interest> ();
Alexander Afanasyevfaa01f92013-07-10 18:34:31 -070062 interest->SetName (Create<ndn::Name> (prefix));
63 interest->SetNonce (nonce);
64 interest->SetInterestLifetime (Seconds (0.5));
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070065
Alexander Afanasyevfaa01f92013-07-10 18:34:31 -070066 m_face->ReceiveInterest (interest);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070067 }
68};
69
70void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070071PitTest::Test (Ptr<ndn::Fib> fib)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070072{
73 NS_TEST_ASSERT_MSG_EQ (fib->GetSize (), 1, "There should be only one entry");
74
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070075 Ptr<const ndn::fib::Entry> fibEntry = fib->Begin ();
Alexander Afanasyevcfdc14f2013-03-15 14:38:44 -070076 NS_TEST_ASSERT_MSG_EQ (fibEntry->GetPrefix (), ndn::Name ("/"), "prefix should be /");
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070077}
78
79void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070080PitTest::Check0 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070081{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070082 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070083 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 0, "There should 0 entries in PIT");
84}
85
86void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070087PitTest::Check1 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070088{
89 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 1, "There should 1 entry in PIT");
90}
91
92void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070093PitTest::Check2 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070094{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070095 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070096 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 2, "There should 2 entries in PIT");
97}
98
99void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700100PitTest::Check3 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700101{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700102 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700103 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 3, "There should 3 entries in PIT");
104}
105
106
107void
108PitTest::DoRun ()
109{
110 Ptr<Node> node = CreateObject<Node> ();
Alexander Afanasyev31cb4692012-08-17 13:08:20 -0700111 Ptr<Node> nodeSink = CreateObject<Node> ();
112 PointToPointHelper p2p;
113 p2p.Install (node, nodeSink);
114
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700115 ndn::StackHelper ndn;
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700116 ndn.Install (node);
Alexander Afanasyev31cb4692012-08-17 13:08:20 -0700117 ndn.Install (nodeSink);
118
119 ndn::StackHelper::AddRoute (node, "/", 0, 0);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700120
Alexander Afanasyevee762552013-07-10 22:29:22 -0700121 Ptr<Application> app1 = CreateObject<PitTestClient> ();
122 app1->SetStartTime (Seconds (0.0));
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700123 node->AddApplication (app1);
124
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700125 Simulator::Schedule (Seconds (0.0001), &PitTest::Test, this, node->GetObject<ndn::Fib> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700126
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700127 Simulator::Schedule (Seconds (0.01), &PitTest::Check0, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700128
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700129 Simulator::Schedule (Seconds (0.11), &PitTest::Check1, this, node->GetObject<ndn::Pit> ());
130 Simulator::Schedule (Seconds (0.21), &PitTest::Check2, this, node->GetObject<ndn::Pit> ());
131 Simulator::Schedule (Seconds (0.31), &PitTest::Check3, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700132
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700133 Simulator::Schedule (Seconds (0.61), &PitTest::Check3, this, node->GetObject<ndn::Pit> ());
134 Simulator::Schedule (Seconds (0.71), &PitTest::Check2, this, node->GetObject<ndn::Pit> ());
135 Simulator::Schedule (Seconds (0.81), &PitTest::Check1, this, node->GetObject<ndn::Pit> ());
136
137 Simulator::Schedule (Seconds (0.91), &PitTest::Check0, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700138
Alexander Afanasyevee762552013-07-10 22:29:22 -0700139 Simulator::Stop (Seconds (10.0));
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700140 Simulator::Run ();
141 Simulator::Destroy ();
142}
143
144}