blob: e02a5ab9fe65c454b73d2efa8d27da189f1de198 [file] [log] [blame]
Junxiao Shibb5105f2014-03-03 12:06:45 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shib184e532016-05-26 18:09:57 +00003 * 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 Shib184e532016-05-26 18:09:57 +000024 */
Junxiao Shibb5105f2014-03-03 12:06:45 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
27#define NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP
Junxiao Shibb5105f2014-03-03 12:06:45 -070028
29#include "common.hpp"
30
31namespace nfd {
32
Junxiao Shibb5105f2014-03-03 12:06:45 -070033namespace fw {
34class Strategy;
Junxiao Shib184e532016-05-26 18:09:57 +000035} // namespace fw
Junxiao Shi2570f3e2016-07-27 02:48:29 +000036namespace name_tree {
37class NameTree;
38class Entry;
39} // namespace name_tree
40using name_tree::NameTree;
Junxiao Shibb5105f2014-03-03 12:06:45 -070041
42namespace strategy_choice {
43
44/** \brief represents a Strategy Choice entry
45 */
46class Entry : noncopyable
47{
48public:
49 Entry(const Name& prefix);
50
51 const Name&
52 getPrefix() const;
53
Junxiao Shib5888d22014-05-26 07:35:22 -070054 const Name&
55 getStrategyName() const;
56
Junxiao Shibb5105f2014-03-03 12:06:45 -070057 fw::Strategy&
58 getStrategy() const;
59
60 void
Junxiao Shi838c4f12014-11-03 18:55:24 -070061 setStrategy(fw::Strategy& strategy);
Junxiao Shibb5105f2014-03-03 12:06:45 -070062
63private:
64 Name m_prefix;
Junxiao Shi838c4f12014-11-03 18:55:24 -070065 fw::Strategy* m_strategy;
Junxiao Shibb5105f2014-03-03 12:06:45 -070066
Junxiao Shib184e532016-05-26 18:09:57 +000067 weak_ptr<name_tree::Entry> m_nameTreeEntry;
Junxiao Shibb5105f2014-03-03 12:06:45 -070068 friend class nfd::NameTree;
69 friend class nfd::name_tree::Entry;
70};
71
72
73inline const Name&
74Entry::getPrefix() const
75{
76 return m_prefix;
77}
78
79inline fw::Strategy&
80Entry::getStrategy() const
81{
Junxiao Shi838c4f12014-11-03 18:55:24 -070082 BOOST_ASSERT(m_strategy != nullptr);
Junxiao Shibb5105f2014-03-03 12:06:45 -070083 return *m_strategy;
84}
85
Junxiao Shi838c4f12014-11-03 18:55:24 -070086inline void
87Entry::setStrategy(fw::Strategy& strategy)
88{
89 m_strategy = &strategy;
90}
91
Junxiao Shibb5105f2014-03-03 12:06:45 -070092} // namespace strategy_choice
93} // namespace nfd
94
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070095#endif // NFD_DAEMON_TABLE_STRATEGY_CHOICE_ENTRY_HPP