blob: 70bbe1ecb037a0f603169be22c6be62fcf31856a [file] [log] [blame]
Vince Lehman76c751c2014-11-18 17:36:38 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento1b077f62019-02-19 19:19:44 -05002/*
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Vince Lehman76c751c2014-11-18 17:36:38 -06004 * 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.
10 *
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/>.
24 */
25
Davide Pesavento1b077f62019-02-19 19:19:44 -050026#ifndef NFD_DAEMON_RIB_RIB_UPDATE_HPP
27#define NFD_DAEMON_RIB_RIB_UPDATE_HPP
Vince Lehman76c751c2014-11-18 17:36:38 -060028
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000029#include "core/common.hpp"
Vince Lehman76c751c2014-11-18 17:36:38 -060030#include "route.hpp"
31
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::rib {
Vince Lehman76c751c2014-11-18 17:36:38 -060033
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040034/**
35 * \brief Represents a route that will be added to or removed from a namespace
36 * \note This type is copyable so that it can be stored in STL containers.
Vince Lehman76c751c2014-11-18 17:36:38 -060037 */
38class RibUpdate
39{
40public:
41 enum Action {
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040042 REGISTER = 0,
43 UNREGISTER = 1,
44 /**
45 * \brief An update triggered by a face destruction notification
46 * \note indicates a Route needs to be removed after a face is destroyed
Vince Lehman76c751c2014-11-18 17:36:38 -060047 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040048 REMOVE_FACE = 2,
Vince Lehman76c751c2014-11-18 17:36:38 -060049 };
50
Vince Lehman76c751c2014-11-18 17:36:38 -060051 RibUpdate&
52 setAction(Action action);
53
54 Action
55 getAction() const;
56
57 RibUpdate&
58 setName(const Name& name);
59
60 const Name&
61 getName() const;
62
63 RibUpdate&
64 setRoute(const Route& route);
65
66 const Route&
67 getRoute() const;
68
69private:
70 Action m_action;
71 Name m_name;
72 Route m_route;
73};
74
75inline RibUpdate&
76RibUpdate::setAction(Action action)
77{
78 m_action = action;
79 return *this;
80}
81
82inline RibUpdate::Action
83RibUpdate::getAction() const
84{
85 return m_action;
86}
87
88inline RibUpdate&
89RibUpdate::setName(const Name& name)
90{
91 m_name = name;
92 return *this;
93}
94
95inline const Name&
96RibUpdate::getName() const
97{
98 return m_name;
99}
100
101inline RibUpdate&
102RibUpdate::setRoute(const Route& route)
103{
104 m_route = route;
105 return *this;
106}
107
108inline const Route&
109RibUpdate::getRoute() const
110{
111 return m_route;
112}
113
114std::ostream&
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -0400115operator<<(std::ostream& os, RibUpdate::Action action);
Vince Lehman76c751c2014-11-18 17:36:38 -0600116
117std::ostream&
118operator<<(std::ostream& os, const RibUpdate& update);
119
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400120} // namespace nfd::rib
Vince Lehman76c751c2014-11-18 17:36:38 -0600121
Davide Pesavento1b077f62019-02-19 19:19:44 -0500122#endif // NFD_DAEMON_RIB_RIB_UPDATE_HPP