blob: 323a3f806baedf5300734be2c5cdde94a56bab5f [file] [log] [blame]
Ilya Moiseenkod26e6822011-08-23 17:48:38 -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-name-components.h"
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070022#include <boost/foreach.hpp>
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070023#include "ns3/log.h"
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070024
25#include <iostream>
26
27using namespace std;
28
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070029NS_LOG_COMPONENT_DEFINE ("CcnxNameComponents");
30
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070031namespace ns3 {
32
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070033ATTRIBUTE_HELPER_CPP (CcnxNameComponents);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070034
Alexander Afanasyev90d66ce2011-08-25 20:30:17 -070035CcnxNameComponents::CcnxNameComponents (/* root */)
36{
37}
38
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070039// CcnxNameComponents::CcnxNameComponents (const string &s)
40// {
41// m_prefix.push_back (s);
42// }
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070043
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070044CcnxNameComponents::CcnxNameComponents (const std::list<boost::reference_wrapper<const std::string> > &components)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070045{
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070046 BOOST_FOREACH (const boost::reference_wrapper<const std::string> &component, components)
47 {
48 Add (component.get ());
49 }
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070050}
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070051
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070052const std::list<std::string> &
53CcnxNameComponents::GetComponents () const
54{
55 return m_prefix;
56}
57
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070058std::list<boost::reference_wrapper<const std::string> >
59CcnxNameComponents::GetSubComponents (size_t num) const
60{
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080061 NS_ASSERT_MSG (0<=num && num<=m_prefix.size (), "Invalid number of subcomponents requested");
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070062
63 std::list<boost::reference_wrapper<const std::string> > subComponents;
64 std::list<std::string>::const_iterator component = m_prefix.begin();
65 for (size_t i=0; i<num; i++, component++)
66 {
67 subComponents.push_back (boost::ref (*component));
68 }
69
70 return subComponents;
71}
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070072
73void
74CcnxNameComponents::Print (std::ostream &os) const
75{
76 for (const_iterator i=m_prefix.begin(); i!=m_prefix.end(); i++)
77 {
78 os << "/" << *i;
79 }
Alexander Afanasyev07827182011-12-13 01:07:32 -080080 if (m_prefix.size ()==0) os << "/";
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070081}
82
83std::ostream &
84operator << (std::ostream &os, const CcnxNameComponents &components)
85{
86 components.Print (os);
87 return os;
88}
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070089
90std::istream &
91operator >> (std::istream &is, CcnxNameComponents &components)
92{
93 istream_iterator<char> eos; // end of stream
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -070094
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070095 std::string component = "";
96 for (istream_iterator<char> it (is); it != eos; it++)
97 {
98 if (*it == '/')
99 {
100 if (component != "")
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700101 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700102 component = "";
103 }
104 else
105 component.push_back (*it);
106 }
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700107 if (component != "")
108 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700109
110 return is;
111}
112
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700113}
114