blob: 23b5fcc82d2da8cdaeb94a8b7bf04fe41f25373f [file] [log] [blame]
Junxiao Shie5e2fce2014-02-10 20:01:53 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Yumin Xiaab497452016-05-10 20:23:24 +08003 * Copyright (c) 2014-2016, Regents of the University of California,
4 * 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
Junxiao Shi5b3feb62016-08-19 01:51:41 +000033/** \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:
Junxiao Shi39ef2612014-11-29 20:35:19 -070038 /** \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>
43 shared_ptr<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 }
53 return static_pointer_cast<T, fw::StrategyInfo>(it->second);
54 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070055
Junxiao Shi39ef2612014-11-29 20:35:19 -070056 /** \brief set a StrategyInfo item
Junxiao Shi5b3feb62016-08-19 01:51:41 +000057 * \tparam T type of StrategyInfo, must be a subclass of nfd::fw::StrategyInfo
Junxiao Shi39ef2612014-11-29 20:35:19 -070058 */
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070059 template<typename T>
Junxiao Shi39ef2612014-11-29 20:35:19 -070060 void
Junxiao Shi5b3feb62016-08-19 01:51:41 +000061 setStrategyInfo(shared_ptr<T> item)
62 {
63 static_assert(std::is_base_of<fw::StrategyInfo, T>::value,
64 "T must inherit from StrategyInfo");
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070065
Junxiao Shi5b3feb62016-08-19 01:51:41 +000066 if (item == nullptr) {
67 m_items.erase(T::getTypeId());
68 }
69 else {
70 m_items[T::getTypeId()] = item;
71 }
72 }
73
74 /** \brief insert a StrategyInfo item
75 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
76 * \return a new or existing StrategyInfo item of type T
Junxiao Shi39ef2612014-11-29 20:35:19 -070077 */
78 template<typename T, typename ...A>
Junxiao Shi0b5fbbb2014-02-20 15:54:03 -070079 shared_ptr<T>
Junxiao Shi5b3feb62016-08-19 01:51:41 +000080 insertStrategyInfo(A&&... args)
81 {
82 static_assert(std::is_base_of<fw::StrategyInfo, T>::value,
83 "T must inherit from StrategyInfo");
84
85 shared_ptr<T> item = this->getStrategyInfo<T>();
86 if (!static_cast<bool>(item)) {
87 item = std::make_shared<T>(std::forward<A>(args)...);
88 this->setStrategyInfo(item);
89 }
90 return item;
91 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070092
Junxiao Shi39ef2612014-11-29 20:35:19 -070093 /** \brief clear all StrategyInfo items
94 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070095 void
96 clearStrategyInfo();
97
98private:
Junxiao Shi39ef2612014-11-29 20:35:19 -070099 std::map<int, shared_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