OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
mpls_index.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef vnsw_agent_mpls_index_resource_hpp
6 #define vnsw_agent_mpls_index_resource_hpp
7 
8 /*
9  * MPLS index allocator using index_vector
10  * All the key types below carve out mpls label from same index vector.
11  *
12  * Uses Resource::MPLS_INDEX
13  */
20 
21 class ResourceManager;
22 class ResourceKey;
23 class NextHopKey;
24 
26 public:
27  enum Type {
32  };
34  virtual ~MplsIndexResourceKey();
35  virtual void Backup(ResourceData *data, uint16_t op) {assert(0);}
36  Type type() const {return type_;}
37 private:
39 };
40 
41 //Nexthop mpls label
43 public:
45  virtual ~NexthopIndexResourceKey();
46 
47  virtual const std::string ToString() { return "";}
48  virtual bool IsLess(const ResourceKey &rhs) const;
49  virtual void Backup(ResourceData *data, uint16_t op);
50  void BackupInterfaceResource(ResourceData *data, uint16_t op);
51  void BackupVrfResource(ResourceData *data, uint16_t op);
52  void BackupVlanResource(ResourceData *data, uint16_t op);
53  const NextHopKey *GetNhKey() const { return nh_key_.get(); }
54 private:
55  std::unique_ptr<NextHopKey> nh_key_;
57 };
58 
59 //Route mpls label
61 public:
63  const std::string &vrf_name,
64  const std::string route_str);
65  virtual ~RouteMplsResourceKey();
66 
67  virtual const std::string ToString() { return "";}
68  virtual bool IsLess(const ResourceKey &rhs) const;
69  virtual void Backup(ResourceData *data, uint16_t op);
70 private:
71  const std::string vrf_name_;
72  const std::string route_key_;
74 };
75 
77 public:
79  const std::string &name);
80  virtual ~TestMplsResourceKey();
81 
82  virtual const std::string ToString() { return "";}
83  virtual bool IsLess(const ResourceKey &rhs) const;
84  virtual void Backup(ResourceData *data, uint16_t op) { }
85 
86  const std::string name_;
88 };
89 
90 #endif
DISALLOW_COPY_AND_ASSIGN(NexthopIndexResourceKey)
virtual ~NexthopIndexResourceKey()
Definition: mpls_index.cc:40
virtual bool IsLess(const ResourceKey &rhs) const
Definition: mpls_index.cc:179
virtual const std::string ToString()
Definition: mpls_index.h:67
void BackupVrfResource(ResourceData *data, uint16_t op)
Definition: mpls_index.cc:115
virtual const std::string ToString()
Definition: mpls_index.h:82
virtual void Backup(ResourceData *data, uint16_t op)
Definition: mpls_index.cc:58
MplsIndexResourceKey(ResourceManager *rm, Type type)
Definition: mpls_index.cc:25
Type type() const
Definition: mpls_index.h:36
virtual const std::string ToString()
Definition: mpls_index.h:47
std::unique_ptr< NextHopKey > nh_key_
Definition: mpls_index.h:55
boost::shared_ptr< TraceBuffer< SandeshTrace > > SandeshTraceBufferPtr
Definition: sandesh_trace.h:18
virtual ~MplsIndexResourceKey()
Definition: mpls_index.cc:30
const std::string name_
Definition: mpls_index.h:86
RouteMplsResourceKey(ResourceManager *rm, const std::string &vrf_name, const std::string route_str)
Definition: mpls_index.cc:169
virtual void Backup(ResourceData *data, uint16_t op)
Definition: mpls_index.h:84
NexthopIndexResourceKey(ResourceManager *rm, NextHopKey *nh_key)
Definition: mpls_index.cc:34
ResourceManager * rm()
void BackupVlanResource(ResourceData *data, uint16_t op)
Definition: mpls_index.cc:142
DISALLOW_COPY_AND_ASSIGN(TestMplsResourceKey)
const std::string vrf_name_
Definition: mpls_index.h:71
virtual bool IsLess(const ResourceKey &rhs) const
Definition: mpls_index.cc:43
virtual void Backup(ResourceData *data, uint16_t op)
Definition: mpls_index.h:35
virtual bool IsLess(const ResourceKey &rhs) const
Definition: mpls_index.cc:225
SandeshTraceBufferPtr InterfaceMplsDataTraceBuf
virtual ~RouteMplsResourceKey()
Definition: mpls_index.cc:176
virtual ~TestMplsResourceKey()
Definition: mpls_index.cc:222
virtual void Backup(ResourceData *data, uint16_t op)
Definition: mpls_index.cc:193
DISALLOW_COPY_AND_ASSIGN(RouteMplsResourceKey)
const NextHopKey * GetNhKey() const
Definition: mpls_index.h:53
const std::string route_key_
Definition: mpls_index.h:72
void BackupInterfaceResource(ResourceData *data, uint16_t op)
Definition: mpls_index.cc:76
SandeshTraceBufferPtr VlanMplsDataTraceBuf
SandeshTraceBufferPtr VrfMplsDataTraceBuf
TestMplsResourceKey(ResourceManager *rm, const std::string &name)
Definition: mpls_index.cc:217
SandeshTraceBufferPtr RouteMplsDataTraceBuf