blob: c439adc5274e3a7802b0b29ed7bda93d47eded3a [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"
24
25#include <boost/lexical_cast.hpp>
26
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070027NS_LOG_COMPONENT_DEFINE ("ndn.PitTest");
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070028
29namespace ns3
30{
31
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070032class Client : public ndn::App
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070033{
34protected:
35 void
36 StartApplication ()
37 {
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070038 ndn::App::StartApplication ();
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070039
40 // add default route
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070041 Ptr<ndn::fib::Entry> fibEntry = GetNode ()->GetObject<ndn::Fib> ()->Add (ndn::NameComponents ("/"), m_face, 0);
42 fibEntry->UpdateStatus (m_face, ndn::fib::FaceMetric::NDN_FIB_GREEN);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070043
44 Simulator::Schedule (Seconds (0.1), &Client::SendPacket, this, std::string("/1"), 1);
45 Simulator::Schedule (Seconds (0.2), &Client::SendPacket, this, std::string("/2"), 1);
46 Simulator::Schedule (Seconds (0.3), &Client::SendPacket, this, std::string("/3"), 1);
47 Simulator::Schedule (Seconds (0.4), &Client::SendPacket, this, std::string("/1"), 2);
48 }
49
50 void
51 StopApplication ()
52 {
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070053 ndn::App::StopApplication ();
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070054 }
55
56private:
57 void
58 SendPacket (const std::string &prefix, uint32_t nonce)
59 {
60 Ptr<Packet> pkt = Create<Packet> (0);
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070061 ndn::InterestHeader i;
62 i.SetName (Create<ndn::NameComponents> (prefix));
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070063 i.SetNonce (nonce);
64 i.SetInterestLifetime (Seconds (0.5));
65
66 pkt->AddHeader (i);
67 m_protocolHandler (pkt);
68 }
69};
70
71void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070072PitTest::Test (Ptr<ndn::Fib> fib)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070073{
74 NS_TEST_ASSERT_MSG_EQ (fib->GetSize (), 1, "There should be only one entry");
75
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070076 Ptr<const ndn::fib::Entry> fibEntry = fib->Begin ();
77 NS_TEST_ASSERT_MSG_EQ (fibEntry->GetPrefix (), ndn::NameComponents ("/"), "prefix should be /");
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070078}
79
80void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070081PitTest::Check0 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070082{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070083 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070084 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 0, "There should 0 entries in PIT");
85}
86
87void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070088PitTest::Check1 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070089{
90 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 1, "There should 1 entry in PIT");
91}
92
93void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070094PitTest::Check2 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070095{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -070096 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070097 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 2, "There should 2 entries in PIT");
98}
99
100void
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700101PitTest::Check3 (Ptr<ndn::Pit> pit)
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700102{
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700103 // NS_LOG_DEBUG (*GetNode ()->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700104 NS_TEST_ASSERT_MSG_EQ (pit->GetSize (), 3, "There should 3 entries in PIT");
105}
106
107
108void
109PitTest::DoRun ()
110{
111 Ptr<Node> node = CreateObject<Node> ();
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700112 ndn::StackHelper ndn;
Alexander Afanasyev4aac5572012-08-09 10:49:55 -0700113 ndn.Install (node);
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700114
115 Ptr<Client> app1 = CreateObject<Client> ();
116 node->AddApplication (app1);
117
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700118 Simulator::Schedule (Seconds (0.0001), &PitTest::Test, this, node->GetObject<ndn::Fib> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700119
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700120 Simulator::Schedule (Seconds (0.01), &PitTest::Check0, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700121
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700122 Simulator::Schedule (Seconds (0.11), &PitTest::Check1, this, node->GetObject<ndn::Pit> ());
123 Simulator::Schedule (Seconds (0.21), &PitTest::Check2, this, node->GetObject<ndn::Pit> ());
124 Simulator::Schedule (Seconds (0.31), &PitTest::Check3, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700125
Alexander Afanasyevcf6dc922012-08-10 16:55:27 -0700126 Simulator::Schedule (Seconds (0.61), &PitTest::Check3, this, node->GetObject<ndn::Pit> ());
127 Simulator::Schedule (Seconds (0.71), &PitTest::Check2, this, node->GetObject<ndn::Pit> ());
128 Simulator::Schedule (Seconds (0.81), &PitTest::Check1, this, node->GetObject<ndn::Pit> ());
129
130 Simulator::Schedule (Seconds (0.91), &PitTest::Check0, this, node->GetObject<ndn::Pit> ());
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -0700131
132 Simulator::Stop (Seconds (1.0));
133 Simulator::Run ();
134 Simulator::Destroy ();
135}
136
137}