blob: 03f42f45d2e1c14f04a2f684be6f4a0ccfec9965 [file] [log] [blame]
Junxiao Shie5e2fce2014-02-10 20:01:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento50a6af32019-02-21 00:04:40 -05002/*
3 * Copyright (c) 2014-2019, Regents of the University of California,
Yumin Xiaab497452016-05-10 20:23:24 +08004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shi39ef2612014-11-29 20:35:19 -070024 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP
27#define NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP
Junxiao Shie5e2fce2014-02-10 20:01:53 -070028
29#include "fw/strategy-info.hpp"
30
31namespace nfd {
32
Davide Pesavento50a6af32019-02-21 00:04:40 -050033/** \brief Base class for an entity onto which StrategyInfo items may be placed
Junxiao Shie5e2fce2014-02-10 20:01:53 -070034 */
35class StrategyInfoHost
36{
37public:
Davide Pesavento50a6af32019-02-21 00:04:40 -050038 /** \brief Get a StrategyInfo item
Junxiao Shi5b3feb62016-08-19 01:51:41 +000039 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
40 * \return an existing StrategyInfo item of type T, or nullptr if it does not exist
Junxiao Shi39ef2612014-11-29 20:35:19 -070041 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070042 template<typename T>
Junxiao Shifc021862016-08-25 21:51:18 +000043 T*
Junxiao Shi5b3feb62016-08-19 01:51:41 +000044 getStrategyInfo() const
45 {
46 static_assert(std::is_base_of<fw::StrategyInfo, T>::value,
47 "T must inherit from StrategyInfo");
48
49 auto it = m_items.find(T::getTypeId());
50 if (it == m_items.end()) {
51 return nullptr;
52 }
Junxiao Shifc021862016-08-25 21:51:18 +000053 return static_cast<T*>(it->second.get());
Junxiao Shi5b3feb62016-08-19 01:51:41 +000054 }
55
Davide Pesavento50a6af32019-02-21 00:04:40 -050056 /** \brief Insert a StrategyInfo item
Junxiao Shi5b3feb62016-08-19 01:51:41 +000057 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
Junxiao Shifc021862016-08-25 21:51:18 +000058 * \return a new or existing StrategyInfo item of type T,
59 * and true for new item, false for existing item
Junxiao Shi39ef2612014-11-29 20:35:19 -070060 */
61 template<typename T, typename ...A>
Junxiao Shifc021862016-08-25 21:51:18 +000062 std::pair<T*, bool>
Junxiao Shi5b3feb62016-08-19 01:51:41 +000063 insertStrategyInfo(A&&... args)
64 {
65 static_assert(std::is_base_of<fw::StrategyInfo, T>::value,
66 "T must inherit from StrategyInfo");
67
Davide Pesavento50a6af32019-02-21 00:04:40 -050068 auto& item = m_items[T::getTypeId()];
69 bool isNew = item == nullptr;
Junxiao Shifc021862016-08-25 21:51:18 +000070 if (isNew) {
Davide Pesavento50a6af32019-02-21 00:04:40 -050071 item = make_unique<T>(std::forward<A>(args)...);
Junxiao Shi5b3feb62016-08-19 01:51:41 +000072 }
Junxiao Shifc021862016-08-25 21:51:18 +000073 return {static_cast<T*>(item.get()), isNew};
74 }
75
Davide Pesavento50a6af32019-02-21 00:04:40 -050076 /** \brief Erase a StrategyInfo item
Junxiao Shifc021862016-08-25 21:51:18 +000077 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
78 * \return number of items erased
79 */
80 template<typename T>
81 size_t
82 eraseStrategyInfo()
83 {
84 static_assert(std::is_base_of<fw::StrategyInfo, T>::value,
85 "T must inherit from StrategyInfo");
86
87 return m_items.erase(T::getTypeId());
Junxiao Shi5b3feb62016-08-19 01:51:41 +000088 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070089
Davide Pesavento50a6af32019-02-21 00:04:40 -050090 /** \brief Clear all StrategyInfo items
Junxiao Shi39ef2612014-11-29 20:35:19 -070091 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070092 void
Davide Pesavento50a6af32019-02-21 00:04:40 -050093 clearStrategyInfo()
94 {
95 m_items.clear();
96 }
Junxiao Shie5e2fce2014-02-10 20:01:53 -070097
98private:
Junxiao Shifc021862016-08-25 21:51:18 +000099 std::unordered_map<int, unique_ptr<fw::StrategyInfo>> m_items;
Junxiao Shie5e2fce2014-02-10 20:01:53 -0700100};
101
Junxiao Shie5e2fce2014-02-10 20:01:53 -0700102} // namespace nfd
103
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700104#endif // NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP