Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 1 | /* -*- 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 Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 33 | #include <boost/ref.hpp> |
| 34 | |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 35 | namespace ns3 { |
| 36 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 37 | /** |
| 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 Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 46 | class CcnxNameComponents : public SimpleRefCount<CcnxNameComponents> |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 47 | { |
| 48 | public: |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 49 | /** |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 50 | * \brief Constructor |
| 51 | * Creates a prefix with zero components (can be looked as root "/") |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 52 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 53 | CcnxNameComponents (); |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 54 | |
| 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 Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 60 | CcnxNameComponents (const std::list<boost::reference_wrapper<const std::string> > &components); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 61 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 62 | /** |
| 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 Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 67 | template<class T> |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 68 | inline void |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 69 | Add (const T &value); |
| 70 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 71 | /** |
| 72 | * \brief Generic constructor operator |
| 73 | * The object of type T will be appended to the list of components |
| 74 | */ |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 75 | template<class T> |
| 76 | inline CcnxNameComponents& |
| 77 | operator () (const T &value); |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 78 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 79 | /** |
| 80 | * \brief Get a name |
| 81 | * Returns a list of components (strings) |
| 82 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 83 | const std::list<std::string> & |
| 84 | GetComponents () const; |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 85 | |
Alexander Afanasyev | 3183b5a | 2011-12-23 20:48:20 -0800 | [diff] [blame] | 86 | std::string |
| 87 | GetLastComponent () const; |
| 88 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 89 | /** |
| 90 | * \brief Get subcomponents of the name, starting with first component |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 91 | * @param[in] num Number of components to return. Valid value is in range [1, GetComponents ().size ()] |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 92 | */ |
| 93 | std::list<boost::reference_wrapper<const std::string> > |
| 94 | GetSubComponents (size_t num) const; |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 95 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 96 | /** |
| 97 | * \brief Print name |
| 98 | * @param[in] os Stream to print |
| 99 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 100 | void Print (std::ostream &os) const; |
| 101 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 102 | /** |
| 103 | * \brief Returns the size of CcnxNameComponents |
| 104 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 105 | inline size_t |
| 106 | size () const; |
| 107 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 108 | /** |
| 109 | * \brief Equality operator for CcnxNameComponents |
| 110 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 111 | inline bool |
| 112 | operator== (const CcnxNameComponents &prefix) const; |
| 113 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 114 | /** |
| 115 | * \brief Less than operator for CcnxNameComponents |
| 116 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 117 | inline bool |
| 118 | operator< (const CcnxNameComponents &prefix) const; |
| 119 | |
| 120 | private: |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 121 | std::list<std::string> m_prefix; ///< \brief a list of strings (components) |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 122 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 123 | typedef std::list<std::string>::iterator iterator; |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 124 | typedef std::list<std::string>::const_iterator const_iterator; |
| 125 | }; |
| 126 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 127 | /** |
| 128 | * \brief Print out name components separated by slashes, e.g., /first/second/third |
| 129 | */ |
| 130 | std::ostream & |
| 131 | operator << (std::ostream &os, const CcnxNameComponents &components); |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 132 | |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 133 | /** |
| 134 | * \brief Read components from input and add them to components. Will read input stream till eof |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 135 | * Substrings separated by slashes will become separate components |
| 136 | */ |
| 137 | std::istream & |
| 138 | operator >> (std::istream &is, CcnxNameComponents &components); |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 139 | |
| 140 | /** |
| 141 | * \brief Returns the size of CcnxNameComponents object |
| 142 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 143 | size_t |
| 144 | CcnxNameComponents::size () const |
| 145 | { |
| 146 | return m_prefix.size (); |
| 147 | } |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 148 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 149 | /** |
| 150 | * \brief Generic constructor operator |
| 151 | * The object of type T will be appended to the list of components |
| 152 | */ |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 153 | template<class T> |
| 154 | CcnxNameComponents& |
| 155 | CcnxNameComponents::operator () (const T &value) |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 156 | { |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 157 | Add (value); |
| 158 | return *this; |
| 159 | } |
| 160 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 161 | /** |
| 162 | * \brief Generic Add method |
| 163 | * Appends object of type T to the list of components |
| 164 | * @param[in] value The object to be appended |
| 165 | */ |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 166 | template<class T> |
| 167 | void |
| 168 | CcnxNameComponents::Add (const T &value) |
| 169 | { |
| 170 | std::ostringstream os; |
| 171 | os << value; |
| 172 | m_prefix.push_back (os.str ()); |
| 173 | } |
| 174 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 175 | /** |
| 176 | * \brief Equality operator for CcnxNameComponents |
| 177 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 178 | bool |
| 179 | CcnxNameComponents::operator== (const CcnxNameComponents &prefix) const |
| 180 | { |
| 181 | if (m_prefix.size () != prefix.m_prefix.size ()) |
| 182 | return false; |
| 183 | |
| 184 | return std::equal (m_prefix.begin (), m_prefix.end (), prefix.m_prefix.begin ()); |
| 185 | } |
| 186 | |
Ilya Moiseenko | 332add0 | 2011-12-24 17:21:25 -0800 | [diff] [blame] | 187 | /** |
| 188 | * \brief Less than operator for CcnxNameComponents |
| 189 | */ |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 190 | bool |
| 191 | CcnxNameComponents::operator< (const CcnxNameComponents &prefix) const |
| 192 | { |
| 193 | return std::lexicographical_compare (m_prefix.begin (), m_prefix.end (), |
| 194 | prefix.m_prefix.begin (), prefix.m_prefix.end ()); |
| 195 | } |
| 196 | |
| 197 | |
| 198 | /** |
| 199 | * \class ns3::ComponentsValue |
| 200 | * \brief hold objects of type ns3:CcnxNameComponents |
| 201 | */ |
Alexander Afanasyev | 7fd74f9 | 2011-08-25 19:40:17 -0700 | [diff] [blame] | 202 | ATTRIBUTE_HELPER_HEADER (CcnxNameComponents); |
Ilya Moiseenko | d26e682 | 2011-08-23 17:48:38 -0700 | [diff] [blame] | 203 | } // namespace ns3 |
| 204 | |
| 205 | #endif // _NDN_NAME_COMPONENTS_H_ |
| 206 | |