OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ifmap_server.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_server__
6 #define __ctrlplane__ifmap_server__
7 
8 #include <map>
9 #include <deque>
10 #include <vector>
11 
12 #include <boost/asio/io_service.hpp>
13 #include <boost/scoped_ptr.hpp>
14 
15 #include "base/bitset.h"
16 #include "base/timer.h"
17 #include "base/address.h"
18 #include "base/queue_task.h"
20 
21 class BgpRouterState;
22 class DB;
23 class DBGraph;
24 class DBGraphEdge;
25 class DBGraphVertex;
27 class IFMapClient;
28 class IFMapExporter;
29 class IFMapNode;
30 class IFMapUpdateQueue;
31 class IFMapUpdateSender;
32 class IFMapVmUuidMapper;
33 class IFMapServerShowClientMap;
34 class IFMapServerShowIndexMap;
35 class IFMapServerClientHistoryList;
36 class IFMapTableListEntry;
37 class IFMapNodeTableListShowEntry;
38 class IFMapServerInfoUI;
39 
40 class IFMapServer {
41 public:
43  ClientHistoryInfo(const std::string &name, int id, uint64_t ctime,
44  uint64_t htime)
45  : client_name(name), client_index(id), client_created_at(ctime),
46  history_created_at(htime) {
47  }
48  const std::string client_created_at_str() const;
49  const std::string history_created_at_str() const;
50 
51  std::string client_name;
55  };
56 
57  static const int kClientHistorySize = 5000;
58  typedef std::map<std::string, IFMapClient *> ClientMap;
59  typedef std::map<int, IFMapClient *> IndexMap;
60  typedef std::deque<ClientHistoryInfo> ClientHistory;
61  typedef ClientMap::size_type CmSz_t;
62  typedef IndexMap::size_type ImSz_t;
63  IFMapServer(DB *db, DBGraph *graph, boost::asio::io_context *io_service);
64  virtual ~IFMapServer();
65 
66  // Must be called after the __ifmap__ tables are registered with the
67  // database.
68  void Initialize();
69  void Shutdown();
70 
71  void ClientRegister(IFMapClient *client);
72  void ClientUnregister(IFMapClient *client);
73  bool ProcessClientWork(bool add, IFMapClient *client);
74 
75  IFMapClient *FindClient(const std::string &id);
76  IFMapClient *GetClient(int index);
77 
78  void AddClient(IFMapClient *client);
79  void DeleteClient(IFMapClient *client);
80  void ClientExporterSetup(IFMapClient *client);
81 
82  DB *database() { return db_; }
83  DBGraph *graph() { return graph_; }
84  IFMapUpdateQueue *queue() { return queue_.get(); }
85  IFMapUpdateSender *sender() { return sender_.get(); }
86  IFMapExporter *exporter() { return exporter_.get(); }
88  boost::asio::io_context *io_service() { return io_service_; }
90  config_manager_ = manager;
91  }
95  ifmap_channel_manager_ = manager;
96  }
99  }
100 
103  }
104  void ProcessVmSubscribe(std::string vr_name, std::string vm_uuid,
105  bool subscribe, bool has_vms);
106  void ProcessVmSubscribe(std::string vr_name, std::string vm_uuid,
107  bool subscribe);
108 
109  class IFMapStaleEntriesCleaner;
110  class IFMapVmSubscribe;
111 
112  void ProcessVmRegAsPending(std::string vm_uuid, std::string vr_name,
113  bool subscribe);
114  IFMapNode *GetVmNodeByUuid(const std::string &vm_uuid);
115 
116  void FillClientMap(IFMapServerShowClientMap *out_map,
117  const std::string &search_string);
118  void FillIndexMap(IFMapServerShowIndexMap *out_map,
119  const std::string &search_string);
120  void FillClientHistory(IFMapServerClientHistoryList *out_list,
121  const std::string &search_string);
122  const CmSz_t GetClientMapSize() const { return client_map_.size(); }
123  const CmSz_t GetIndexMapSize() const { return index_map_.size(); }
124  void GetUIInfo(IFMapServerInfoUI *server_info) const;
125  bool ClientNameToIndex(const std::string &id, int *index);
126  void CleanupStaleEntries();
127  bool CollectStats(BgpRouterState *state, bool first) const;
128 
129 private:
130  friend class IFMapServerTest;
131  friend class IFMapRestartTest;
133  friend class XmppIfmapTest;
134  friend class IFMapExporterTest;
135  friend class IFMapVmUuidMapperTest;
136 
137  enum QueueOp {
138  ADD = 1,
139  DEL = 2
140  };
141  struct QueueEntry {
144  };
145  bool ClientWorker(QueueEntry work_entry);
146  void ClientGraphDownload(IFMapClient *client);
148  void CleanupUuidMapper(IFMapClient *client);
149  void ClientExporterCleanup(int index);
150  const ClientMap &GetClientMap() const { return client_map_; }
151  void SimulateDeleteClient(IFMapClient *client);
152  void SaveClientHistory(IFMapClient *client);
153 
154  DB *db_;
156  boost::scoped_ptr<IFMapUpdateQueue> queue_;
157  boost::scoped_ptr<IFMapExporter> exporter_;
158  boost::scoped_ptr<IFMapUpdateSender> sender_;
159  boost::scoped_ptr<IFMapVmUuidMapper> vm_uuid_mapper_;
164  boost::asio::io_context *io_service_;
168 };
169 
170 #endif /* defined(__ctrlplane__ifmap_server__) */
boost::scoped_ptr< IFMapVmUuidMapper > vm_uuid_mapper_
Definition: ifmap_server.h:159
void ClientExporterSetup(IFMapClient *client)
ClientMap::size_type CmSz_t
Definition: ifmap_server.h:61
static const int kClientHistorySize
Definition: ifmap_server.h:57
ConfigClientManager * get_config_manager()
Definition: ifmap_server.h:92
IFMapClient * FindClient(const std::string &id)
uint64_t GetGenerationNumber() const
boost::scoped_ptr< IFMapExporter > exporter_
Definition: ifmap_server.h:157
void Initialize()
boost::scoped_ptr< IFMapUpdateSender > sender_
Definition: ifmap_server.h:158
void CleanupStaleEntries()
DBGraph * graph()
Definition: ifmap_server.h:83
std::map< int, IFMapClient * > IndexMap
Definition: ifmap_server.h:59
friend class IFMapVmUuidMapperTest
Definition: ifmap_server.h:135
const std::string client_created_at_str() const
void FillClientHistory(IFMapServerClientHistoryList *out_list, const std::string &search_string)
ConfigClientManager * config_manager_
Definition: ifmap_server.h:165
IFMapExporter * exporter()
Definition: ifmap_server.h:86
void set_ifmap_channel_manager(IFMapChannelManager *manager)
Definition: ifmap_server.h:94
bool ClientNameToIndex(const std::string &id, int *index)
ClientHistoryInfo(const std::string &name, int id, uint64_t ctime, uint64_t htime)
Definition: ifmap_server.h:43
const CmSz_t GetClientMapSize() const
Definition: ifmap_server.h:122
friend class IFMapExporterTest
Definition: ifmap_server.h:134
DBGraph * graph_
Definition: ifmap_server.h:155
boost::scoped_ptr< IFMapUpdateQueue > queue_
Definition: ifmap_server.h:156
const CmSz_t GetIndexMapSize() const
Definition: ifmap_server.h:123
Definition: db.h:24
void Shutdown()
void ClientRegister(IFMapClient *client)
IFMapClient * GetClient(int index)
ConfigClientManager * get_config_manager() const
Definition: ifmap_server.h:93
void CleanupUuidMapper(IFMapClient *client)
const std::string history_created_at_str() const
DB * database()
Definition: ifmap_server.h:82
ClientMap client_map_
Definition: ifmap_server.h:161
IFMapUpdateSender * sender()
Definition: ifmap_server.h:85
friend class IFMapServerTest
Definition: ifmap_server.h:130
IFMapNode * GetVmNodeByUuid(const std::string &vm_uuid)
IFMapServer(DB *db, DBGraph *graph, boost::asio::io_context *io_service)
void DeleteClient(IFMapClient *client)
IndexMap::size_type ImSz_t
Definition: ifmap_server.h:62
IFMapUpdateQueue * queue()
Definition: ifmap_server.h:84
std::deque< ClientHistoryInfo > ClientHistory
Definition: ifmap_server.h:60
void ClientGraphDownload(IFMapClient *client)
IFMapChannelManager * get_ifmap_channel_manager()
Definition: ifmap_server.h:97
Definition: bitset.h:17
void RemoveSelfAddedLinksAndObjects(IFMapClient *client)
bool ClientWorker(QueueEntry work_entry)
const ClientMap & GetClientMap() const
Definition: ifmap_server.h:150
friend class XmppIfmapTest
Definition: ifmap_server.h:133
void ProcessVmSubscribe(std::string vr_name, std::string vm_uuid, bool subscribe, bool has_vms)
void SimulateDeleteClient(IFMapClient *client)
boost::asio::io_context * io_service_
Definition: ifmap_server.h:164
IndexMap index_map_
Definition: ifmap_server.h:162
bool CollectStats(BgpRouterState *state, bool first) const
size_t size() const
Definition: index_map.h:100
friend class IFMapRestartTest
Definition: ifmap_server.h:131
void ClientUnregister(IFMapClient *client)
boost::asio::io_context * io_service()
Definition: ifmap_server.h:88
WorkQueue< QueueEntry > work_queue_
Definition: ifmap_server.h:163
void FillIndexMap(IFMapServerShowIndexMap *out_map, const std::string &search_string)
ClientHistory client_history_
Definition: ifmap_server.h:167
void ClientExporterCleanup(int index)
void ProcessVmRegAsPending(std::string vm_uuid, std::string vr_name, bool subscribe)
IFMapVmUuidMapper * vm_uuid_mapper()
Definition: ifmap_server.h:87
void FillClientMap(IFMapServerShowClientMap *out_map, const std::string &search_string)
void set_config_manager(ConfigClientManager *manager)
Definition: ifmap_server.h:89
virtual ~IFMapServer()
IFMapChannelManager * ifmap_channel_manager_
Definition: ifmap_server.h:166
uint64_t get_config_generation_number()
Definition: ifmap_server.h:101
std::map< std::string, IFMapClient * > ClientMap
Definition: ifmap_server.h:58
BitSet client_indexes_
Definition: ifmap_server.h:160
void SaveClientHistory(IFMapClient *client)
bool ProcessClientWork(bool add, IFMapClient *client)
void AddClient(IFMapClient *client)
void GetUIInfo(IFMapServerInfoUI *server_info) const