OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ifmap_agent_table.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef ctrlplane_ifmap_agent_table_h
6 #define ctrlplane_ifmap_agent_table_h
7 
8 #include "db/db_graph_base.h"
9 #include "ifmap/ifmap_table.h"
10 #include "ifmap/ifmap_link_table.h"
11 #include "ifmap/ifmap_object.h"
12 #include "boost/asio/io_service.hpp"
13 #include "base/timer.h"
14 #include "base/task.h"
15 #include "sandesh/sandesh_trace.h"
16 
17 #define IFMAP_AGENT_LINK_DB_NAME "__ifmap_agentlinkdata__.0"
19 
20 #define IFMAP_AGENT_TRACE(obj, ...) do { \
21  if (LoggingDisabled()) break; \
22  IFMapAgent##obj::TraceMsg(IFMapAgentTraceBuf, __FILE__, __LINE__, ##__VA_ARGS__); \
23 } while (false)
24 
25 
26 class DBGraph;
27 class IFMapNode;
28 
29 
30 class IFMapAgentTable : public IFMapTable {
31 public:
32 
34  std::unique_ptr<IFMapObject>content;
35  };
36  typedef boost::function<bool(DBTable *table, IFMapNode *node, DBRequest *req)> PreFilterFn;
37 
38  IFMapAgentTable(DB *db, const std::string &name, DBGraph *graph);
39 
40  virtual void Input(DBTablePartition *partition, DBClient *client,
41  DBRequest *req);
42  virtual void Clear();
43 
44  // Allocate an IFMapNode.
45  virtual std::unique_ptr<DBEntry> AllocEntry(const DBRequestKey *key) const;
46 
47  static IFMapNode *TableEntryLookup(DB *db, RequestKey *key);
48  void NotifyNode(IFMapNode *node);
49  const DBGraph *GetGraph() const {return graph();};
50  DBGraph *GetGraph() {return graph();};
51  void DeleteNode(IFMapNode *node);
53 
54 private:
55  IFMapNode *EntryLocate(IFMapNode *node, RequestKey *key);
56  IFMapNode *EntryLookup(RequestKey *key);
57  IFMapAgentTable* TableFind(const std::string &node_name);
60 };
61 
63 public:
67  std::string metadata;
68  };
69 
70  struct DeferredNode {
72  std::string link_metadata;
73  };
74 
75  class comp {
76  public:
78  const IFMapTable::RequestKey &right) const {
79  if (left.id_type != right.id_type)
80  return left.id_type < right.id_type;
81 
82  return left.id_name < right.id_name;
83  }
84  };
85 
86  IFMapAgentLinkTable(DB *db, const std::string &name, DBGraph *graph);
87  typedef std::map<IFMapTable::RequestKey, std::list<DeferredNode> *, comp> LinkDefMap;
88  virtual void Input(DBTablePartition *partition, DBClient *client,
89  DBRequest *req);
91  static DBTable *CreateTable(DB *db, const std::string &name,
92  DBGraph *graph);
94  bool RemoveDefListEntry(LinkDefMap *map, LinkDefMap::iterator &map_it,
95  std::list<DeferredNode>::iterator *list_it);
96  void DestroyDefLink(uint64_t);
97  const LinkDefMap &GetLinkDefMap() const {
98  return link_def_map_;
99  }
100  void DelLink(IFMapNode *first, IFMapNode *second, DBGraphEdge *edge);
101  void LinkDefAdd(DBRequest *request);
102 private:
103  void AddLink(IFMapNode *left, IFMapNode *right,
104  const std::string &metadata, uint64_t seq);
105 
106  IFMapLink *FindLink(IFMapNode *left, IFMapNode *right, const std::string &metadata);
107 
109 };
110 
111 
113 public:
114  IFMapAgentStaleCleaner(DB *db, DBGraph *graph);
117  void Clear();
118  bool StaleTimeout(uint64_t);
119 
120 private:
121  DB *db_;
123  uint64_t seq_;
124 };
125 
126 extern void IFMapAgentLinkTable_Init(DB *db, DBGraph *graph);
127 #endif
void EvalDefLink(IFMapTable::RequestKey *key)
const DBGraph * graph() const
virtual void Input(DBTablePartition *partition, DBClient *client, DBRequest *req)
void IFMapAgentLinkTable_Init(DB *db, DBGraph *graph)
PreFilterFn pre_filter_
IFMapNode * EntryLocate(IFMapNode *node, RequestKey *key)
IFMapNode * EntryLookup(RequestKey *key)
std::map< IFMapTable::RequestKey, std::list< DeferredNode > *, comp > LinkDefMap
IFMapAgentLinkTable(DB *db, const std::string &name, DBGraph *graph)
DBGraph * GetGraph()
static DBTable * CreateTable(DB *db, const std::string &name, DBGraph *graph)
const LinkDefMap & GetLinkDefMap() const
void IFMapAgentLinkTable_Init(DB *db, DBGraph *graph)
boost::shared_ptr< TraceBuffer< SandeshTrace > > SandeshTraceBufferPtr
Definition: sandesh_trace.h:18
virtual std::unique_ptr< DBEntry > AllocEntry(const DBRequestKey *key) const
const DBGraph * GetGraph() const
Definition: db.h:24
IFMapTable::RequestKey right_key
void DestroyDefLink(uint64_t)
void DelLink(IFMapNode *first, IFMapNode *second, DBGraphEdge *edge)
IFMapLink * FindLink(IFMapNode *left, IFMapNode *right, const std::string &metadata)
void DeleteNode(IFMapNode *node)
void HandlePendingLinks(IFMapNode *)
boost::function< bool(DBTable *table, IFMapNode *node, DBRequest *req)> PreFilterFn
bool operator()(const IFMapTable::RequestKey &left, const IFMapTable::RequestKey &right) const
const std::string & name() const
Definition: db_table.h:110
void NotifyNode(IFMapNode *node)
IFMapAgentTable(DB *db, const std::string &name, DBGraph *graph)
IFMapAgentStaleCleaner(DB *db, DBGraph *graph)
std::unique_ptr< IFMapObject > content
IFMapTable::RequestKey left_key
static IFMapNode * TableEntryLookup(DB *db, RequestKey *key)
void AddLink(IFMapNode *left, IFMapNode *right, const std::string &metadata, uint64_t seq)
IFMapAgentTable * TableFind(const std::string &node_name)
virtual void Clear()
void RegisterPreFilter(PreFilterFn fn)
void LinkDefAdd(DBRequest *request)
bool RemoveDefListEntry(LinkDefMap *map, LinkDefMap::iterator &map_it, std::list< DeferredNode >::iterator *list_it)
SandeshTraceBufferPtr IFMapAgentTraceBuf
virtual void Input(DBTablePartition *partition, DBClient *client, DBRequest *req)