blob: 08e469b5ffd2efd0a5f1616eaabfc61f54942a88 [file] [log] [blame]
Vince Lehman76c751c2014-11-18 17:36:38 -06001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi3f21e582017-05-29 15:26:32 +00003 * Copyright (c) 2014-2017, 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
26#include "route.hpp"
Junxiao Shi3f21e582017-05-29 15:26:32 +000027#include <ndn-cxx/util/string-helper.hpp>
Vince Lehman76c751c2014-11-18 17:36:38 -060028
29namespace nfd {
30namespace rib {
31
Junxiao Shi3f21e582017-05-29 15:26:32 +000032Route::Route()
33 : faceId(0)
34 , origin(ndn::nfd::ROUTE_ORIGIN_APP)
35 , cost(0)
36 , flags(ndn::nfd::ROUTE_FLAGS_NONE)
Vince Lehman76c751c2014-11-18 17:36:38 -060037{
Junxiao Shi3f21e582017-05-29 15:26:32 +000038}
39
40bool
41operator==(const Route& lhs, const Route& rhs)
42{
43 return lhs.faceId == rhs.faceId &&
44 lhs.origin == rhs.origin &&
45 lhs.flags == rhs.flags &&
46 lhs.cost == rhs.cost &&
47 lhs.expires == rhs.expires;
Vince Lehman76c751c2014-11-18 17:36:38 -060048}
49
50std::ostream&
51operator<<(std::ostream& os, const Route& route)
52{
53 os << "Route("
54 << "faceid: " << route.faceId
55 << ", origin: " << route.origin
56 << ", cost: " << route.cost
Junxiao Shi3f21e582017-05-29 15:26:32 +000057 << ", flags: " << ndn::AsHex{route.flags};
58 if (route.expires) {
59 os << ", expires in: " << time::duration_cast<time::milliseconds>(*route.expires - time::steady_clock::now());
Vince Lehman76c751c2014-11-18 17:36:38 -060060 }
61 else {
62 os << ", never expires";
63 }
64 os << ")";
65
66 return os;
67}
68
69} // namespace rib
70} // namespace nfd