blob: 7ab1352b41347bd76119301fa1fd653a9aa38086 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Ashlesh Gawande0421bc62020-05-08 20:42:19 -07002/*
3 * Copyright (c) 2014-2020, The University of Memphis,
Vince Lehmancec38852015-03-31 13:21:38 -05004 * Regents of the University of California,
5 * Arizona Board of Regents.
akmhoque3d06e792014-05-27 16:23:20 -05006 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070020 */
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050021
akmhoquec8a10f72014-04-25 18:42:55 -050022#include "nexthop-list.hpp"
Nick Gordone98480b2017-05-24 11:23:03 -050023#include "common.hpp"
akmhoque53353462014-04-22 08:43:45 -050024#include "nexthop.hpp"
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070025
26#include <ndn-cxx/util/ostream-joiner.hpp>
akmhoque53353462014-04-22 08:43:45 -050027
28namespace nlsr {
29
akmhoque53353462014-04-22 08:43:45 -050030static bool
Vince Lehmanef21d8e2015-04-01 15:59:39 -050031nexthopAddCompare(const NextHop& nh1, const NextHop& nh2)
akmhoque53353462014-04-22 08:43:45 -050032{
akmhoque157b0a42014-05-13 00:26:37 -050033 return nh1.getConnectingFaceUri() == nh2.getConnectingFaceUri();
akmhoque53353462014-04-22 08:43:45 -050034}
35
36static bool
Vince Lehmanef21d8e2015-04-01 15:59:39 -050037nexthopRemoveCompare(const NextHop& nh1, const NextHop& nh2)
akmhoque53353462014-04-22 08:43:45 -050038{
akmhoque157b0a42014-05-13 00:26:37 -050039 return (nh1.getConnectingFaceUri() == nh2.getConnectingFaceUri() &&
Vince Lehman145064a2014-08-23 11:44:16 -050040 nh1.getRouteCostAsAdjustedInteger() == nh2.getRouteCostAsAdjustedInteger()) ;
akmhoque53353462014-04-22 08:43:45 -050041}
42
Nick Gordonb50e51b2016-07-22 16:05:57 -050043bool
44operator==(const NexthopList& lhs, const NexthopList& rhs)
45{
Nick Gordonff9a6272017-10-12 13:38:29 -050046 if (lhs.size() != rhs.size()) {
Nick Gordonb50e51b2016-07-22 16:05:57 -050047 return false;
48 }
49
50 NexthopList slhs = lhs;
51 NexthopList srhs = rhs;
52
53 for (struct {std::set<NextHop>::iterator lItr;
54 std::set<NextHop>::iterator rItr;} pair = {slhs.begin(), srhs.begin()};
55 (pair.lItr != slhs.end() || pair.rItr != srhs.end());
56 pair.rItr++, pair.lItr++) {
57 if (!((*pair.lItr) == (*pair.rItr))) {
58 return false;
59 }
60 }
61 return true;
62}
63
Nick Gordonc0c6bcf2017-08-15 18:11:21 -050064bool
65operator!=(const NexthopList& lhs, const NexthopList& rhs)
66{
67 return !(lhs == rhs);
68}
69
Nick Gordonb50e51b2016-07-22 16:05:57 -050070std::ostream&
71operator<<(std::ostream& os, const NexthopList& nhl)
72{
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070073 os << " ";
74 std::copy(nhl.cbegin(), nhl.cend(), ndn::make_ostream_joiner(os, "\n "));
Nick Gordonb50e51b2016-07-22 16:05:57 -050075 return os;
76}
77
akmhoque53353462014-04-22 08:43:45 -050078void
Vince Lehmanef21d8e2015-04-01 15:59:39 -050079NexthopList::addNextHop(const NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -050080{
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070081 auto it = std::find_if(m_nexthopList.begin(), m_nexthopList.end(),
82 std::bind(&nexthopAddCompare, _1, nh));
akmhoque157b0a42014-05-13 00:26:37 -050083 if (it == m_nexthopList.end()) {
Vince Lehmanef21d8e2015-04-01 15:59:39 -050084 m_nexthopList.insert(nh);
akmhoque53353462014-04-22 08:43:45 -050085 }
Vince Lehmanef21d8e2015-04-01 15:59:39 -050086 else if (it->getRouteCost() > nh.getRouteCost()) {
87 removeNextHop(*it);
88 m_nexthopList.insert(nh);
akmhoque53353462014-04-22 08:43:45 -050089 }
90}
91
akmhoque53353462014-04-22 08:43:45 -050092void
Vince Lehmanef21d8e2015-04-01 15:59:39 -050093NexthopList::removeNextHop(const NextHop& nh)
akmhoque53353462014-04-22 08:43:45 -050094{
Ashlesh Gawande0421bc62020-05-08 20:42:19 -070095 auto it = std::find_if(m_nexthopList.begin(), m_nexthopList.end(),
96 std::bind(&nexthopRemoveCompare, _1, nh));
akmhoque157b0a42014-05-13 00:26:37 -050097 if (it != m_nexthopList.end()) {
akmhoque53353462014-04-22 08:43:45 -050098 m_nexthopList.erase(it);
99 }
100}
101
Nick Gordonfad8e252016-08-11 14:21:38 -0500102} // namespace nlsr