blob: 92045751bd134ef1e29f33c00c1a621cc3aaa625 [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/*
Davide Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, 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
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040031#include <unordered_map>
32
Junxiao Shie5e2fce2014-02-10 20:01:53 -070033namespace nfd {
34
Davide Pesavento50a6af32019-02-21 00:04:40 -050035/** \brief Base class for an entity onto which StrategyInfo items may be placed
Junxiao Shie5e2fce2014-02-10 20:01:53 -070036 */
37class StrategyInfoHost
38{
39public:
Davide Pesavento50a6af32019-02-21 00:04:40 -050040 /** \brief Get a StrategyInfo item
Junxiao Shi5b3feb62016-08-19 01:51:41 +000041 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
42 * \return an existing StrategyInfo item of type T, or nullptr if it does not exist
Junxiao Shi39ef2612014-11-29 20:35:19 -070043 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070044 template<typename T>
Junxiao Shifc021862016-08-25 21:51:18 +000045 T*
Junxiao Shi5b3feb62016-08-19 01:51:41 +000046 getStrategyInfo() const
47 {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040048 static_assert(std::is_base_of_v<fw::StrategyInfo, T>);
Junxiao Shi5b3feb62016-08-19 01:51:41 +000049
50 auto it = m_items.find(T::getTypeId());
51 if (it == m_items.end()) {
52 return nullptr;
53 }
Junxiao Shifc021862016-08-25 21:51:18 +000054 return static_cast<T*>(it->second.get());
Junxiao Shi5b3feb62016-08-19 01:51:41 +000055 }
56
Davide Pesavento50a6af32019-02-21 00:04:40 -050057 /** \brief Insert a StrategyInfo item
Junxiao Shi5b3feb62016-08-19 01:51:41 +000058 * \tparam T type of StrategyInfo, must be a subclass of fw::StrategyInfo
Junxiao Shifc021862016-08-25 21:51:18 +000059 * \return a new or existing StrategyInfo item of type T,
60 * and true for new item, false for existing item
Junxiao Shi39ef2612014-11-29 20:35:19 -070061 */
62 template<typename T, typename ...A>
Junxiao Shifc021862016-08-25 21:51:18 +000063 std::pair<T*, bool>
Junxiao Shi5b3feb62016-08-19 01:51:41 +000064 insertStrategyInfo(A&&... args)
65 {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040066 static_assert(std::is_base_of_v<fw::StrategyInfo, T>);
Junxiao Shi5b3feb62016-08-19 01:51:41 +000067
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 {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040084 static_assert(std::is_base_of_v<fw::StrategyInfo, T>);
Junxiao Shifc021862016-08-25 21:51:18 +000085
86 return m_items.erase(T::getTypeId());
Junxiao Shi5b3feb62016-08-19 01:51:41 +000087 }
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070088
Davide Pesavento50a6af32019-02-21 00:04:40 -050089 /** \brief Clear all StrategyInfo items
Junxiao Shi39ef2612014-11-29 20:35:19 -070090 */
Junxiao Shie5e2fce2014-02-10 20:01:53 -070091 void
Davide Pesavento50a6af32019-02-21 00:04:40 -050092 clearStrategyInfo()
93 {
94 m_items.clear();
95 }
Junxiao Shie5e2fce2014-02-10 20:01:53 -070096
97private:
Junxiao Shifc021862016-08-25 21:51:18 +000098 std::unordered_map<int, unique_ptr<fw::StrategyInfo>> m_items;
Junxiao Shie5e2fce2014-02-10 20:01:53 -070099};
100
Junxiao Shie5e2fce2014-02-10 20:01:53 -0700101} // namespace nfd
102
Alexander Afanasyev613e2a92014-04-15 13:36:58 -0700103#endif // NFD_DAEMON_TABLE_STRATEGY_INFO_HOST_HPP