OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
sandesh_client.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2013 Juniper Networks, Inc. All rights reserved.
3  */
4 
5 //
6 // sandesh_client.h
7 //
8 // Sandesh Analytics Database Client
9 //
10 
11 #ifndef __SANDESH_CLIENT_H__
12 #define __SANDESH_CLIENT_H__
13 
14 #include <boost/asio.hpp>
15 #include <boost/statechart/state_machine.hpp>
16 #include <boost/asio/ip/tcp.hpp>
17 #include <boost/scoped_ptr.hpp>
18 #include <boost/ptr_container/ptr_map.hpp>
19 #include <boost/tuple/tuple.hpp>
20 
21 #include <tbb/mutex.h>
22 #include <tbb/atomic.h>
23 
24 #include <io/tcp_server.h>
25 #include <io/ssl_server.h>
26 #include <io/ssl_session.h>
27 #include <base/queue_task.h>
28 #include <base/timer.h>
29 #include <sandesh/stats_client.h>
30 #include <sandesh/sandesh_session.h>
31 #include "sandesh_client_sm.h"
32 #include "sandesh.h"
33 
34 class SandeshClient;
35 class Sandesh;
36 class SandeshUVE;
37 class SandeshHeader;
38 
39 bool DoCloseSMSession(uint64_t now_usec, uint64_t last_close_usec,
40  uint64_t last_close_interval_usec, int *close_interval_msec);
41 
43 public:
44  static const int kInitialSMSessionCloseIntervalMSec = 10 * 1000;
45  static const int kMaxSMSessionCloseIntervalMSec = 60 * 1000;
46 
47  SandeshClient(EventManager *evm, const std::vector<Endpoint> &collectors,
48  const SandeshConfig &config,
49  bool periodicuve = false);
50 
51  virtual ~SandeshClient();
52 
53  void Initiate();
54  void Shutdown();
55 
60 
61  void InitializeSMSession(int connects);
63  DeleteSession(session);
64  }
65  bool CloseSMSession();
66  bool ReceiveMsg(const std::string& msg,
67  const SandeshHeader &header, const std::string &sandesh_name,
68  const uint32_t header_offset);
69  void SendUVE(int count,
70  const std::string & stateName, const std::string & server,
71  const Endpoint & server_ip, const std::vector<Endpoint> & collector_eps);
72 
73  bool SendSandesh(Sandesh *snh);
74 
75  bool SendSandeshUVE(Sandesh *snh_uve);
76 
78  return sm_->state();
79  }
80 
81  bool IsSession() {
82  if (sm_->session()) return true;
83  else return false;
84  }
85 
86  SandeshSession * session() const {
87  return sm_->session();
88  }
89 
91  return sm_.get();
92  }
93 
95  return stats_client_.get();
96  }
97 
98  void SetDscpValue(uint8_t value);
99  uint8_t dscp_value() const { return dscp_value_; }
100 
104  std::vector<Sandesh::QueueWaterMarkInfo> &scwm_info) const;
105  void ReConfigCollectors(const std::vector<std::string>&);
106 
109  }
110  uint64_t session_close_time_usec() const {
112  }
113 
114  friend class CollectorInfoRequest;
115 protected:
116  virtual SslSession *AllocSession(SslSocket *socket);
117  bool CloseSMSessionInternal();
118 
119 private:
120  static const int kSMTaskInstance = 0;
121  static const std::string kSMTask;
123  static const std::string kSessionWriterTask;
124  static const std::string kSessionReaderTask;
125  static const std::vector<Sandesh::QueueWaterMarkInfo> kSessionWaterMarkInfo;
126 
132  uint8_t dscp_value_;
133  std::vector<Endpoint> collectors_;
134  std::string stats_collector_;
135  boost::scoped_ptr<SandeshClientSM> sm_;
136  boost::scoped_ptr<StatsClient> stats_client_;
137  std::vector<Sandesh::QueueWaterMarkInfo> session_wm_info_;
138  static bool task_policy_set_;
141 
142  bool ReceiveCtrlMsg(const std::string &msg,
143  const SandeshHeader &header, const std::string &sandesh_name,
144  const uint32_t header_offset);
145 
147 };
148 
149 #endif // __SANDESH_CLIENT_H__
void DeleteSMSession(SandeshSession *session)
int session_writer_task_id_
virtual SandeshSession * CreateSMSession(SslSession::EventObserver eocb, SandeshReceiveMsgCb rmcb, TcpServer::Endpoint ep)
uint8_t dscp_value() const
static const std::string kSMTask
StatsClient * stats_client() const
virtual void DeleteSession(TcpSession *session)
Definition: tcp_server.cc:197
static const int kMaxSMSessionCloseIntervalMSec
int session_close_interval_msec() const
static const int kTaskInstanceAny
Definition: task.h:102
friend class CollectorInfoRequest
SandeshSession * session() const
virtual SslSession * AllocSession(SslSocket *socket)
static const int kSMTaskInstance
boost::scoped_ptr< SandeshClientSM > sm_
bool CloseSMSessionInternal()
uint64_t session_close_time_usec() const
SandeshClient(EventManager *evm, const std::vector< Endpoint > &collectors, const SandeshConfig &config, bool periodicuve=false)
static const int kInitialSMSessionCloseIntervalMSec
void GetSessionWaterMarkInfo(std::vector< Sandesh::QueueWaterMarkInfo > &scwm_info) const
virtual ~SandeshClient()
void SetDscpValue(uint8_t value)
int session_close_interval_msec_
DISALLOW_COPY_AND_ASSIGN(SandeshClient)
bool ReceiveCtrlMsg(const std::string &msg, const SandeshHeader &header, const std::string &sandesh_name, const uint32_t header_offset)
void SetSessionWaterMarkInfo(Sandesh::QueueWaterMarkInfo &scwm)
bool SendSandeshUVE(Sandesh *snh_uve)
uint64_t session_close_time_usec_
static const std::vector< Sandesh::QueueWaterMarkInfo > kSessionWaterMarkInfo
boost::asio::ssl::stream< boost::asio::ip::tcp::socket > SslSocket
Definition: ssl_server.h:16
SandeshClientSM::State state()
std::vector< Sandesh::QueueWaterMarkInfo > session_wm_info_
int session_task_instance_
int session_reader_task_id_
uint8_t dscp_value_
boost::scoped_ptr< StatsClient > stats_client_
void InitializeSMSession(int connects)
SandeshClientSM * state_machine() const
void ResetSessionWaterMarkInfo()
bool SendSandesh(Sandesh *snh)
void ReConfigCollectors(const std::vector< std::string > &)
static bool task_policy_set_
boost::tuple< size_t, SandeshLevel::type, bool, bool > QueueWaterMarkInfo
Definition: p/sandesh.h:147
boost::function< bool(const std::string &, SandeshSession *)> SandeshReceiveMsgCb
boost::function< void(TcpSession *, Event)> EventObserver
Definition: tcp_session.h:63
static const int kSessionTaskInstance
boost::asio::ip::tcp::endpoint Endpoint
Definition: tcp_server.h:30
void SendUVE(int count, const std::string &stateName, const std::string &server, const Endpoint &server_ip, const std::vector< Endpoint > &collector_eps)
bool ReceiveMsg(const std::string &msg, const SandeshHeader &header, const std::string &sandesh_name, const uint32_t header_offset)
std::vector< Endpoint > collectors_
std::string stats_collector_
static const std::string kSessionReaderTask
static EventManager evm
bool DoCloseSMSession(uint64_t now_usec, uint64_t last_close_usec, uint64_t last_close_interval_usec, int *close_interval_msec)
static const std::string kSessionWriterTask