blob: fb4c3383257ae813b2a7c4bf5f70b2fa3a4eb9c6 [file] [log] [blame]
Vince Lehman4387e782014-06-19 16:57:45 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi9f5b01d2016-08-05 03:54:28 +00003 * Copyright (c) 2014-2016, 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.
Vince Lehman4387e782014-06-19 16:57:45 -050010 *
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_RIB_FIB_UPDATE_HPP
27#define NFD_RIB_FIB_UPDATE_HPP
28
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000029#include "core/common.hpp"
Vince Lehman4387e782014-06-19 16:57:45 -050030
31namespace nfd {
32namespace rib {
33
34/** \class FibUpdate
35 * \brief represents a FIB update
36 */
37class FibUpdate
38{
39public:
40 FibUpdate()
41 : faceId(0)
42 , cost(0)
43 {
44 }
45
Vince Lehman76c751c2014-11-18 17:36:38 -060046 bool
47 operator==(const FibUpdate& other) const
48 {
49 return (this->name == other.name &&
50 this->faceId == other.faceId &&
51 this->cost == other.cost &&
52 this->action == other.action);
53 }
54
55 static FibUpdate
Vince Lehman4387e782014-06-19 16:57:45 -050056 createAddUpdate(const Name& name, const uint64_t faceId, const uint64_t cost);
57
Vince Lehman76c751c2014-11-18 17:36:38 -060058 static FibUpdate
Vince Lehman4387e782014-06-19 16:57:45 -050059 createRemoveUpdate(const Name& name, const uint64_t faceId);
60
Vince Lehman76c751c2014-11-18 17:36:38 -060061 enum Action {
Vince Lehman4387e782014-06-19 16:57:45 -050062 ADD_NEXTHOP = 0,
63 REMOVE_NEXTHOP = 1
64 };
65
66public:
67 Name name;
68 uint64_t faceId;
69 uint64_t cost;
70 Action action;
71};
72
73inline std::ostream&
74operator<<(std::ostream& os, const FibUpdate& update)
75{
76 os << "FibUpdate("
77 << " Name: " << update.name << ", "
78 << "faceId: " << update.faceId << ", ";
79
Vince Lehman76c751c2014-11-18 17:36:38 -060080 if (update.action == FibUpdate::ADD_NEXTHOP) {
81 os << "cost: " << update.cost << ", "
82 << "action: ADD_NEXTHOP";
83 }
84 else {
85 os << "action: REMOVE_NEXTHOP";
86 }
Vince Lehman4387e782014-06-19 16:57:45 -050087
88 os << ")";
89
90 return os;
91}
92
93} // namespace rib
94} // namespace nfd
95
96#endif // NFD_RIB_FIB_UPDATE_HPP