blob: 225229fee9ea1d42955b97ef74eeec9b3955a257 [file] [log] [blame]
akmhoquefd1dd0a2014-02-01 01:11:35 -06001#ifndef NLSR_LSA_HPP
2#define NLSR_LSA_HPP
3
4#include "nlsr_adjacent.hpp"
5#include "nlsr_npl.hpp"
6#include "nlsr_adl.hpp"
7
8using namespace std;
9
10class Lsa{
11public:
12 Lsa()
13 : origRouter()
14 , lsSeqNo()
15 , lifeTime()
16 {
17 }
18
19
20 void setLsType(uint8_t lst)
21 {
22 lsType=lst;
23 }
24
25 uint8_t getLsType()
26 {
27 return lsType;
28 }
29
30 void setLsSeqNo(uint32_t lsn)
31 {
32 lsSeqNo=lsn;
33 }
34
35 uint32_t getLsSeqNo()
36 {
37 return lsSeqNo;
38 }
39
40 string& getOrigRouter()
41 {
42 return origRouter;
43 }
44
45 void setOrigRouter(string& org)
46 {
47 origRouter=org;
48 }
49
50 uint32_t getLifeTime()
51 {
52 return lifeTime;
53 }
54
55 void setLifeTime(uint32_t lt)
56 {
57 lifeTime=lt;
58 }
59 string getLsaKey();
60protected:
61 string origRouter;
62 uint8_t lsType;
63 uint32_t lsSeqNo;
64 uint32_t lifeTime;
65};
66
akmhoquebd7c8e62014-02-01 14:57:40 -060067class NameLsa:public Lsa{
akmhoquefd1dd0a2014-02-01 01:11:35 -060068public:
69 NameLsa()
70 : Lsa()
71 , npl()
72 {
73 setLsType(1);
74 }
75
akmhoquecd552472014-02-01 21:22:16 -060076 NameLsa(string origR, uint8_t lst, uint32_t lsn, uint32_t lt, Npl npl);
akmhoquefd1dd0a2014-02-01 01:11:35 -060077
78 Npl& getNpl(){
79 return npl;
80 }
81
82 void addNameToLsa(string& name)
83 {
84 npl.insertIntoNpl(name);
85 }
86
87 string getNameLsaData();
88
89private:
90 Npl npl;
91
92};
93
akmhoquebd7c8e62014-02-01 14:57:40 -060094std::ostream&
95operator<<(std::ostream& os, NameLsa& nLsa);
96
97class AdjLsa: public Lsa{
akmhoquefd1dd0a2014-02-01 01:11:35 -060098public:
99 AdjLsa()
100 : Lsa()
101 , adl()
102 {
akmhoquecd552472014-02-01 21:22:16 -0600103 setLsType(2);
104 }
105
106 AdjLsa(string origR, uint8_t lst, uint32_t lsn, uint32_t lt,
107 uint32_t nl ,Adl padl);
108 Adl& getAdl(){
109 return adl;
110 }
111
112 void addAdjacentToLsa(Adjacent adj)
113 {
114 adl.insert(adj);
115 }
116
117 string getAdjLsaData();
118 uint32_t getNoLink()
119 {
120 return noLink;
akmhoquefd1dd0a2014-02-01 01:11:35 -0600121 }
122
123private:
124 uint32_t noLink;
125 Adl adl;
126};
127
akmhoquecd552472014-02-01 21:22:16 -0600128std::ostream&
129operator<<(std::ostream& os, AdjLsa& aLsa);
130
akmhoquebd7c8e62014-02-01 14:57:40 -0600131class CorLsa:public Lsa{
akmhoquefd1dd0a2014-02-01 01:11:35 -0600132public:
133 CorLsa()
134 :Lsa()
135 {
akmhoquecd552472014-02-01 21:22:16 -0600136 setLsType(3);
akmhoquefd1dd0a2014-02-01 01:11:35 -0600137 }
akmhoque3c6bd922014-02-01 17:10:17 -0600138
139 CorLsa(string origR, uint8_t lst, uint32_t lsn, uint32_t lt
140 , double r, double theta);
141 string getCorLsaData();
142
143 double getCorRadius()
144 {
145 return corRad;
146 }
147
148 void setCorRadius(double cr)
149 {
150 corRad=cr;
151 }
152
153 double getCorTheta()
154 {
155 return corTheta;
156 }
157
158 void setCorTheta(double ct){
159 corTheta=ct;
160 }
akmhoquefd1dd0a2014-02-01 01:11:35 -0600161private:
162 double corRad;
163 double corTheta;
164
165};
166
akmhoque3c6bd922014-02-01 17:10:17 -0600167std::ostream&
168operator<<(std::ostream& os, CorLsa& cLsa);
169
akmhoquefd1dd0a2014-02-01 01:11:35 -0600170
171
172
173#endif