RINASim  October 2016
Documentation of framework for OMNeT++
IntSimpleRouting.h
Go to the documentation of this file.
1 // The MIT License (MIT)
2 //
3 // Copyright (c) 2014-2016 Brno University of Technology, PRISTINE project
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 // THE SOFTWARE.
22 
23 #ifndef IntSimpleRouting_H_
24 #define IntSimpleRouting_H_
25 
26 #include <IntRouting.h>
27 #include <string>
28 
29 
30 struct entType{
31  unsigned short metric;
32  std::set<std::string> nh;
33 };
34 typedef std::pair<std::string, std::string> qosPaddr;
35 typedef std::map<qosPaddr, entType> entries2Next;
36 typedef std::pair<qosPaddr, std::string> entries2NextItem;
37 typedef entries2Next::iterator entries2NextIt;
38 
40 public:
41  //Process a Routing Update, return true => inform FWDG of the update
42  virtual bool processUpdate(IntRoutingUpdate * update) = 0;
43 
44 
45  //Flow inserted/removed
46  virtual void insertFlow(const Address &addr, const std::string &dst, const std::string& qos, const unsigned short &metric) = 0;
47  virtual void removeFlow(const Address &addr, const std::string &dst, const std::string& qos) = 0;
48 
49  //Get Changes
50  virtual entries2Next getChanges() = 0;
51  virtual entries2Next getAll() = 0;
52 
53 protected:
54  // Called after initialize
55  virtual void onPolicyInit() = 0;
56 };
57 
58 #endif /* IntSimpleRouting_H_ */
virtual entries2Next getChanges()=0
virtual void removeFlow(const Address &addr, const std::string &dst, const std::string &qos)=0
std::pair< std::string, std::string > qosPaddr
std::set< std::string > nh
std::pair< qosPaddr, std::string > entries2NextItem
entries2Next::iterator entries2NextIt
std::map< qosPaddr, std::string > entries2Next
std::map< qosPaddr, entType > entries2Next
virtual bool processUpdate(IntRoutingUpdate *update)=0
virtual void onPolicyInit()=0
unsigned short metric
virtual entries2Next getAll()=0
virtual void insertFlow(const Address &addr, const std::string &dst, const std::string &qos, const unsigned short &metric)=0
Address class holds IPC Process identification.
Definition: Address.h:42