OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
prouter_uve_table.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef _ROOT_PROUTER_UVE_TABLE_H_
6 #define _ROOT_PROUTER_UVE_TABLE_H_
7 
8 #include <boost/scoped_ptr.hpp>
9 #include <boost/shared_ptr.hpp>
10 #include <boost/uuid/uuid_io.hpp>
11 #include <prouter_types.h>
12 #include <oper/interface_common.h>
13 #include <oper/physical_device.h>
14 #include <cmn/index_vector.h>
15 #include <string>
16 #include <vector>
17 #include <set>
18 #include <map>
19 
21 #define PROUTER_UVE_TRACE(...)\
22 do {\
23  ProuterUveTrace::TraceMsg(ProuterUveTraceBuf, __FILE__, __LINE__, __VA_ARGS__);\
24 } while (false)
25 
26 // The container class for objects representing Prouter UVEs
27 // Defines routines for storing and managing (add, delete, change and send)
28 // Prouter UVEs
30  public:
31  typedef std::set<std::string> InterfaceSet;
33  const std::string name_;
34  uint16_t vlan_;
36  bool changed_;
37  bool deleted_;
38  bool renewed_;
39 
40  explicit LogicalInterfaceUveEntry(const LogicalInterface *li);
41  void Update(const LogicalInterface *li);
42  void FillVmInterfaceList(std::vector<std::string> &vmi_list) const;
43  };
44  typedef boost::shared_ptr<LogicalInterfaceUveEntry>
46  typedef std::map<boost::uuids::uuid, LogicalInterfaceUveEntryPtr>
48  typedef std::pair<boost::uuids::uuid, LogicalInterfaceUveEntryPtr>
50 
51  struct PhysicalDeviceState : public DBState {
52  };
53 
54  struct ProuterInterfaceState : public DBState {
56  std::string physical_interface_;
57  ProuterInterfaceState() : physical_device_(boost::uuids::nil_uuid()),
59  }
60  };
61 
62  struct VmInterfaceState : public DBState {
64  VmInterfaceState() : logical_interface_(boost::uuids::nil_uuid()) {
65  }
66  };
67 
68  typedef std::set<boost::uuids::uuid> LogicalInterfaceSet;
69  struct ProuterUveEntry {
70  explicit ProuterUveEntry(const PhysicalDevice *p);
72  void AddPhysicalInterface(const Interface *itf);
73  void DeletePhysicalInterface(const Interface *itf);
74  void AddLogicalInterface(const LogicalInterface *itf);
76  void Reset();
77 
78  std::string name_;
82  bool changed_;
83  bool deleted_;
84  bool renewed_;
86  };
87  typedef boost::shared_ptr<ProuterUveEntry> ProuterUveEntryPtr;
88  typedef std::map<boost::uuids::uuid, ProuterUveEntryPtr> UveProuterMap;
89  typedef std::pair<boost::uuids::uuid, ProuterUveEntryPtr> UveProuterPair;
90 
92  explicit PhyInterfaceUveEntry(const Interface *pintf);
93  void Update(const Interface *pintf);
94  void FillLogicalInterfaceList(std::vector<std::string> &list) const;
95 
98  bool changed_;
99  bool deleted_;
100  bool renewed_;
101  };
102  typedef boost::shared_ptr<PhyInterfaceUveEntry> PhyInterfaceUveEntryPtr;
103  typedef std::map<std::string, PhyInterfaceUveEntryPtr>
105  typedef std::pair<std::string, PhyInterfaceUveEntryPtr>
107 
108  static const uint16_t kInvalidVlanId = 0xFFFF;
109  explicit ProuterUveTable(Agent *agent, uint32_t default_intvl);
110  virtual ~ProuterUveTable();
111  void RegisterDBClients();
112  void Shutdown(void);
113  virtual void DispatchProuterMsg(const ProuterData &uve);
114  virtual void DispatchLogicalInterfaceMsg(const UveLogicalInterfaceAgent &u);
115  virtual void DispatchPhysicalInterfaceMsg
116  (const UvePhysicalInterfaceAgent &uve);
117  bool TimerExpiry();
118  bool PITimerExpiry();
119  bool LITimerExpiry();
120  void UpdateMastership(const boost::uuids::uuid &u, bool value);
121 
122  protected:
126 
127  private:
130  PhyInterfaceUveEntry *NameToPhyInterfaceUveEntry(const std::string &name)
131  const;
132  const Interface *NameToInterface(const std::string &name) const;
133  void FrameProuterMsg(ProuterUveEntry *entry, ProuterData *uve) const;
135  bool SendProuterMsg(ProuterUveEntry *entry);
137  void PhysicalDeviceNotify(DBTablePartBase *partition, DBEntryBase *e);
138  void PhysicalInterfaceHandler(const Interface *i, const boost::uuids::uuid &u);
139  void MarkDeletedPhysical(const Interface *pintf);
140  void DeletePhysicalFromProuter(const Interface *i,
141  const boost::uuids::uuid &u);
142  void InterfaceNotify(DBTablePartBase *partition, DBEntryBase *e);
144  void DeleteHandler(const PhysicalDevice *p);
145  void AddLogicalToPhysical(const Interface *p, const LogicalInterface *i);
147  void MarkDeletedLogical(const LogicalInterface *pintf);
148  void DeleteLogicalFromPhysical(const std::string &name,
149  const LogicalInterface *i);
151  const LogicalInterface *intf);
153  const LogicalInterface *intf);
154  const PhysicalDevice *InterfaceToProuter(const Interface *intf);
156  void set_expiry_time(int time, Timer *timer);
157  void TimerCleanup(Timer *timer);
158  void VmInterfaceHandler(DBTablePartBase *partition, DBEntryBase *e);
159  void VMInterfaceAdd(const VmInterface *vmi);
160  void VMInterfaceRemove(const boost::uuids::uuid &li,
161  const VmInterface *vmi);
162  void MarkPhysicalDeviceChanged(const PhysicalDevice *pde);
163  void MarkChanged(const boost::uuids::uuid &li);
164  void AddUpdatePhysicalInterface(const Interface *intf);
165  void SendPhysicalInterfaceDeleteMsg(const std::string &cfg_name);
166  void SendPhysicalInterfaceMsg(const std::string &name,
167  PhyInterfaceUveEntry *entry);
168  void SendLogicalInterfaceDeleteMsg(const std::string &config_name);
170  LogicalInterfaceUveEntry *entry);
171 
175  // Last visited Prouter by timer
178 
181 
185 };
186 
187 #endif // _ROOT_PROUTER_UVE_TABLE_H_
void VMInterfaceRemove(const boost::uuids::uuid &li, const VmInterface *vmi)
virtual void DispatchProuterMsg(const ProuterData &uve)
virtual void DispatchPhysicalInterfaceMsg(const UvePhysicalInterfaceAgent &uve)
void MarkPhysicalDeviceChanged(const PhysicalDevice *pde)
std::set< std::string > InterfaceSet
void SendPhysicalInterfaceDeleteMsg(const std::string &cfg_name)
LogicalInterfaceSet logical_interface_set_
boost::shared_ptr< ProuterUveEntry > ProuterUveEntryPtr
const PhysicalDevice * InterfaceToProuter(const Interface *intf)
void AddLogicalInterface(const LogicalInterface *itf)
void SendLogicalInterfaceDeleteMsg(const std::string &config_name)
boost::uuids::uuid pr_timer_last_visited_
void DeleteHandler(const PhysicalDevice *p)
std::pair< std::string, PhyInterfaceUveEntryPtr > UvePhyInterfacePair
void Update(const Interface *pintf)
void SendLogicalInterfaceMsg(const boost::uuids::uuid &u, LogicalInterfaceUveEntry *entry)
int ListenerId
Definition: db_table.h:62
std::map< boost::uuids::uuid, ProuterUveEntryPtr > UveProuterMap
boost::uuids::uuid uuid
std::set< boost::uuids::uuid > LogicalInterfaceSet
static const uint16_t kInvalidVlanId
ProuterUveTable(Agent *agent, uint32_t default_intvl)
boost::shared_ptr< TraceBuffer< SandeshTrace > > SandeshTraceBufferPtr
Definition: sandesh_trace.h:18
SandeshTraceBufferPtr ProuterUveTraceBuf
void MarkDeletedLogical(const LogicalInterface *pintf)
void InterfaceNotify(DBTablePartBase *partition, DBEntryBase *e)
boost::shared_ptr< LogicalInterfaceUveEntry > LogicalInterfaceUveEntryPtr
void TimerCleanup(Timer *timer)
void UpdateMastership(const boost::uuids::uuid &u, bool value)
std::pair< boost::uuids::uuid, ProuterUveEntryPtr > UveProuterPair
UveProuterMap uve_prouter_map_
ProuterUveEntry * PDEntryToProuterUveEntry(const boost::uuids::uuid &u) const
void AddUpdatePhysicalInterface(const Interface *intf)
ProuterUveEntry * AddHandler(const PhysicalDevice *p)
UvePhyInterfaceMap uve_phy_interface_map_
void FillVmInterfaceList(std::vector< std::string > &vmi_list) const
void DeletePhysicalInterface(const Interface *itf)
DBTableBase::ListenerId interface_listener_id_
void DeletePhysicalFromProuter(const Interface *i, const boost::uuids::uuid &u)
const Interface * NameToInterface(const std::string &name) const
Definition: agent.h:358
void MarkDeletedPhysical(const Interface *pintf)
void Update(const LogicalInterface *li)
void AddPhysicalInterface(const Interface *itf)
std::map< boost::uuids::uuid, LogicalInterfaceUveEntryPtr > LogicalInterfaceMap
void FillLogicalInterfaceList(std::vector< std::string > &list) const
boost::uuids::uuid li_timer_last_visited_
std::map< std::string, PhyInterfaceUveEntryPtr > UvePhyInterfaceMap
void AddUpdateLogicalInterface(const LogicalInterface *i)
DISALLOW_COPY_AND_ASSIGN(ProuterUveTable)
void PhysicalDeviceNotify(DBTablePartBase *partition, DBEntryBase *e)
DBTableBase::ListenerId physical_device_listener_id_
void SendPhysicalInterfaceMsg(const std::string &name, PhyInterfaceUveEntry *entry)
void DeleteLogicalFromPhysical(const std::string &name, const LogicalInterface *i)
std::pair< boost::uuids::uuid, LogicalInterfaceUveEntryPtr > LogicalInterfacePair
bool DeleteLogicalInterface(const LogicalInterface *itf)
void set_expiry_time(int time, Timer *timer)
void SendProuterVrouterAssociation()
void PhysicalInterfaceHandler(const Interface *i, const boost::uuids::uuid &u)
boost::shared_ptr< PhyInterfaceUveEntry > PhyInterfaceUveEntryPtr
void SendProuterDeleteMsg(ProuterUveEntry *e)
void VmInterfaceHandler(DBTablePartBase *partition, DBEntryBase *e)
void FrameProuterMsg(ProuterUveEntry *entry, ProuterData *uve) const
PhyInterfaceUveEntry * NameToPhyInterfaceUveEntry(const std::string &name) const
bool SendProuterMsg(ProuterUveEntry *entry)
LogicalInterfaceMap uve_logical_interface_map_
void VMInterfaceAdd(const VmInterface *vmi)
virtual void DispatchLogicalInterfaceMsg(const UveLogicalInterfaceAgent &u)
Definition: timer.h:54
std::string pi_timer_last_visited_
void MarkChanged(const boost::uuids::uuid &li)
void SendProuterMsgFromPhyInterface(const Interface *pi)
void DeleteProuterLogicalInterface(const boost::uuids::uuid &u, const LogicalInterface *intf)
ProuterUveEntry(const PhysicalDevice *p)
PhyInterfaceUveEntry(const Interface *pintf)
ProuterUveEntryPtr Allocate(const PhysicalDevice *pr)
void AddLogicalToPhysical(const Interface *p, const LogicalInterface *i)
LogicalInterfaceUveEntry(const LogicalInterface *li)
void AddProuterLogicalInterface(const PhysicalDevice *p, const LogicalInterface *intf)
virtual ~ProuterUveTable()