blob: 09aec8cf2e97b7ee275a7b51e5be35d583158c72 [file] [log] [blame]
Jiewen Tana0497d82015-02-02 21:59:18 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * Copyright (c) 2014-2015, The University of Memphis,
4 * Regents of the University of California,
5 * Arizona Board of Regents.
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/>.
20 **/
21
22#ifndef NLSR_PUBLISHER_LSA_PUBLISHER_HPP
23#define NLSR_PUBLISHER_LSA_PUBLISHER_HPP
24
25#include "lsdb.hpp"
26#include "segment-publisher.hpp"
27#include "tlv/adjacency-lsa.hpp"
28#include "tlv/coordinate-lsa.hpp"
29#include "tlv/name-lsa.hpp"
30
31#include <ndn-cxx/face.hpp>
32
33namespace nlsr {
34
35template <class TlvType>
36class LsaPublisher : public SegmentPublisher<ndn::Face>
37{
38public:
39 LsaPublisher(ndn::Face& face,
40 const ndn::Name& prefix,
41 ndn::KeyChain& keyChain,
42 const ndn::Name::Component& datasetComponent)
43 : SegmentPublisher<ndn::Face>(face, ndn::Name(prefix).append(datasetComponent), keyChain)
44 {
45 }
46
47 virtual
48 ~LsaPublisher()
49 {
50 }
51
52protected:
53 virtual size_t
54 generate(ndn::EncodingBuffer& outBuffer)
55 {
56 size_t totalLength = 0;
57
58 for (const TlvType& lsaTlv : getTlvLsas()) {
59 totalLength += lsaTlv.wireEncode(outBuffer);
60 }
61
62 return totalLength;
63 }
64
65 virtual std::list<TlvType>
66 getTlvLsas() = 0;
67};
68
69/**
70 * @brief Abstraction to publish adjacency lsa dataset
71 * \sa http://redmine.named-data.net/projects/nlsr/wiki/LSDB_DataSet
72 */
73class AdjacencyLsaPublisher : public LsaPublisher<tlv::AdjacencyLsa>
74{
75public:
76 AdjacencyLsaPublisher(Lsdb& lsdb,
77 ndn::Face& face,
78 const ndn::Name& prefix,
79 ndn::KeyChain& keyChain);
80
81 std::list<tlv::AdjacencyLsa>
82 getTlvLsas();
83
84public:
85 static const ndn::Name::Component DATASET_COMPONENT;
86
87private:
88 const std::list<AdjLsa>& m_adjacencyLsas;
89};
90
91/**
92 * @brief Abstraction to publish coordinate lsa dataset
93 * \sa http://redmine.named-data.net/projects/nlsr/wiki/LSDB_DataSet
94 */
95class CoordinateLsaPublisher : public LsaPublisher<tlv::CoordinateLsa>
96{
97public:
98 CoordinateLsaPublisher(Lsdb& lsdb,
99 ndn::Face& face,
100 const ndn::Name& prefix,
101 ndn::KeyChain& keyChain);
102
103 std::list<tlv::CoordinateLsa>
104 getTlvLsas();
105
106public:
107 static const ndn::Name::Component DATASET_COMPONENT;
108
109private:
110 const std::list<CoordinateLsa>& m_coordinateLsas;
111};
112
113/**
114 * @brief Abstraction to publish name lsa dataset
115 * \sa http://redmine.named-data.net/projects/nlsr/wiki/LSDB_DataSet
116 */
117class NameLsaPublisher : public LsaPublisher<tlv::NameLsa>
118{
119public:
120 NameLsaPublisher(Lsdb& lsdb,
121 ndn::Face& face,
122 const ndn::Name& prefix,
123 ndn::KeyChain& keyChain);
124
125 std::list<tlv::NameLsa>
126 getTlvLsas();
127
128public:
129 static const ndn::Name::Component DATASET_COMPONENT;
130
131private:
132 const std::list<NameLsa>& m_nameLsas;
133};
134
135} // namespace nlsr
136
137#endif // NLSR_PUBLISHER_LSA_PUBLISHER_HPP