blob: f63dadf0444bb59b7b68f30828d2d58cbb4763d3 [file] [log] [blame]
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -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: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 */
20
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070021#include "ndn-fib.h"
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070022
Alexander Afanasyev78057c32012-07-06 15:18:46 -070023#include "ns3/node.h"
24#include "ns3/names.h"
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070025
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070026namespace ns3 {
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070027namespace ndn {
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070028
Alexander Afanasyev44bb6ea2012-07-09 08:44:41 -070029TypeId
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070030Fib::GetTypeId (void)
Alexander Afanasyev44bb6ea2012-07-09 08:44:41 -070031{
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070032 static TypeId tid = TypeId ("ns3::ndn::Fib") // cheating ns3 object system
Alexander Afanasyev95a4fa32012-07-09 15:23:59 -070033 .SetParent<Object> ()
Alexander Afanasyev4aac5572012-08-09 10:49:55 -070034 .SetGroupName ("Ndn")
Alexander Afanasyev95a4fa32012-07-09 15:23:59 -070035 ;
36 return tid;
Alexander Afanasyev44bb6ea2012-07-09 08:44:41 -070037}
38
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070039std::ostream&
40operator<< (std::ostream& os, const Fib &fib)
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070041{
Alexander Afanasyev78057c32012-07-06 15:18:46 -070042 os << "Node " << Names::FindName (fib.GetObject<Node>()) << "\n";
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070043 os << " Dest prefix Interfaces(Costs) \n";
44 os << "+-------------+--------------------------------------+\n";
Alexander Afanasyev78057c32012-07-06 15:18:46 -070045
46 fib.Print (os);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070047 return os;
48}
49
Alexander Afanasyev2b4c9472012-08-09 15:00:38 -070050} // namespace ndn
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070051} // namespace ns3