Download this file

SimpleLS.cc    276 lines (222 with data), 7.8 kB

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
#include <SimpleLS/SimpleLS.h>
namespace SimpleLS {
Register_Class(SimpleLS);
using namespace std;
RoutingUpdate::RoutingUpdate(const Address &_addr, const unsigned short &_qos):IntRoutingUpdate(_addr){
qos = _qos;
}
unsigned short RoutingUpdate::getQoS(){
return qos;
}
void RoutingUpdate::addEntry(const std::string & id, linksU links){
entries.insert(linksStEntry(id, links));
}
void RoutingUpdate::setEntries(linksSt _entries){
RoutingUpdate::entries = _entries;
}
linksStIt RoutingUpdate::entriesBegin(){
return entries.begin();
}
linksStIt RoutingUpdate::entriesEnd(){
return entries.end();
}
//Flow inserted/removed
void SimpleLS::insertFlow(const Address &addr, const std::string &dst, const unsigned short &qos, const unsigned short &metric){
neig[qos][addr] = metric;
lastChanges[qos].insert(myAddr);
secId++;
linksU * myEntry = &(netState[qos][myAddr]);
myEntry->sId = secId;
myEntry->links[dst] = metric;
scheduleUpdate();
}
void SimpleLS::removeFlow(const Address &addr, const std::string &dst, const unsigned short &qos){
neig[qos].erase(addr);
if(neig[qos].size() <= 0){
neig.erase(qos);
}
lastChanges[qos].insert(myAddr);
secId++;
linksU * myEntry = &(netState[qos][myAddr]);
myEntry->sId = secId;
myEntry->links.erase(dst);
scheduleUpdate();
}
void SimpleLS::scheduleUpdate(){
Enter_Method_Silent();
if(!scheduledUpdate){
scheduledUpdate = true;
scheduleAt(simTime()+1, new cMessage("Time2Update"));
}
}
//Get Changes
entries2Next SimpleLS::getChanges(){
entries2Next ret;
for(linksStColIt qosIt = netState.begin(); qosIt != netState.end(); qosIt++){
unsigned short qos = qosIt->first;
TreeNode t = constructTree(qosIt->second);
for(TreeNodeIt it = t.chl.begin(); it != t.chl.end(); it++){
ret[qosPaddr(qos, (*it)->addr)] = (*it)->addr;
addRecursive(ret, qos, (*it)->addr, *it);
}
}
entries2Next t = ret;
for(entries2NextIt tIt = table.begin(); tIt != table.end(); tIt++){
if (ret[tIt->first] == tIt->second){
ret.erase(tIt->first);
}
}
table = t;
return ret;
}
entries2Next SimpleLS::getAll(){
entries2Next ret;
for(linksStColIt qosIt = netState.begin(); qosIt != netState.end(); qosIt++){
unsigned short qos = qosIt->first;
TreeNode t = constructTree(qosIt->second);
for(TreeNodeIt it = t.chl.begin(); it != t.chl.end(); it++){
ret[qosPaddr(qos, (*it)->addr)] = (*it)->addr;
addRecursive(ret, qos, (*it)->addr, *it);
}
}
table = ret;
return table;
}
TreeNode SimpleLS::constructTree(linksSt &ls){
TreeNode t(myAddr, 0);
aMap added;
added[myAddr] = 0;
wMap waiting;
aMap * links = &(ls[myAddr].links);
for(linksIt it = links->begin(); it !=links->end(); it++){
waiting[it->first] = psT(&t, it->second);
}
while(!waiting.empty()){
unsigned short min = UINT16_MAX;
addrList mins;
for (wMapIt it = waiting.begin(); it != waiting.end(); it++){
if(it->second.metric < min){
min = it->second.metric;
mins.clear();
}
if(it->second.metric == min){
mins.push_back(it->first);
}
}
while(!mins.empty()){
string addr = mins.back();
mins.pop_back();
psT ps = waiting[addr];
waiting.erase(addr);
TreeNode * nt = new TreeNode(addr, ps.metric);
ps.p->chl.insert(nt);
added[addr] = ps.metric;
links = &(ls[addr].links);
for(linksIt it = links->begin(); it !=links->end(); it++){
string daddr = it->first;
if(added.find(daddr) == added.end()){
wMapIt eI = waiting.find(daddr);
if(eI == waiting.end()){
waiting[daddr] = psT(nt, ps.metric + it->second);
} else if(eI->second.metric > ps.metric + it->second){
eI->second.metric = ps.metric + it->second;
eI->second.p = nt;
}
}
}
}
}
return t;
}
void SimpleLS::addRecursive(entries2Next &ret, const unsigned short &qos, const std::string &next, TreeNode * t){
for(TreeNodeIt it = t->chl.begin(); it != t->chl.end(); it++){
ret[qosPaddr(qos, (*it)->addr)] = next;
addRecursive(ret, qos, next, *it);
}
}
//Process a Routing Update, return true => inform FWDG of the update
bool SimpleLS::processUpdate(IntRoutingUpdate * update){
RoutingUpdate * up = check_and_cast<RoutingUpdate*>(update);
unsigned short qos = up->getQoS();
linksSt * st = &(netState[qos]);
for(linksStIt it = up->entriesBegin(); it != up->entriesEnd(); it++){
string node = it->first;
if((*st)[node].sId < it->second.sId){
(*st)[node] = it->second;
lastChanges[qos].insert(node);
}
}
if(!lastChanges.empty()){
scheduleUpdate();
return true;
}
return false;
}
// Called after initialize
void SimpleLS::onPolicyInit(){
myAddr = par("myAddr").stdstringValue();
if(myAddr == "") {
myAddr = myAddress.getIpcAddress().getName();
}
infMetric = 32;
secId = 1;
}
void SimpleLS::handleMessage(cMessage *msg){
if(msg->isSelfMessage()){
//Iterate all Qos
for(qosNeighMetricIt it = neig.begin(); it!= neig.end(); it++){
//get Changes per QoS;
linksSt _entries = getChangedEntries (it->first);
//iterate all Qos->Neighbour
for(neighMetricIt it2 = it->second.begin(); it2 != it->second.end(); it2++){
//New Update to QoS + Neighbour
RoutingUpdate * update = new RoutingUpdate(it2->first, it->first);
//Add entries
update->setEntries(_entries);
//And send
sendUpdate(update);
}
}
lastChanges.clear();
scheduledUpdate = false;
}
delete msg;
}
linksSt SimpleLS::getChangedEntries (const unsigned short &qos){
linksSt ret;
addrSet * set = &lastChanges[qos];
for(addrSetIt it = set->begin(); it != set->end(); it++){
ret.insert(linksStEntry(*it, netState[qos][*it]));
}
return ret;
}
void SimpleLS::finish(){
IntRouting::finish();
EV << "I'm "<< myAddr<<endl;
for(linksStColIt qosIt = netState.begin(); qosIt != netState.end(); qosIt++){
EV << " QoS " << qosIt->first<<endl;
TreeNode t = constructTree(qosIt->second);
for(TreeNodeIt it = t.chl.begin(); it != t.chl.end(); it++){
printTreeNode(*it, (*it)->addr);
}
}
/*
EV << "LS "<<endl;
for(linksStColIt qosIt = netState.begin(); qosIt != netState.end(); qosIt++){
EV << " QoS " << qosIt->first<<endl;
for(linksStIt lsIt = qosIt->second.begin(); lsIt != qosIt->second.end(); lsIt++){
EV<<" " << lsIt->first << "("<<lsIt->second.sId << ")"<< ":"<<endl;
for(linksIt lIt = lsIt->second.links.begin(); lIt != lsIt->second.links.end(); lIt++){
EV<<" " << lIt->first << "("<<lIt->second << ")"<<endl;
}
}
}
*/
}
void SimpleLS::printTreeNode(TreeNode *t, const std::string &next){
EV<<" " << t->addr << " -> "<<next << " ("<<t->metric<<") " << " c: "<< t->chl.size() << endl;
for(TreeNodeIt it = t->chl.begin(); it != t->chl.end(); it++){
printTreeNode(*it, next);
}
}
}