blob: dcdefc8e87a095812f67eca566dcca737a518c69 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonc6a85222017-01-03 16:54:34 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Nick Gordonf8b5bcd2016-08-11 15:06:50 -05004 * Regents of the University of California
akmhoque3d06e792014-05-27 16:23:20 -05005 *
6 * This file is part of NLSR (Named-data Link State Routing).
7 * See AUTHORS.md for complete list of NLSR authors and contributors.
8 *
9 * NLSR is free software: you can redistribute it and/or modify it under the terms
10 * of the GNU General Public License as published by the Free Software Foundation,
11 * either version 3 of the License, or (at your option) any later version.
12 *
13 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
14 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License along with
18 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
akmhoque3d06e792014-05-27 16:23:20 -050019 **/
Nick Gordond0a7df32017-05-30 16:44:34 -050020
akmhoque53353462014-04-22 08:43:45 -050021#include <string>
akmhoque102aea42014-08-04 10:22:12 -050022#include <cmath>
akmhoquefdbddb12014-05-02 18:35:19 -050023#include <boost/cstdint.hpp>
Nick Gordone9733ed2017-04-26 10:48:39 -050024
akmhoque31d1d4b2014-05-05 22:08:14 -050025#include <ndn-cxx/face.hpp>
Nick Gordone9733ed2017-04-26 10:48:39 -050026#include <ndn-cxx/util/face-uri.hpp>
akmhoque53353462014-04-22 08:43:45 -050027
akmhoquefdbddb12014-05-02 18:35:19 -050028#ifndef NLSR_ADJACENT_HPP
29#define NLSR_ADJACENT_HPP
akmhoque53353462014-04-22 08:43:45 -050030
31namespace nlsr {
akmhoque157b0a42014-05-13 00:26:37 -050032
Nick Gordond0a7df32017-05-30 16:44:34 -050033/*! \brief A neighbor reachable over a Face.
34 *
35 * Represents another node that we expect to be running NLSR that we
36 * should be able to reach over a direct Face connection.
37 */
akmhoque53353462014-04-22 08:43:45 -050038class Adjacent
39{
40
41public:
Vince Lehmancb76ade2014-08-28 21:24:41 -050042 enum Status
43 {
44 STATUS_UNKNOWN = -1,
45 STATUS_INACTIVE = 0,
46 STATUS_ACTIVE = 1
47 };
48
akmhoque157b0a42014-05-13 00:26:37 -050049 Adjacent();
akmhoque53353462014-04-22 08:43:45 -050050
akmhoque157b0a42014-05-13 00:26:37 -050051 Adjacent(const ndn::Name& an);
akmhoque53353462014-04-22 08:43:45 -050052
Nick Gordone9733ed2017-04-26 10:48:39 -050053 Adjacent(const ndn::Name& an, const ndn::util::FaceUri& faceUri, double lc,
Vince Lehmancb76ade2014-08-28 21:24:41 -050054 Status s, uint32_t iton, uint64_t faceId);
akmhoque53353462014-04-22 08:43:45 -050055
akmhoque31d1d4b2014-05-05 22:08:14 -050056 const ndn::Name&
akmhoquefdbddb12014-05-02 18:35:19 -050057 getName() const
akmhoque53353462014-04-22 08:43:45 -050058 {
59 return m_name;
60 }
61
62 void
akmhoque31d1d4b2014-05-05 22:08:14 -050063 setName(const ndn::Name& an)
akmhoque53353462014-04-22 08:43:45 -050064 {
65 m_name = an;
66 }
67
Nick Gordone9733ed2017-04-26 10:48:39 -050068 const ndn::util::FaceUri&
69 getFaceUri() const
akmhoque53353462014-04-22 08:43:45 -050070 {
Nick Gordone9733ed2017-04-26 10:48:39 -050071 return m_faceUri;
akmhoque53353462014-04-22 08:43:45 -050072 }
73
74 void
Nick Gordone9733ed2017-04-26 10:48:39 -050075 setFaceUri(const ndn::util::FaceUri& faceUri)
akmhoque53353462014-04-22 08:43:45 -050076 {
Nick Gordone9733ed2017-04-26 10:48:39 -050077 m_faceUri = faceUri;
akmhoque53353462014-04-22 08:43:45 -050078 }
79
akmhoque102aea42014-08-04 10:22:12 -050080 uint64_t
akmhoquefdbddb12014-05-02 18:35:19 -050081 getLinkCost() const
akmhoque53353462014-04-22 08:43:45 -050082 {
akmhoque102aea42014-08-04 10:22:12 -050083 uint64_t linkCost = static_cast<uint64_t>(ceil(m_linkCost));
84 return linkCost;
akmhoque53353462014-04-22 08:43:45 -050085 }
86
87 void
88 setLinkCost(double lc)
89 {
90 m_linkCost = lc;
91 }
92
Vince Lehmancb76ade2014-08-28 21:24:41 -050093 Status
akmhoquefdbddb12014-05-02 18:35:19 -050094 getStatus() const
akmhoque53353462014-04-22 08:43:45 -050095 {
96 return m_status;
97 }
98
99 void
Vince Lehmancb76ade2014-08-28 21:24:41 -0500100 setStatus(Status s)
akmhoque53353462014-04-22 08:43:45 -0500101 {
102 m_status = s;
103 }
104
akmhoquefdbddb12014-05-02 18:35:19 -0500105 uint32_t
106 getInterestTimedOutNo() const
akmhoque53353462014-04-22 08:43:45 -0500107 {
108 return m_interestTimedOutNo;
109 }
110
111 void
akmhoquefdbddb12014-05-02 18:35:19 -0500112 setInterestTimedOutNo(uint32_t iton)
akmhoque53353462014-04-22 08:43:45 -0500113 {
114 m_interestTimedOutNo = iton;
115 }
116
akmhoquec04e7272014-07-02 11:00:14 -0500117 void
118 setFaceId(uint64_t faceId)
119 {
120 m_faceId = faceId;
121 }
122
123 uint64_t
Nick Gordond5c1a372016-10-31 13:56:23 -0500124 getFaceId() const
akmhoquec04e7272014-07-02 11:00:14 -0500125 {
126 return m_faceId;
127 }
128
Nick Gordond0a7df32017-05-30 16:44:34 -0500129 /*! \brief Equality is when name, Face URI, and link cost are all equal. */
akmhoque53353462014-04-22 08:43:45 -0500130 bool
akmhoquefdbddb12014-05-02 18:35:19 -0500131 operator==(const Adjacent& adjacent) const;
akmhoque53353462014-04-22 08:43:45 -0500132
Nick Gordon2a1ac612017-10-06 15:36:49 -0500133 bool
134 operator!=(const Adjacent& adjacent) const
135 {
136 return !(*this == adjacent);
137 }
138
139 bool
140 operator<(const Adjacent& adjacent) const;
141
akmhoquec04e7272014-07-02 11:00:14 -0500142 inline bool
143 compare(const ndn::Name& adjacencyName)
144 {
145 return m_name == adjacencyName;
146 }
147
148 inline bool
Nick Gordone9733ed2017-04-26 10:48:39 -0500149 compareFaceId(const uint64_t faceId)
akmhoquec04e7272014-07-02 11:00:14 -0500150 {
151 return m_faceId == faceId;
152 }
akmhoque31d1d4b2014-05-05 22:08:14 -0500153
akmhoque102aea42014-08-04 10:22:12 -0500154 inline bool
Nick Gordone9733ed2017-04-26 10:48:39 -0500155 compareFaceUri(const ndn::util::FaceUri& faceUri)
akmhoque102aea42014-08-04 10:22:12 -0500156 {
Nick Gordone9733ed2017-04-26 10:48:39 -0500157 return m_faceUri == faceUri;
akmhoque102aea42014-08-04 10:22:12 -0500158 }
159
akmhoque674b0b12014-05-20 14:33:28 -0500160 void
161 writeLog();
162
akmhoque157b0a42014-05-13 00:26:37 -0500163public:
164 static const float DEFAULT_LINK_COST;
165
akmhoque53353462014-04-22 08:43:45 -0500166private:
Nick Gordond0a7df32017-05-30 16:44:34 -0500167 /*! m_name The NLSR-configured router name of the neighbor */
akmhoque31d1d4b2014-05-05 22:08:14 -0500168 ndn::Name m_name;
Nick Gordond0a7df32017-05-30 16:44:34 -0500169 /*! m_connectingFaceUri The NFD-level specification of the Face*/
Nick Gordone9733ed2017-04-26 10:48:39 -0500170 ndn::util::FaceUri m_faceUri;
Nick Gordond0a7df32017-05-30 16:44:34 -0500171 /*! m_linkCost The semi-arbitrary cost to traverse the link. */
akmhoque53353462014-04-22 08:43:45 -0500172 double m_linkCost;
Nick Gordond0a7df32017-05-30 16:44:34 -0500173 /*! m_status Whether the neighbor is active or not */
Vince Lehmancb76ade2014-08-28 21:24:41 -0500174 Status m_status;
Nick Gordond0a7df32017-05-30 16:44:34 -0500175 /*! m_interestTimedOutNo How many failed Hello interests we have sent since the last reply */
akmhoquefdbddb12014-05-02 18:35:19 -0500176 uint32_t m_interestTimedOutNo;
Nick Gordond0a7df32017-05-30 16:44:34 -0500177 /*! m_faceId The NFD-assigned ID for the neighbor, used to
178 * determine whether a Face is available */
akmhoquec04e7272014-07-02 11:00:14 -0500179 uint64_t m_faceId;
Nick Gordon2a1ac612017-10-06 15:36:49 -0500180
181 friend std::ostream&
182 operator<<(std::ostream& os, const Adjacent& adjacent);
akmhoque53353462014-04-22 08:43:45 -0500183};
184
Nick Gordon2a1ac612017-10-06 15:36:49 -0500185std::ostream&
186operator<<(std::ostream& os, const Adjacent& adjacent);
187
akmhoque53353462014-04-22 08:43:45 -0500188} // namespace nlsr
189
Nick Gordone9733ed2017-04-26 10:48:39 -0500190#endif // NLSR_ADJACENT_HPP