Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2011-2015 Regents of the University of California. |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 4 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 5 | * This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and |
| 6 | * contributors. |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 7 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 8 | * ndnSIM is free software: you can redistribute it and/or modify it under the terms |
| 9 | * of the GNU General Public License as published by the Free Software Foundation, |
| 10 | * either version 3 of the License, or (at your option) any later version. |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 11 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 12 | * ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; |
| 13 | * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR |
| 14 | * PURPOSE. See the GNU General Public License for more details. |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 15 | * |
Alexander Afanasyev | 60a7b62 | 2014-12-20 17:04:07 -0800 | [diff] [blame] | 16 | * You should have received a copy of the GNU General Public License along with |
| 17 | * ndnSIM, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>. |
| 18 | **/ |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 19 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 20 | #ifndef NDN_FACE_CONTAINER_H |
| 21 | #define NDN_FACE_CONTAINER_H |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 22 | |
Spyridon Mastorakis | 53e922f | 2014-10-17 17:29:26 -0700 | [diff] [blame] | 23 | #include "ns3/ndnSIM/model/ndn-common.hpp" |
| 24 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 25 | #include <stdint.h> |
| 26 | #include <vector> |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 27 | |
| 28 | #include "ns3/ptr.h" |
| 29 | #include "ns3/simple-ref-count.h" |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 30 | |
| 31 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 32 | namespace ndn { |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 33 | |
| 34 | /** |
Alexander Afanasyev | 7920651 | 2013-07-27 16:49:12 -0700 | [diff] [blame] | 35 | * @ingroup ndn-helpers |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 36 | * @brief A pool for Ndn faces |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 37 | * |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 38 | * Provides tools to perform basic manipulation on faces, such as setting metrics and |
| 39 | * states on faces |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 40 | * |
Spyridon Mastorakis | 460f57c | 2014-12-17 00:44:14 -0800 | [diff] [blame] | 41 | * @see ndn::StackHelper |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 42 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 43 | class FaceContainer : public SimpleRefCount<FaceContainer> { |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 44 | private: |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 45 | typedef std::vector<shared_ptr<Face>> Container; |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 46 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 47 | public: |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 48 | typedef Container::const_iterator Iterator; ///< @brief Iterator over FaceContainer |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 49 | |
| 50 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 51 | * @brief Create an empty FaceContainer. |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 52 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 53 | FaceContainer(); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 54 | |
| 55 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 56 | * @brief Copy constructor for FaceContainer. Calls AddAll method |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 57 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 58 | * @see FaceContainer::AddAll |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 59 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 60 | FaceContainer(const FaceContainer& other); |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 61 | |
| 62 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 63 | * @brief Copy operator for FaceContainer. Empties vector and calls AddAll method |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 64 | * |
| 65 | * All previously obtained iterators (Begin() and End()) will be invalidated |
| 66 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 67 | * @see FaceContainer::AddAll |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 68 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 69 | FaceContainer& |
| 70 | operator=(const FaceContainer& other); |
| 71 | |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 72 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 73 | * Add an entry to the container |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 74 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 75 | * @param face a smart pointer to a Face-derived object |
| 76 | */ |
| 77 | void |
| 78 | Add(shared_ptr<Face> face); |
| 79 | |
| 80 | /** |
| 81 | * @brief Add all entries from other container |
| 82 | * |
| 83 | * @param other smart pointer to a container |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 84 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 85 | void |
| 86 | AddAll(Ptr<FaceContainer> other); |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 87 | |
| 88 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 89 | * @brief Add all entries from other container |
Alexander Afanasyev | 0ab833e | 2011-08-18 15:49:13 -0700 | [diff] [blame] | 90 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 91 | * @param other container |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 92 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 93 | void |
| 94 | AddAll(const FaceContainer& other); |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 95 | |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 96 | public: // accessors |
Alexander Afanasyev | 7112f48 | 2011-08-17 14:05:57 -0700 | [diff] [blame] | 97 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 98 | * @brief Get an iterator which refers to the first pair in the |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 99 | * container. |
| 100 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 101 | * @returns an iterator which refers to the first pair in the container. |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 102 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 103 | Iterator |
| 104 | Begin() const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 105 | |
| 106 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 107 | * @brief Get an iterator which indicates past-the-last Node in the |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 108 | * container. |
| 109 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 110 | * @returns an iterator which indicates an ending condition for a loop. |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 111 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 112 | Iterator |
| 113 | End() const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 114 | |
| 115 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 116 | * @brief Get the number of faces stored in this container |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 117 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 118 | * @returns the number of faces stored in this container |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 119 | */ |
Alexander Afanasyev | be55cf6 | 2014-12-20 17:51:09 -0800 | [diff] [blame] | 120 | uint32_t |
| 121 | GetN() const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 122 | |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 123 | /** |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 124 | * Get a Face stored in the container |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 125 | * |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 126 | * @param pos index of the Face in the container |
| 127 | * @throw std::out_of_range if !(pos < GetN()). |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 128 | */ |
Spyridon Mastorakis | e4f0d3c | 2014-10-29 13:20:03 -0700 | [diff] [blame] | 129 | shared_ptr<Face> |
Alexander Afanasyev | 241df87 | 2015-08-13 17:26:15 -0700 | [diff] [blame] | 130 | Get(size_t pos) const; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 131 | |
| 132 | private: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 133 | Container m_faces; |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 136 | } // namespace ndn |
Alexander Afanasyev | 45b92d4 | 2011-08-14 23:11:38 -0700 | [diff] [blame] | 137 | } // namespace ns3 |
| 138 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 139 | #endif /* NDN_FACE_CONTAINER_H */ |