OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
event_notifier.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2017 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 #ifndef event_notifier_h
6 #define event_notifier_h
7 
8 #include <base/util.h>
9 #include <base/queue_task.h>
10 #include <boost/shared_ptr.hpp>
11 
12 /*
13  * Event Notifier
14  *
15  * This routine is a kind of pub-sub mechanism for non db notifications.
16  *
17  * Subscriber:
18  * All subscribers can register with a key. Key identifies the type of
19  * notification. Subscriber also provides the task context in which it expects
20  * the notification. On registeration it is given a handle which can be used to
21  * deregister. Same subscriber can also register multiple callbacks. Each
22  * registeration is segregated by handle returned agter registeration.
23  *
24  * Publisher:
25  * Publisher uses key like subscriber for kind of notification. Calls Notify and
26  * that call in turn call all subscribers. If nobody has subscribed nothing has
27  * to be done.
28  *
29  * Implementatin details:
30  * There is a vector of handles maintained on per key basis. To achieve task
31  * context based notification on per susbcriber basis, task trigger is used.
32  * On every registeration a tasktrigger object is created with callback and task
33  * id. This object along with key is bundled in handle which is returned to
34  * subscriber.
35  *
36  */
37 class EventNotifier;
38 
40 public:
41  enum Type {
44  };
46  virtual ~EventNotifyKey();
47 
48  virtual bool IsLess(const EventNotifyKey &rhs) const;
49  Type type() const {return type_;}
50 
51 private:
52  tbb::atomic<int> ref_count_;
54 };
55 
57  typedef boost::shared_ptr<EventNotifyKey> KeyPtr;
58  typedef boost::shared_ptr<EventNotifyHandle> Ptr;
59  typedef boost::function<bool(void)> Callback;
60 
62  virtual ~EventNotifyHandle();
63  KeyPtr key() const {return key_;}
64  void Notify() const {cb_();}
65 
66 private:
69 };
70 
72 public:
73  //Callback
74  typedef boost::function<bool(void)> Callback;
75  //Key Ptr
76  typedef boost::shared_ptr<EventNotifyKey> KeyPtr;
78  //subscriber callback list, vector of handles
79  typedef std::vector<EventNotifyHandle::Ptr> SubscribersList;
80  typedef SubscribersList::iterator SubscribersListIter;
81  //key to call back list map
82  typedef std::map<KeyPtr, SubscribersList, Comparator> NotifyMap;
83  typedef NotifyMap::iterator NotifyMapIter;
84 
85  EventNotifier(Agent *agent);
86  virtual ~EventNotifier();
87 
88  //Publisher routines
89  void Notify(EventNotifyKey *key);
90 
91  //Subscriber routines
93  Callback callback);
95 
96 private:
98  public:
99  typedef boost::shared_ptr<WorkQueueMessage> Ptr;
100  enum Type {
104  };
108  };
109  //Work queue enqueue/dequeue
110  bool Enqueue(WorkQueueMessage::Ptr data);
111  bool Process(WorkQueueMessage::Ptr data);
112 
113  void NotifyInternal(KeyPtr key);
116 
121 };
122 
123 #endif //event_notifier_h
std::map< KeyPtr, SubscribersList, Comparator > NotifyMap
EventNotifyHandle(KeyPtr key, Callback cb)
void NotifyInternal(KeyPtr key)
WorkQueueMessage(Type type, EventNotifyHandle::Ptr handle)
boost::function< bool(void)> Callback
EventNotifyKey(Type type)
virtual ~EventNotifier()
boost::function< bool(void)> Callback
void DeRegisterSubscriberInternal(EventNotifyHandle::Ptr ptr)
boost::shared_ptr< EventNotifyKey > KeyPtr
std::vector< EventNotifyHandle::Ptr > SubscribersList
uint8_t type
Definition: load_balance.h:109
Definition: agent.h:358
virtual ~EventNotifyKey()
DISALLOW_COPY_AND_ASSIGN(EventNotifier)
KeyPtr key() const
WorkQueue< WorkQueueMessage::Ptr > work_queue_
virtual bool IsLess(const EventNotifyKey &rhs) const
void Notify(EventNotifyKey *key)
bool Process(WorkQueueMessage::Ptr data)
NotifyMap map_
tbb::atomic< int > ref_count_
Type type() const
NotifyMap::iterator NotifyMapIter
bool Enqueue(WorkQueueMessage::Ptr data)
SmartPointerComparator< EventNotifyKey, boost::shared_ptr > Comparator
boost::shared_ptr< EventNotifyHandle > Ptr
void DeregisterSubscriber(EventNotifyHandle::Ptr ptr)
SubscribersList::iterator SubscribersListIter
void Notify() const
virtual ~EventNotifyHandle()
EventNotifyHandle::Ptr RegisterSubscriber(EventNotifyKey *key, Callback callback)
EventNotifier(Agent *agent)
void RegisterSubscriberInternal(EventNotifyHandle::Ptr ptr)
boost::shared_ptr< EventNotifyKey > KeyPtr
EventNotifyHandle::Ptr handle_ptr_
boost::shared_ptr< WorkQueueMessage > Ptr