blob: 1d8ef2a5fb1f9f77ad9ceec4d8500421f38b1f99 [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 Afanasyevfd0c41c2012-06-11 22:15:49 -070049 typedef std::list<std::string>::iterator iterator;
50 typedef std::list<std::string>::const_iterator const_iterator;
51
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070052 /**
Ilya Moiseenko332add02011-12-24 17:21:25 -080053 * \brief Constructor
54 * Creates a prefix with zero components (can be looked as root "/")
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070055 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070056 CcnxNameComponents ();
Ilya Moiseenko332add02011-12-24 17:21:25 -080057
58 /**
59 * \brief Constructor
60 * Creates a prefix from a list of strings where every string represents a prefix component
61 * @param[in] components A list of strings
62 */
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070063 CcnxNameComponents (const std::list<boost::reference_wrapper<const std::string> > &components);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080064
Ilya Moiseenko332add02011-12-24 17:21:25 -080065 /**
66 * \brief Generic Add method
67 * Appends object of type T to the list of components
68 * @param[in] value The object to be appended
69 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080070 template<class T>
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070071 inline void
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080072 Add (const T &value);
73
Ilya Moiseenko332add02011-12-24 17:21:25 -080074 /**
75 * \brief Generic constructor operator
76 * The object of type T will be appended to the list of components
77 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080078 template<class T>
79 inline CcnxNameComponents&
80 operator () (const T &value);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070081
Ilya Moiseenko332add02011-12-24 17:21:25 -080082 /**
83 * \brief Get a name
84 * Returns a list of components (strings)
85 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -070086 const std::list<std::string> &
87 GetComponents () const;
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070088
Alexander Afanasyevb4fee8b2012-06-06 12:54:26 -070089 /**
90 * @brief Helper call to get the last component of the name
91 */
Alexander Afanasyev3183b5a2011-12-23 20:48:20 -080092 std::string
93 GetLastComponent () const;
94
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070095 /**
96 * \brief Get subcomponents of the name, starting with first component
Ilya Moiseenko332add02011-12-24 17:21:25 -080097 * @param[in] num Number of components to return. Valid value is in range [1, GetComponents ().size ()]
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -070098 */
99 std::list<boost::reference_wrapper<const std::string> >
100 GetSubComponents (size_t num) const;
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700101
Ilya Moiseenko332add02011-12-24 17:21:25 -0800102 /**
103 * \brief Print name
104 * @param[in] os Stream to print
105 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700106 void Print (std::ostream &os) const;
107
Ilya Moiseenko332add02011-12-24 17:21:25 -0800108 /**
109 * \brief Returns the size of CcnxNameComponents
110 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700111 inline size_t
112 size () const;
113
Ilya Moiseenko332add02011-12-24 17:21:25 -0800114 /**
Alexander Afanasyevfd0c41c2012-06-11 22:15:49 -0700115 * @brief Get read-write begin() iterator
116 */
117 inline iterator
118 begin ();
119
120 /**
121 * @brief Get read-only begin() iterator
122 */
123 inline const_iterator
124 begin () const;
125
126 /**
127 * @brief Get read-write end() iterator
128 */
129 inline iterator
130 end ();
131
132 /**
133 * @brief Get read-only end() iterator
134 */
135 inline const_iterator
136 end () const;
137
138 /**
Ilya Moiseenko332add02011-12-24 17:21:25 -0800139 * \brief Equality operator for CcnxNameComponents
140 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700141 inline bool
142 operator== (const CcnxNameComponents &prefix) const;
143
Ilya Moiseenko332add02011-12-24 17:21:25 -0800144 /**
145 * \brief Less than operator for CcnxNameComponents
146 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700147 inline bool
148 operator< (const CcnxNameComponents &prefix) const;
Alexander Afanasyevfd0c41c2012-06-11 22:15:49 -0700149
150 typedef std::string partial_type;
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700151
152private:
Ilya Moiseenko332add02011-12-24 17:21:25 -0800153 std::list<std::string> m_prefix; ///< \brief a list of strings (components)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700154};
155
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700156/**
157 * \brief Print out name components separated by slashes, e.g., /first/second/third
158 */
159std::ostream &
160operator << (std::ostream &os, const CcnxNameComponents &components);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700161
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700162/**
163 * \brief Read components from input and add them to components. Will read input stream till eof
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700164 * Substrings separated by slashes will become separate components
165 */
166std::istream &
167operator >> (std::istream &is, CcnxNameComponents &components);
Ilya Moiseenko332add02011-12-24 17:21:25 -0800168
169/**
170 * \brief Returns the size of CcnxNameComponents object
171 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700172size_t
173CcnxNameComponents::size () const
174{
175 return m_prefix.size ();
176}
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800177
Alexander Afanasyevfd0c41c2012-06-11 22:15:49 -0700178CcnxNameComponents::iterator
179CcnxNameComponents::begin ()
180{
181 return m_prefix.begin ();
182}
183
184/**
185 * @brief Get read-only begin() iterator
186 */
187CcnxNameComponents::const_iterator
188CcnxNameComponents::begin () const
189{
190 return m_prefix.begin ();
191}
192
193/**
194 * @brief Get read-write end() iterator
195 */
196CcnxNameComponents::iterator
197CcnxNameComponents::end ()
198{
199 return m_prefix.end ();
200}
201
202/**
203 * @brief Get read-only end() iterator
204 */
205CcnxNameComponents::const_iterator
206CcnxNameComponents::end () const
207{
208 return m_prefix.end ();
209}
210
211
Ilya Moiseenko332add02011-12-24 17:21:25 -0800212/**
213 * \brief Generic constructor operator
214 * The object of type T will be appended to the list of components
215 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800216template<class T>
217CcnxNameComponents&
218CcnxNameComponents::operator () (const T &value)
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700219{
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800220 Add (value);
221 return *this;
222}
223
Ilya Moiseenko332add02011-12-24 17:21:25 -0800224/**
225 * \brief Generic Add method
226 * Appends object of type T to the list of components
227 * @param[in] value The object to be appended
228 */
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800229template<class T>
230void
231CcnxNameComponents::Add (const T &value)
232{
233 std::ostringstream os;
234 os << value;
235 m_prefix.push_back (os.str ());
236}
237
Ilya Moiseenko332add02011-12-24 17:21:25 -0800238/**
239 * \brief Equality operator for CcnxNameComponents
240 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700241bool
242CcnxNameComponents::operator== (const CcnxNameComponents &prefix) const
243{
244 if (m_prefix.size () != prefix.m_prefix.size ())
245 return false;
246
247 return std::equal (m_prefix.begin (), m_prefix.end (), prefix.m_prefix.begin ());
248}
249
Ilya Moiseenko332add02011-12-24 17:21:25 -0800250/**
251 * \brief Less than operator for CcnxNameComponents
252 */
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700253bool
254CcnxNameComponents::operator< (const CcnxNameComponents &prefix) const
255{
256 return std::lexicographical_compare (m_prefix.begin (), m_prefix.end (),
257 prefix.m_prefix.begin (), prefix.m_prefix.end ());
258}
259
260
Alexander Afanasyev7fd74f92011-08-25 19:40:17 -0700261ATTRIBUTE_HELPER_HEADER (CcnxNameComponents);
Ilya Moiseenkod26e6822011-08-23 17:48:38 -0700262} // namespace ns3
263
264#endif // _NDN_NAME_COMPONENTS_H_
265