blob: a0a12da8e5dbc09ce66ea044ab64deb06317e9e2 [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 Afanasyev7fd74f92011-08-25 19:40:17 -070039CcnxNameComponents::CcnxNameComponents (const std::list<boost::reference_wrapper<const std::string> > &components)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070040{
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070041 BOOST_FOREACH (const boost::reference_wrapper<const std::string> &component, components)
42 {
43 Add (component.get ());
44 }
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070045}
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070046
47CcnxNameComponents::CcnxNameComponents (const std::string &prefix)
48{
49 istringstream is (prefix);
50 is >> *this;
51}
52
Alexander Afanasyev0560eec2012-07-16 15:44:31 -070053CcnxNameComponents::CcnxNameComponents (const char *prefix)
54{
55 NS_ASSERT (prefix != 0);
56
57 istringstream is (prefix);
58 is >> *this;
59}
Alexander Afanasyevf1e013f2012-07-11 17:59:40 -070060
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070061const std::list<std::string> &
62CcnxNameComponents::GetComponents () const
63{
64 return m_prefix;
65}
66
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -080067std::string
68CcnxNameComponents::GetLastComponent () const
69{
70 if (m_prefix.size () == 0)
71 {
72 return "";
73 }
74
75 return m_prefix.back ();
76}
77
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070078std::list<boost::reference_wrapper<const std::string> >
79CcnxNameComponents::GetSubComponents (size_t num) const
80{
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080081 NS_ASSERT_MSG (0<=num && num<=m_prefix.size (), "Invalid number of subcomponents requested");
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070082
83 std::list<boost::reference_wrapper<const std::string> > subComponents;
84 std::list<std::string>::const_iterator component = m_prefix.begin();
85 for (size_t i=0; i<num; i++, component++)
86 {
87 subComponents.push_back (boost::ref (*component));
88 }
89
90 return subComponents;
91}
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070092
93void
94CcnxNameComponents::Print (std::ostream &os) const
95{
96 for (const_iterator i=m_prefix.begin(); i!=m_prefix.end(); i++)
97 {
98 os << "/" << *i;
99 }
Alexander Afanasyev07827182011-12-13 01:07:32 -0800100 if (m_prefix.size ()==0) os << "/";
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700101}
102
103std::ostream &
104operator << (std::ostream &os, const CcnxNameComponents &components)
105{
106 components.Print (os);
107 return os;
108}
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700109
110std::istream &
111operator >> (std::istream &is, CcnxNameComponents &components)
112{
113 istream_iterator<char> eos; // end of stream
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700114
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700115 std::string component = "";
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800116 istream_iterator<char> it (is);
117 for (; it != eos; it++)
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700118 {
119 if (*it == '/')
120 {
121 if (component != "")
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700122 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700123 component = "";
124 }
125 else
126 component.push_back (*it);
127 }
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700128 if (component != "")
129 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700130
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800131 is.clear ();
132 // NS_LOG_ERROR (components << ", bad: " << is.bad () <<", fail: " << is.fail ());
133
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700134 return is;
135}
136
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700137}
138