OpenSDN source code
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
zookeeper_client.cc File Reference
#include <cerrno>
#include <cstring>
#include <base/logging.h>
#include <zookeeper/zookeeper_client.h>
#include <zookeeper/zookeeper_client_impl.h>
#include <zookeeper/zookeeper_interface.h>
Include dependency graph for zookeeper_client.cc:

Go to the source code of this file.

Classes

class  zookeeper::interface::ZookeeperCBindings
 
class  zookeeper::client::ZookeeperLock::ZookeeperLockImpl
 

Namespaces

 zookeeper
 
 zookeeper::interface
 
 zookeeper::client
 
 zookeeper::client::impl
 

Macros

#define ZOO_LOG(_Level, _Msg)
 
#define ZOO_LOG_ERR(_Msg)
 

Functions

void zookeeper::client::impl::ZookeeperWatcher (zhandle_t *zh, int type, int state, const char *path, void *watcherCtx)
 
static bool zookeeper::client::impl::IsZooErrorRecoverable (int zerror)
 
static bool zookeeper::client::impl::IsZooErrorUnrecoverable (int zerror)
 

Macro Definition Documentation

#define ZOO_LOG (   _Level,
  _Msg 
)
Value:
do { \
if (LoggingDisabled()) break; \
log4cplus::Logger logger = log4cplus::Logger::getRoot(); \
LOG4CPLUS_##_Level(logger, __func__ << ":" << __FILE__ << ":" << \
__LINE__ << ": " << _Msg); \
} while (false)
bool LoggingDisabled()
Definition: logging.cc:24

Definition at line 14 of file zookeeper_client.cc.

#define ZOO_LOG_ERR (   _Msg)
Value:
do { \
LOG(ERROR, __func__ << ":" << __FILE__ << ":" << __LINE__ << ": " \
<< _Msg); \
} while (false)
#define LOG(_Level, _Msg)
Definition: logging.h:33

Definition at line 22 of file zookeeper_client.cc.