akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | d90338d | 2021-01-07 17:50:05 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2021, The University of Memphis, |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 4 | * Regents of the University of California, |
| 5 | * Arizona Board of Regents. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 6 | * |
| 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 Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 20 | */ |
Vince Lehman | c2e51f6 | 2015-01-20 15:03:11 -0600 | [diff] [blame] | 21 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 22 | #ifndef NLSR_SEQUENCING_MANAGER_HPP |
| 23 | #define NLSR_SEQUENCING_MANAGER_HPP |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 24 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 25 | #include "conf-parameter.hpp" |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 26 | #include "lsa/lsa.hpp" |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 27 | #include "test-access-control.hpp" |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 28 | |
akmhoque | c8a10f7 | 2014-04-25 18:42:55 -0500 | [diff] [blame] | 29 | #include <ndn-cxx/face.hpp> |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 30 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 31 | #include <list> |
| 32 | #include <string> |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 33 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 34 | namespace nlsr { |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 35 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 36 | class SequencingManager |
| 37 | { |
| 38 | public: |
Ashlesh Gawande | 55d1b5c | 2019-12-19 16:21:58 -0600 | [diff] [blame] | 39 | SequencingManager(const std::string& filePath, int hypState); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 40 | |
Ashlesh Gawande | 57a8717 | 2020-05-09 19:47:06 -0700 | [diff] [blame] | 41 | void |
| 42 | setLsaSeq(uint64_t seqNo, Lsa::Type lsaType) |
| 43 | { |
| 44 | switch (lsaType) { |
| 45 | case Lsa::Type::ADJACENCY: |
| 46 | m_adjLsaSeq = seqNo; |
| 47 | break; |
| 48 | case Lsa::Type::COORDINATE: |
| 49 | m_corLsaSeq = seqNo; |
| 50 | break; |
| 51 | case Lsa::Type::NAME: |
| 52 | m_nameLsaSeq = seqNo; |
| 53 | break; |
| 54 | default: |
| 55 | return; |
| 56 | } |
| 57 | } |
| 58 | |
| 59 | uint64_t |
| 60 | getLsaSeq(Lsa::Type lsaType) |
| 61 | { |
| 62 | switch (lsaType) { |
| 63 | case Lsa::Type::ADJACENCY: |
| 64 | return m_adjLsaSeq; |
| 65 | case Lsa::Type::COORDINATE: |
| 66 | return m_corLsaSeq; |
| 67 | case Lsa::Type::NAME: |
| 68 | return m_nameLsaSeq; |
| 69 | default: |
| 70 | return 0; |
| 71 | } |
| 72 | } |
| 73 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 74 | uint64_t |
| 75 | getNameLsaSeq() const |
| 76 | { |
| 77 | return m_nameLsaSeq; |
| 78 | } |
| 79 | |
| 80 | void |
| 81 | setNameLsaSeq(uint64_t nlsn) |
| 82 | { |
| 83 | m_nameLsaSeq = nlsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | uint64_t |
| 87 | getAdjLsaSeq() const |
| 88 | { |
| 89 | return m_adjLsaSeq; |
| 90 | } |
| 91 | |
| 92 | void |
| 93 | setAdjLsaSeq(uint64_t alsn) |
| 94 | { |
| 95 | m_adjLsaSeq = alsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | uint64_t |
| 99 | getCorLsaSeq() const |
| 100 | { |
| 101 | return m_corLsaSeq; |
| 102 | } |
| 103 | |
| 104 | void |
| 105 | setCorLsaSeq(uint64_t clsn) |
| 106 | { |
| 107 | m_corLsaSeq = clsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 108 | } |
| 109 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 110 | void |
| 111 | increaseNameLsaSeq() |
| 112 | { |
| 113 | m_nameLsaSeq++; |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 114 | } |
| 115 | |
| 116 | void |
| 117 | increaseAdjLsaSeq() |
| 118 | { |
| 119 | m_adjLsaSeq++; |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | void |
| 123 | increaseCorLsaSeq() |
| 124 | { |
| 125 | m_corLsaSeq++; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | void |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 129 | writeSeqNoToFile() const; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 130 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 131 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 132 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 133 | initiateSeqNoFromFile(); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 134 | |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 135 | private: |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 136 | /*! \brief Set the sequence file directory |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 137 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 138 | If the string is empty, home directory is set as sequence file directory |
| 139 | |
| 140 | \param filePath The directory where sequence file will be stored |
| 141 | */ |
| 142 | void |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 143 | setSeqFileDirectory(const std::string& filePath); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 144 | |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 145 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 146 | writeLog() const; |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 147 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 148 | private: |
Ashlesh Gawande | 55d1b5c | 2019-12-19 16:21:58 -0600 | [diff] [blame] | 149 | uint64_t m_nameLsaSeq = 0; |
| 150 | uint64_t m_adjLsaSeq = 0; |
| 151 | uint64_t m_corLsaSeq = 0; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 152 | std::string m_seqFileNameWithPath; |
Ashlesh Gawande | 85998a1 | 2017-12-07 22:22:13 -0600 | [diff] [blame] | 153 | |
| 154 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 155 | int m_hyperbolicState; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 156 | }; |
| 157 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 158 | } // namespace nlsr |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame] | 159 | #endif // NLSR_SEQUENCING_MANAGER_HPP |