blob: 893f7bb1909bcd240fe8bd5ce619472c6bd56339 [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 Afanasyev7fd74f92011-08-25 19:40:17 -070046
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070047const std::list<std::string> &
48CcnxNameComponents::GetComponents () const
49{
50 return m_prefix;
51}
52
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -080053std::string
54CcnxNameComponents::GetLastComponent () const
55{
56 if (m_prefix.size () == 0)
57 {
58 return "";
59 }
60
61 return m_prefix.back ();
62}
63
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070064std::list<boost::reference_wrapper<const std::string> >
65CcnxNameComponents::GetSubComponents (size_t num) const
66{
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -080067 NS_ASSERT_MSG (0<=num && num<=m_prefix.size (), "Invalid number of subcomponents requested");
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070068
69 std::list<boost::reference_wrapper<const std::string> > subComponents;
70 std::list<std::string>::const_iterator component = m_prefix.begin();
71 for (size_t i=0; i<num; i++, component++)
72 {
73 subComponents.push_back (boost::ref (*component));
74 }
75
76 return subComponents;
77}
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070078
79void
80CcnxNameComponents::Print (std::ostream &os) const
81{
82 for (const_iterator i=m_prefix.begin(); i!=m_prefix.end(); i++)
83 {
84 os << "/" << *i;
85 }
Alexander Afanasyev07827182011-12-13 01:07:32 -080086 if (m_prefix.size ()==0) os << "/";
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070087}
88
89std::ostream &
90operator << (std::ostream &os, const CcnxNameComponents &components)
91{
92 components.Print (os);
93 return os;
94}
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070095
96std::istream &
97operator >> (std::istream &is, CcnxNameComponents &components)
98{
99 istream_iterator<char> eos; // end of stream
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700100
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700101 std::string component = "";
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800102 istream_iterator<char> it (is);
103 for (; it != eos; it++)
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700104 {
105 if (*it == '/')
106 {
107 if (component != "")
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700108 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700109 component = "";
110 }
111 else
112 component.push_back (*it);
113 }
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700114 if (component != "")
115 components.Add (component);
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700116
Alexander Afanasyev4975f732011-12-20 17:52:19 -0800117 is.clear ();
118 // NS_LOG_ERROR (components << ", bad: " << is.bad () <<", fail: " << is.fail ());
119
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700120 return is;
121}
122
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700123}
124