blob: 892ac4b57535f3f00413db7f9ea1bbc35bd93fc1 [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#ifndef _NDN_NAME_COMPONENTS_H_
22#define _NDN_NAME_COMPONENTS_H_
23
24#include "ns3/simple-ref-count.h"
25#include "ns3/attribute.h"
26#include "ns3/attribute-helper.h"
27
28#include <string>
29#include <algorithm>
30#include <list>
31#include "ns3/object.h"
32
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070033#include <boost/ref.hpp>
34
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070035namespace ns3 {
36
Ilya Moiseenko332add02011-12-24 17:21:25 -080037/**
38 * \ingroup ccnx
39 * \brief Hierarchical CCNX name
40 * A Name element represents a hierarchical name for CCNx content.
41 * It simply contains a sequence of Component elements.
42 * Each Component element contains a sequence of zero or more bytes.
43 * There are no restrictions on what byte sequences may be used.
44 * The Name element in an Interest is often referred to with the term name prefix or simply prefix.
45 */
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070046class CcnxNameComponents : public SimpleRefCount<CcnxNameComponents>
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070047{
48public:
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070049 /**
Ilya Moiseenko332add02011-12-24 17:21:25 -080050 * \brief Constructor
51 * Creates a prefix with zero components (can be looked as root "/")
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070052 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070053 CcnxNameComponents ();
Ilya Moiseenko332add02011-12-24 17:21:25 -080054
55 /**
56 * \brief Constructor
57 * Creates a prefix from a list of strings where every string represents a prefix component
58 * @param[in] components A list of strings
59 */
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070060 CcnxNameComponents (const std::list<boost::reference_wrapper<const std::string> > &components);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080061
Ilya Moiseenko332add02011-12-24 17:21:25 -080062 /**
63 * \brief Generic Add method
64 * Appends object of type T to the list of components
65 * @param[in] value The object to be appended
66 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080067 template<class T>
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070068 inline void
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080069 Add (const T &value);
70
Ilya Moiseenko332add02011-12-24 17:21:25 -080071 /**
72 * \brief Generic constructor operator
73 * The object of type T will be appended to the list of components
74 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080075 template<class T>
76 inline CcnxNameComponents&
77 operator () (const T &value);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070078
Ilya Moiseenko332add02011-12-24 17:21:25 -080079 /**
80 * \brief Get a name
81 * Returns a list of components (strings)
82 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070083 const std::list<std::string> &
84 GetComponents () const;
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070085
86 /**
87 * \brief Get subcomponents of the name, starting with first component
Ilya Moiseenko332add02011-12-24 17:21:25 -080088 * @param[in] num Number of components to return. Valid value is in range [1, GetComponents ().size ()]
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070089 */
90 std::list<boost::reference_wrapper<const std::string> >
91 GetSubComponents (size_t num) const;
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070092
Ilya Moiseenko332add02011-12-24 17:21:25 -080093 /**
94 * \brief Print name
95 * @param[in] os Stream to print
96 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070097 void Print (std::ostream &os) const;
98
Ilya Moiseenko332add02011-12-24 17:21:25 -080099 /**
100 * \brief Returns the size of CcnxNameComponents
101 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700102 inline size_t
103 size () const;
104
Ilya Moiseenko332add02011-12-24 17:21:25 -0800105 /**
106 * \brief Equality operator for CcnxNameComponents
107 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700108 inline bool
109 operator== (const CcnxNameComponents &prefix) const;
110
Ilya Moiseenko332add02011-12-24 17:21:25 -0800111 /**
112 * \brief Less than operator for CcnxNameComponents
113 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700114 inline bool
115 operator< (const CcnxNameComponents &prefix) const;
116
117private:
Ilya Moiseenko332add02011-12-24 17:21:25 -0800118 std::list<std::string> m_prefix; ///< \brief a list of strings (components)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700119
Ilya Moiseenko332add02011-12-24 17:21:25 -0800120 typedef std::list<std::string>::iterator iterator;
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700121 typedef std::list<std::string>::const_iterator const_iterator;
122};
123
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700124/**
125 * \brief Print out name components separated by slashes, e.g., /first/second/third
126 */
127std::ostream &
128operator << (std::ostream &os, const CcnxNameComponents &components);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700129
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700130/**
131 * \brief Read components from input and add them to components. Will read input stream till eof
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700132 * Substrings separated by slashes will become separate components
133 */
134std::istream &
135operator >> (std::istream &is, CcnxNameComponents &components);
Ilya Moiseenko332add02011-12-24 17:21:25 -0800136
137/**
138 * \brief Returns the size of CcnxNameComponents object
139 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700140size_t
141CcnxNameComponents::size () const
142{
143 return m_prefix.size ();
144}
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800145
Ilya Moiseenko332add02011-12-24 17:21:25 -0800146/**
147 * \brief Generic constructor operator
148 * The object of type T will be appended to the list of components
149 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800150template<class T>
151CcnxNameComponents&
152CcnxNameComponents::operator () (const T &value)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700153{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800154 Add (value);
155 return *this;
156}
157
Ilya Moiseenko332add02011-12-24 17:21:25 -0800158/**
159 * \brief Generic Add method
160 * Appends object of type T to the list of components
161 * @param[in] value The object to be appended
162 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800163template<class T>
164void
165CcnxNameComponents::Add (const T &value)
166{
167 std::ostringstream os;
168 os << value;
169 m_prefix.push_back (os.str ());
170}
171
Ilya Moiseenko332add02011-12-24 17:21:25 -0800172/**
173 * \brief Equality operator for CcnxNameComponents
174 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700175bool
176CcnxNameComponents::operator== (const CcnxNameComponents &prefix) const
177{
178 if (m_prefix.size () != prefix.m_prefix.size ())
179 return false;
180
181 return std::equal (m_prefix.begin (), m_prefix.end (), prefix.m_prefix.begin ());
182}
183
Ilya Moiseenko332add02011-12-24 17:21:25 -0800184/**
185 * \brief Less than operator for CcnxNameComponents
186 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700187bool
188CcnxNameComponents::operator< (const CcnxNameComponents &prefix) const
189{
190 return std::lexicographical_compare (m_prefix.begin (), m_prefix.end (),
191 prefix.m_prefix.begin (), prefix.m_prefix.end ());
192}
193
194
195/**
196* \class ns3::ComponentsValue
197* \brief hold objects of type ns3:CcnxNameComponents
198*/
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700199ATTRIBUTE_HELPER_HEADER (CcnxNameComponents);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700200} // namespace ns3
201
202#endif // _NDN_NAME_COMPONENTS_H_
203