akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Nick Gordon | c6a8522 | 2017-01-03 16:54:34 -0600 | [diff] [blame] | 3 | * Copyright (c) 2014-2017, 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/>. |
akmhoque | 3d06e79 | 2014-05-27 16:23:20 -0500 | [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 | |
| 25 | #include <list> |
| 26 | #include <string> |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 27 | #include <boost/cstdint.hpp> |
| 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 | |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 31 | #include "conf-parameter.hpp" |
| 32 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 33 | namespace nlsr { |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 34 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 35 | class SequencingManager |
| 36 | { |
| 37 | public: |
| 38 | SequencingManager() |
| 39 | : m_nameLsaSeq(0) |
| 40 | , m_adjLsaSeq(0) |
| 41 | , m_corLsaSeq(0) |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 42 | , m_seqFileNameWithPath() |
| 43 | { |
| 44 | } |
| 45 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 46 | uint64_t |
| 47 | getNameLsaSeq() const |
| 48 | { |
| 49 | return m_nameLsaSeq; |
| 50 | } |
| 51 | |
| 52 | void |
| 53 | setNameLsaSeq(uint64_t nlsn) |
| 54 | { |
| 55 | m_nameLsaSeq = nlsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 56 | } |
| 57 | |
| 58 | uint64_t |
| 59 | getAdjLsaSeq() const |
| 60 | { |
| 61 | return m_adjLsaSeq; |
| 62 | } |
| 63 | |
| 64 | void |
| 65 | setAdjLsaSeq(uint64_t alsn) |
| 66 | { |
| 67 | m_adjLsaSeq = alsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 68 | } |
| 69 | |
| 70 | uint64_t |
| 71 | getCorLsaSeq() const |
| 72 | { |
| 73 | return m_corLsaSeq; |
| 74 | } |
| 75 | |
| 76 | void |
| 77 | setCorLsaSeq(uint64_t clsn) |
| 78 | { |
| 79 | m_corLsaSeq = clsn; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 80 | } |
| 81 | |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 82 | void |
| 83 | increaseNameLsaSeq() |
| 84 | { |
| 85 | m_nameLsaSeq++; |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | void |
| 89 | increaseAdjLsaSeq() |
| 90 | { |
| 91 | m_adjLsaSeq++; |
akmhoque | fdbddb1 | 2014-05-02 18:35:19 -0500 | [diff] [blame] | 92 | } |
| 93 | |
| 94 | void |
| 95 | increaseCorLsaSeq() |
| 96 | { |
| 97 | m_corLsaSeq++; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | void |
Vince Lehman | 0bcf9a3 | 2014-12-10 11:24:45 -0600 | [diff] [blame] | 101 | writeSeqNoToFile() const; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 102 | |
| 103 | void |
Nick Gordon | 5c467f0 | 2016-07-13 13:40:10 -0500 | [diff] [blame] | 104 | initiateSeqNoFromFile(int hypState); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 105 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame^] | 106 | /*! \brief Set the sequence file directory |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 107 | |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame^] | 108 | If the string is empty, home directory is set as sequence file directory |
| 109 | |
| 110 | \param filePath The directory where sequence file will be stored |
| 111 | */ |
| 112 | void |
| 113 | setSeqFileDirectory(std::string filePath); |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 114 | |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 115 | void |
Vince Lehman | 904c241 | 2014-09-23 19:36:11 -0500 | [diff] [blame] | 116 | writeLog() const; |
akmhoque | 2f42335 | 2014-06-03 11:49:35 -0500 | [diff] [blame] | 117 | |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 118 | private: |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 119 | uint64_t m_nameLsaSeq; |
| 120 | uint64_t m_adjLsaSeq; |
| 121 | uint64_t m_corLsaSeq; |
akmhoque | 5335346 | 2014-04-22 08:43:45 -0500 | [diff] [blame] | 122 | std::string m_seqFileNameWithPath; |
| 123 | }; |
| 124 | |
Nick Gordon | fad8e25 | 2016-08-11 14:21:38 -0500 | [diff] [blame] | 125 | } // namespace nlsr |
Ashlesh Gawande | 3e105a0 | 2017-05-16 17:36:56 -0500 | [diff] [blame^] | 126 | #endif // NLSR_SEQUENCING_MANAGER_HPP |