blob: d6833ed68256338c8220f2032cd1920777a40561 [file] [log] [blame]
akmhoque3d06e792014-05-27 16:23:20 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Vince Lehmanc2e51f62015-01-20 15:03:11 -06003 * Copyright (c) 2014-2015, The University of Memphis,
4 * 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/>.
akmhoque3d06e792014-05-27 16:23:20 -050020 **/
Vince Lehmanc2e51f62015-01-20 15:03:11 -060021
akmhoquefdbddb12014-05-02 18:35:19 -050022#ifndef CONF_PARAMETER_HPP
23#define CONF_PARAMETER_HPP
akmhoque53353462014-04-22 08:43:45 -050024
25#include <iostream>
akmhoquefdbddb12014-05-02 18:35:19 -050026#include <boost/cstdint.hpp>
akmhoque31d1d4b2014-05-05 22:08:14 -050027#include <ndn-cxx/common.hpp>
28#include <ndn-cxx/face.hpp>
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070029#include <ndn-cxx/util/time.hpp>
akmhoque53353462014-04-22 08:43:45 -050030
akmhoque674b0b12014-05-20 14:33:28 -050031#include "logger.hpp"
32
akmhoque53353462014-04-22 08:43:45 -050033namespace nlsr {
akmhoque157b0a42014-05-13 00:26:37 -050034
35enum {
36 LSA_REFRESH_TIME_MIN = 240,
37 LSA_REFRESH_TIME_DEFAULT = 1800,
38 LSA_REFRESH_TIME_MAX = 7200
39};
40
41enum {
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -070042 LSA_INTEREST_LIFETIME_MIN = 1,
43 LSA_INTEREST_LIFETIME_DEFAULT = 4,
44 LSA_INTEREST_LIFETIME_MAX = 60
45};
46
47enum {
Vince Lehman7b616582014-10-17 16:25:39 -050048 ADJ_LSA_BUILD_INTERVAL_MIN = 0,
49 ADJ_LSA_BUILD_INTERVAL_DEFAULT = 5,
50 ADJ_LSA_BUILD_INTERVAL_MAX = 5
51};
52
53enum {
54 FIRST_HELLO_INTERVAL_MIN = 0,
55 FIRST_HELLO_INTERVAL_DEFAULT = 10,
56 FIRST_HELLO_INTERVAL_MAX = 10
57};
58
59enum {
60 ROUTING_CALC_INTERVAL_MIN = 0,
61 ROUTING_CALC_INTERVAL_DEFAULT = 15,
62 ROUTING_CALC_INTERVAL_MAX = 15
63};
64
65enum {
akmhoque157b0a42014-05-13 00:26:37 -050066 HELLO_RETRIES_MIN = 1,
67 HELLO_RETRIES_DEFAULT = 3,
68 HELLO_RETRIES_MAX = 15
69};
70
71enum {
72 HELLO_TIMEOUT_MIN = 1,
73 HELLO_TIMEOUT_DEFAULT = 3,
74 HELLO_TIMEOUT_MAX = 15
75};
76
77enum {
78 HELLO_INTERVAL_MIN = 30,
79 HELLO_INTERVAL_DEFAULT = 60,
80 HELLO_INTERVAL_MAX =90
81};
82
83enum {
84 MAX_FACES_PER_PREFIX_MIN = 0,
alvya2228c62014-12-09 10:25:11 -060085 MAX_FACES_PER_PREFIX_DEFAULT = 0,
akmhoque157b0a42014-05-13 00:26:37 -050086 MAX_FACES_PER_PREFIX_MAX = 60
87};
88
Nick Gordon5c467f02016-07-13 13:40:10 -050089enum HyperbolicState {
akmhoque157b0a42014-05-13 00:26:37 -050090 HYPERBOLIC_STATE_OFF = 0,
91 HYPERBOLIC_STATE_ON = 1,
alvya2228c62014-12-09 10:25:11 -060092 HYPERBOLIC_STATE_DRY_RUN = 2,
93 HYPERBOLIC_STATE_DEFAULT = 0
akmhoque157b0a42014-05-13 00:26:37 -050094};
95
akmhoque53353462014-04-22 08:43:45 -050096class ConfParameter
97{
98
99public:
100 ConfParameter()
akmhoque157b0a42014-05-13 00:26:37 -0500101 : m_lsaRefreshTime(LSA_REFRESH_TIME_DEFAULT)
Vince Lehman7b616582014-10-17 16:25:39 -0500102 , m_adjLsaBuildInterval(ADJ_LSA_BUILD_INTERVAL_DEFAULT)
103 , m_firstHelloInterval(FIRST_HELLO_INTERVAL_DEFAULT)
104 , m_routingCalcInterval(ROUTING_CALC_INTERVAL_DEFAULT)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700105 , m_lsaInterestLifetime(ndn::time::seconds(static_cast<int>(LSA_INTEREST_LIFETIME_DEFAULT)))
Alexander Afanasyev1cf1e102014-08-17 19:47:57 -0700106 , m_routerDeadInterval(2 * LSA_REFRESH_TIME_DEFAULT)
akmhoque157b0a42014-05-13 00:26:37 -0500107 , m_logLevel("INFO")
108 , m_interestRetryNumber(HELLO_RETRIES_DEFAULT)
109 , m_interestResendTime(HELLO_TIMEOUT_DEFAULT)
110 , m_infoInterestInterval(HELLO_INTERVAL_DEFAULT)
111 , m_hyperbolicState(HYPERBOLIC_STATE_OFF)
akmhoque53353462014-04-22 08:43:45 -0500112 , m_corR(0)
113 , m_corTheta(0)
akmhoque157b0a42014-05-13 00:26:37 -0500114 , m_maxFacesPerPrefix(MAX_FACES_PER_PREFIX_MIN)
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500115 , m_isLog4cxxConfAvailable(false)
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700116 {
117 }
akmhoque53353462014-04-22 08:43:45 -0500118
119 void
akmhoque157b0a42014-05-13 00:26:37 -0500120 setNetwork(const ndn::Name& networkName)
akmhoque53353462014-04-22 08:43:45 -0500121 {
akmhoque157b0a42014-05-13 00:26:37 -0500122 m_network = networkName;
123 m_chronosyncPrefix = m_network;
akmhoquea816bee2014-06-24 14:37:40 -0500124 m_chronosyncPrefix.append("NLSR");
akmhoque157b0a42014-05-13 00:26:37 -0500125 m_chronosyncPrefix.append("sync");
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700126
akmhoque157b0a42014-05-13 00:26:37 -0500127 m_lsaPrefix = m_network;
akmhoquea816bee2014-06-24 14:37:40 -0500128 m_lsaPrefix.append("NLSR");
akmhoque157b0a42014-05-13 00:26:37 -0500129 m_lsaPrefix.append("LSA");
akmhoque53353462014-04-22 08:43:45 -0500130 }
131
akmhoque31d1d4b2014-05-05 22:08:14 -0500132 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700133 getNetwork() const
akmhoque53353462014-04-22 08:43:45 -0500134 {
135 return m_network;
136 }
137
138 void
akmhoque157b0a42014-05-13 00:26:37 -0500139 setRouterName(const ndn::Name& routerName)
140 {
141 m_routerName = routerName;
142 }
143
144 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700145 getRouterName() const
akmhoque157b0a42014-05-13 00:26:37 -0500146 {
147 return m_routerName;
148 }
149
150 void
151 setSiteName(const ndn::Name& siteName)
152 {
153 m_siteName = siteName;
154 }
155
156 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700157 getSiteName() const
akmhoque157b0a42014-05-13 00:26:37 -0500158 {
159 return m_siteName;
160 }
161
162 void
akmhoque53353462014-04-22 08:43:45 -0500163 buildRouterPrefix()
164 {
akmhoque31d1d4b2014-05-05 22:08:14 -0500165 m_routerPrefix = m_network;
166 m_routerPrefix.append(m_siteName);
167 m_routerPrefix.append(m_routerName);
akmhoque53353462014-04-22 08:43:45 -0500168 }
169
akmhoque31d1d4b2014-05-05 22:08:14 -0500170 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700171 getRouterPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500172 {
173 return m_routerPrefix;
174 }
175
akmhoque157b0a42014-05-13 00:26:37 -0500176
akmhoque31d1d4b2014-05-05 22:08:14 -0500177 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700178 getChronosyncPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500179 {
akmhoque157b0a42014-05-13 00:26:37 -0500180 return m_chronosyncPrefix;
akmhoque53353462014-04-22 08:43:45 -0500181 }
182
akmhoque157b0a42014-05-13 00:26:37 -0500183 const ndn::Name&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700184 getLsaPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500185 {
akmhoque157b0a42014-05-13 00:26:37 -0500186 return m_lsaPrefix;
akmhoque53353462014-04-22 08:43:45 -0500187 }
188
189 void
alvy5a454952014-12-15 12:49:54 -0600190 setLsaRefreshTime(uint32_t lrt)
akmhoque53353462014-04-22 08:43:45 -0500191 {
192 m_lsaRefreshTime = lrt;
akmhoque53353462014-04-22 08:43:45 -0500193 }
194
alvy5a454952014-12-15 12:49:54 -0600195 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700196 getLsaRefreshTime() const
akmhoque53353462014-04-22 08:43:45 -0500197 {
198 return m_lsaRefreshTime;
199 }
200
201 void
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700202 setLsaInterestLifetime(const ndn::time::seconds& lifetime)
203 {
204 m_lsaInterestLifetime = lifetime;
205 }
206
207 const ndn::time::seconds&
208 getLsaInterestLifetime() const
209 {
210 return m_lsaInterestLifetime;
211 }
212
213 void
Vince Lehman7b616582014-10-17 16:25:39 -0500214 setAdjLsaBuildInterval(uint32_t interval)
215 {
216 m_adjLsaBuildInterval = interval;
217 }
218
219 uint32_t
220 getAdjLsaBuildInterval() const
221 {
222 return m_adjLsaBuildInterval;
223 }
224
225 void
226 setFirstHelloInterval(uint32_t interval)
227 {
228 m_firstHelloInterval = interval;
229 }
230
231 uint32_t
232 getFirstHelloInterval() const
233 {
234 return m_firstHelloInterval;
235 }
236
237 void
238 setRoutingCalcInterval(uint32_t interval)
239 {
240 m_routingCalcInterval = interval;
241 }
242
243 uint32_t
244 getRoutingCalcInterval() const
245 {
246 return m_routingCalcInterval;
247 }
248
249 void
alvy5a454952014-12-15 12:49:54 -0600250 setRouterDeadInterval(uint32_t rdt)
akmhoque53353462014-04-22 08:43:45 -0500251 {
252 m_routerDeadInterval = rdt;
253 }
254
alvy5a454952014-12-15 12:49:54 -0600255 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700256 getRouterDeadInterval() const
akmhoque53353462014-04-22 08:43:45 -0500257 {
258 return m_routerDeadInterval;
259 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700260
261 void
akmhoque157b0a42014-05-13 00:26:37 -0500262 setLogLevel(const std::string& logLevel)
263 {
264 m_logLevel = logLevel;
265 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700266
267 const std::string&
268 getLogLevel() const
akmhoque157b0a42014-05-13 00:26:37 -0500269 {
270 return m_logLevel;
271 }
akmhoque53353462014-04-22 08:43:45 -0500272
273 void
akmhoque157b0a42014-05-13 00:26:37 -0500274 setInterestRetryNumber(uint32_t irn)
akmhoque53353462014-04-22 08:43:45 -0500275 {
akmhoque157b0a42014-05-13 00:26:37 -0500276 m_interestRetryNumber = irn;
277 }
278
279 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700280 getInterestRetryNumber() const
akmhoque157b0a42014-05-13 00:26:37 -0500281 {
282 return m_interestRetryNumber;
283 }
284
285 void
alvy5a454952014-12-15 12:49:54 -0600286 setInterestResendTime(uint32_t irt)
akmhoque157b0a42014-05-13 00:26:37 -0500287 {
288 m_interestResendTime = irt;
akmhoque53353462014-04-22 08:43:45 -0500289 }
290
alvy5a454952014-12-15 12:49:54 -0600291 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700292 getInterestResendTime() const
akmhoque53353462014-04-22 08:43:45 -0500293 {
akmhoque157b0a42014-05-13 00:26:37 -0500294 return m_interestResendTime;
akmhoque53353462014-04-22 08:43:45 -0500295 }
296
alvy5a454952014-12-15 12:49:54 -0600297 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700298 getInfoInterestInterval() const
akmhoque53353462014-04-22 08:43:45 -0500299 {
akmhoque157b0a42014-05-13 00:26:37 -0500300 return m_infoInterestInterval;
akmhoque53353462014-04-22 08:43:45 -0500301 }
302
303 void
alvy5a454952014-12-15 12:49:54 -0600304 setInfoInterestInterval(uint32_t iii)
akmhoque53353462014-04-22 08:43:45 -0500305 {
akmhoque157b0a42014-05-13 00:26:37 -0500306 m_infoInterestInterval = iii;
307 }
308
309 void
310 setHyperbolicState(int32_t ihc)
311 {
312 m_hyperbolicState = ihc;
akmhoque53353462014-04-22 08:43:45 -0500313 }
314
akmhoquefdbddb12014-05-02 18:35:19 -0500315 int32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700316 getHyperbolicState() const
akmhoque53353462014-04-22 08:43:45 -0500317 {
akmhoque157b0a42014-05-13 00:26:37 -0500318 return m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500319 }
320
akmhoque157b0a42014-05-13 00:26:37 -0500321 bool
akmhoque53353462014-04-22 08:43:45 -0500322 setCorR(double cr)
323 {
akmhoque157b0a42014-05-13 00:26:37 -0500324 if ( cr >= 0 ) {
325 m_corR = cr;
326 return true;
327 }
328 return false;
akmhoque53353462014-04-22 08:43:45 -0500329 }
330
331 double
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700332 getCorR() const
akmhoque53353462014-04-22 08:43:45 -0500333 {
334 return m_corR;
335 }
336
337 void
338 setCorTheta(double ct)
339 {
340 m_corTheta = ct;
341 }
342
343 double
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700344 getCorTheta() const
akmhoque53353462014-04-22 08:43:45 -0500345 {
346 return m_corTheta;
347 }
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700348
akmhoque53353462014-04-22 08:43:45 -0500349 void
Vince Lehman942eb7b2014-10-02 10:09:27 -0500350 setMaxFacesPerPrefix(uint32_t mfpp)
akmhoque53353462014-04-22 08:43:45 -0500351 {
akmhoque157b0a42014-05-13 00:26:37 -0500352 m_maxFacesPerPrefix = mfpp;
akmhoque53353462014-04-22 08:43:45 -0500353 }
354
Vince Lehman942eb7b2014-10-02 10:09:27 -0500355 uint32_t
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700356 getMaxFacesPerPrefix() const
akmhoque53353462014-04-22 08:43:45 -0500357 {
akmhoque157b0a42014-05-13 00:26:37 -0500358 return m_maxFacesPerPrefix;
akmhoque53353462014-04-22 08:43:45 -0500359 }
360
361 void
akmhoque674b0b12014-05-20 14:33:28 -0500362 setLogDir(const std::string& logDir)
363 {
364 m_logDir = logDir;
365 }
366
367 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700368 getLogDir() const
akmhoque674b0b12014-05-20 14:33:28 -0500369 {
370 return m_logDir;
371 }
372
373 void
akmhoque157b0a42014-05-13 00:26:37 -0500374 setSeqFileDir(const std::string& ssfd)
akmhoque53353462014-04-22 08:43:45 -0500375 {
akmhoque157b0a42014-05-13 00:26:37 -0500376 m_seqFileDir = ssfd;
akmhoque53353462014-04-22 08:43:45 -0500377 }
378
akmhoque157b0a42014-05-13 00:26:37 -0500379 const std::string&
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700380 getSeqFileDir() const
akmhoque53353462014-04-22 08:43:45 -0500381 {
akmhoque157b0a42014-05-13 00:26:37 -0500382 return m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500383 }
384
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500385 bool
386 isLog4CxxConfAvailable() const
387 {
388 return m_isLog4cxxConfAvailable;
389 }
390
391 void
392 setLog4CxxConfPath(const std::string& path)
393 {
394 m_log4CxxConfPath = path;
395 m_isLog4cxxConfAvailable = true;
396 }
397
398 const std::string&
399 getLog4CxxConfPath() const
400 {
401 return m_log4CxxConfPath;
402 }
403
akmhoque674b0b12014-05-20 14:33:28 -0500404 void
405 writeLog();
akmhoque53353462014-04-22 08:43:45 -0500406
407private:
akmhoque31d1d4b2014-05-05 22:08:14 -0500408 ndn::Name m_routerName;
409 ndn::Name m_siteName;
410 ndn::Name m_network;
akmhoque53353462014-04-22 08:43:45 -0500411
akmhoque31d1d4b2014-05-05 22:08:14 -0500412 ndn::Name m_routerPrefix;
413 ndn::Name m_lsaRouterPrefix;
akmhoque53353462014-04-22 08:43:45 -0500414
akmhoque157b0a42014-05-13 00:26:37 -0500415 ndn::Name m_chronosyncPrefix;
416 ndn::Name m_lsaPrefix;
417
alvy5a454952014-12-15 12:49:54 -0600418 uint32_t m_lsaRefreshTime;
Vince Lehman7b616582014-10-17 16:25:39 -0500419
420 uint32_t m_adjLsaBuildInterval;
421 uint32_t m_firstHelloInterval;
422 uint32_t m_routingCalcInterval;
423
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700424 ndn::time::seconds m_lsaInterestLifetime;
alvy5a454952014-12-15 12:49:54 -0600425 uint32_t m_routerDeadInterval;
akmhoque157b0a42014-05-13 00:26:37 -0500426 std::string m_logLevel;
akmhoque53353462014-04-22 08:43:45 -0500427
akmhoquefdbddb12014-05-02 18:35:19 -0500428 uint32_t m_interestRetryNumber;
alvy5a454952014-12-15 12:49:54 -0600429 uint32_t m_interestResendTime;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700430
alvy5a454952014-12-15 12:49:54 -0600431 uint32_t m_infoInterestInterval;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700432
akmhoque157b0a42014-05-13 00:26:37 -0500433 int32_t m_hyperbolicState;
akmhoque53353462014-04-22 08:43:45 -0500434 double m_corR;
435 double m_corTheta;
436
Vince Lehman942eb7b2014-10-02 10:09:27 -0500437 uint32_t m_maxFacesPerPrefix;
Alexander Afanasyev411ee4b2014-08-16 23:17:03 -0700438
akmhoque674b0b12014-05-20 14:33:28 -0500439 std::string m_logDir;
akmhoque157b0a42014-05-13 00:26:37 -0500440 std::string m_seqFileDir;
akmhoque53353462014-04-22 08:43:45 -0500441
Muktadir R Chowdhurybfa27602014-10-31 10:57:41 -0500442 bool m_isLog4cxxConfAvailable;
443 std::string m_log4CxxConfPath;
akmhoque53353462014-04-22 08:43:45 -0500444};
445
akmhoque53353462014-04-22 08:43:45 -0500446} // namespace nlsr
447
akmhoquefdbddb12014-05-02 18:35:19 -0500448#endif //CONF_PARAMETER_HPP