NFD: Named Data Networking Forwarding Daemon 24.07-28-gdcc0e6e0
Loading...
Searching...
No Matches
rib-update-batch.hpp
Go to the documentation of this file.
1/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
3 * Copyright (c) 2014-2025, 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.
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
26#ifndef NFD_DAEMON_RIB_RIB_UPDATE_BATCH_HPP
27#define NFD_DAEMON_RIB_RIB_UPDATE_BATCH_HPP
28
29#include "route.hpp"
30
31#include <list>
32
33namespace nfd::rib {
34
39{
40 enum Action {
48 };
49
51 Name name;
53};
54
55std::ostream&
56operator<<(std::ostream& os, RibUpdate::Action action);
57
58std::ostream&
59operator<<(std::ostream& os, const RibUpdate& update);
60
61using RibUpdateList = std::list<RibUpdate>;
62
67{
68public:
69 using const_iterator = RibUpdateList::const_iterator;
70
71 explicit
72 RibUpdateBatch(uint64_t faceId);
73
74 uint64_t
75 getFaceId() const noexcept
76 {
77 return m_faceId;
78 }
79
80 void
81 add(const RibUpdate& update);
82
84 begin() const noexcept
85 {
86 return m_updates.begin();
87 }
88
90 end() const noexcept
91 {
92 return m_updates.end();
93 }
94
95 size_t
96 size() const noexcept
97 {
98 return m_updates.size();
99 }
100
101private:
102 uint64_t m_faceId;
103 RibUpdateList m_updates;
104};
105
106} // namespace nfd::rib
107
108#endif // NFD_DAEMON_RIB_RIB_UPDATE_BATCH_HPP
Represents a collection of RibUpdates to be applied to a single FaceId.
size_t size() const noexcept
void add(const RibUpdate &update)
uint64_t getFaceId() const noexcept
const_iterator begin() const noexcept
RibUpdateList::const_iterator const_iterator
const_iterator end() const noexcept
Represents a route for a name prefix.
Definition route.hpp:44
std::ostream & operator<<(std::ostream &os, const FibUpdate &update)
std::list< RibUpdate > RibUpdateList
Represents a route that will be added to or removed from a namespace.
@ REMOVE_FACE
An update triggered by a face destruction notification.