blob: 490638723d45773cc4f37514a6b2a4f50d949a49 [file] [log] [blame]
Vince Lehman76c751c2014-11-18 17:36:38 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoc0822fa2018-05-10 21:54:10 -04002/*
Davide Pesaventoc2442be2025-01-11 17:25:40 -05003 * Copyright (c) 2014-2025, 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_BATCH_HPP
27#define NFD_DAEMON_RIB_RIB_UPDATE_BATCH_HPP
Vince Lehman76c751c2014-11-18 17:36:38 -060028
Davide Pesaventoc2442be2025-01-11 17:25:40 -050029#include "route.hpp"
Vince Lehman76c751c2014-11-18 17:36:38 -060030
Davide Pesaventoc0822fa2018-05-10 21:54:10 -040031#include <list>
32
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040033namespace nfd::rib {
Vince Lehman76c751c2014-11-18 17:36:38 -060034
Davide Pesaventoc2442be2025-01-11 17:25:40 -050035/**
36 * \brief Represents a route that will be added to or removed from a namespace.
37 */
38struct RibUpdate
39{
40 enum Action {
41 REGISTER = 0,
42 UNREGISTER = 1,
43 /**
44 * \brief An update triggered by a face destruction notification
45 * \note indicates a Route needs to be removed after a face is destroyed
46 */
47 REMOVE_FACE = 2,
48 };
49
50 Action action;
51 Name name;
52 Route route;
53};
54
55std::ostream&
56operator<<(std::ostream& os, RibUpdate::Action action);
57
58std::ostream&
59operator<<(std::ostream& os, const RibUpdate& update);
60
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040061using RibUpdateList = std::list<RibUpdate>;
Vince Lehman76c751c2014-11-18 17:36:38 -060062
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040063/**
64 * \brief Represents a collection of RibUpdates to be applied to a single FaceId.
Vince Lehman76c751c2014-11-18 17:36:38 -060065 */
66class RibUpdateBatch
67{
68public:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040069 using const_iterator = RibUpdateList::const_iterator;
Vince Lehman76c751c2014-11-18 17:36:38 -060070
71 explicit
72 RibUpdateBatch(uint64_t faceId);
73
74 uint64_t
Davide Pesaventoc2442be2025-01-11 17:25:40 -050075 getFaceId() const noexcept
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040076 {
77 return m_faceId;
78 }
Vince Lehman76c751c2014-11-18 17:36:38 -060079
80 void
81 add(const RibUpdate& update);
82
83 const_iterator
Davide Pesaventoc2442be2025-01-11 17:25:40 -050084 begin() const noexcept
85 {
86 return m_updates.begin();
87 }
Vince Lehman76c751c2014-11-18 17:36:38 -060088
89 const_iterator
Davide Pesaventoc2442be2025-01-11 17:25:40 -050090 end() const noexcept
91 {
92 return m_updates.end();
93 }
Vince Lehman76c751c2014-11-18 17:36:38 -060094
95 size_t
Davide Pesaventoc2442be2025-01-11 17:25:40 -050096 size() const noexcept
97 {
98 return m_updates.size();
99 }
Vince Lehman76c751c2014-11-18 17:36:38 -0600100
101private:
102 uint64_t m_faceId;
103 RibUpdateList m_updates;
104};
105
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400106} // namespace nfd::rib
Vince Lehman76c751c2014-11-18 17:36:38 -0600107
Davide Pesavento1b077f62019-02-19 19:19:44 -0500108#endif // NFD_DAEMON_RIB_RIB_UPDATE_BATCH_HPP