deimos.zookeeper.zookeeper

Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Public Imports

deimos.zookeeper.zookeeper_version
public import deimos.zookeeper.zookeeper_version;
Undocumented in source.
deimos.zookeeper.proto
public import deimos.zookeeper.proto;
Undocumented in source.
deimos.zookeeper.recordio
public import deimos.zookeeper.recordio;
Undocumented in source.
deimos.zookeeper.zookeeper_jute
public import deimos.zookeeper.zookeeper_jute;
Undocumented in source.

Members

Aliases

acl_completion_t
alias acl_completion_t = void function(int rc, ACL_vector* acl, Stat* stat, const void* data)

\brief signature of a completion function that returns an ACL.

data_completion_t
alias data_completion_t = void function(int rc, const char* value, int value_len, const Stat* stat, const void* data)

\brief signature of a completion function that returns data.

stat_completion_t
alias stat_completion_t = void function(int rc, const Stat* stat, const void* data)

\brief signature of a completion function that returns a Stat structure.

string_completion_t
alias string_completion_t = void function(int rc, const char* value, const void* data)

\brief signature of a completion function that returns a list of strings.

strings_completion_t
alias strings_completion_t = void function(int rc, const String_vector* strings, const void* data)

\brief signature of a completion function that returns a list of strings.

strings_stat_completion_t
alias strings_stat_completion_t = void function(int rc, const String_vector* strings, const Stat* stat, const void* data)

\brief signature of a completion function that returns a list of strings and stat. .

void_completion_t
alias void_completion_t = void function(int rc, const void* data)

\brief signature of a completion function for a call that returns void.

watcher_fn
alias watcher_fn = void function(zhandle_t* zh, int type, int state, const char* path, void* watcherCtx)

\brief signature of a watch function.

zhandle_t
alias zhandle_t = _zhandle
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
zoo_op_result_t
alias zoo_op_result_t = zoo_op_result
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
zoo_op_t
alias zoo_op_t = zoo_op
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

ZOO_ERRORS
enum ZOO_ERRORS

zookeeper return constants *

ZooLogLevel
enum ZooLogLevel

@name Debug levels

Functions

is_unrecoverable
int is_unrecoverable(zhandle_t* zh)

\brief checks if the current zookeeper connection state can't be recovered.

zerror
const(char)* zerror(int c)

\brief return an error string.

zoo_acreate
int zoo_acreate(zhandle_t* zh, char* path, char* value, int valuelen, ACL_vector* acl, int flags, string_completion_t completion, void* data)

\brief create a node.

zoo_add_auth
int zoo_add_auth(zhandle_t* zh, char* scheme, char* cert, int certLen, void_completion_t completion, void* data)

\brief specify application credentials.

zoo_adelete
int zoo_adelete(zhandle_t* zh, char* path, int version_, void_completion_t completion, void* data)

\brief delete a node in zookeeper.

zoo_aexists
int zoo_aexists(zhandle_t* zh, char* path, int watch, stat_completion_t completion, void* data)

\brief checks the existence of a node in zookeeper.

zoo_aget
int zoo_aget(zhandle_t* zh, char* path, int watch, data_completion_t completion, void* data)

\brief gets the data associated with a node.

zoo_aget_acl
int zoo_aget_acl(zhandle_t* zh, char* path, acl_completion_t completion, void* data)

\brief gets the acl associated with a node.

zoo_aget_children
int zoo_aget_children(zhandle_t* zh, char* path, int watch, strings_completion_t completion, void* data)

\brief lists the children of a node.

zoo_aget_children2
int zoo_aget_children2(zhandle_t* zh, char* path, int watch, strings_stat_completion_t completion, void* data)

\brief lists the children of a node, and get the parent stat.

zoo_amulti
int zoo_amulti(zhandle_t* zh, int count, zoo_op_t* ops, zoo_op_result_t* results, void_completion_t , void* data)

\brief atomically commits multiple zookeeper operations.

zoo_aset
int zoo_aset(zhandle_t* zh, char* path, char* buffer, int buflen, int version_, stat_completion_t completion, void* data)

\brief sets the data associated with a node.

zoo_aset_acl
int zoo_aset_acl(zhandle_t* zh, char* path, int version_, ACL_vector* acl, void_completion_t , void* data)

\brief sets the acl associated with a node.

zoo_async
int zoo_async(zhandle_t* zh, char* path, string_completion_t completion, void* data)

\brief Flush leader channel.

zoo_awexists
int zoo_awexists(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, stat_completion_t completion, void* data)

\brief checks the existence of a node in zookeeper.

zoo_awget
int zoo_awget(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, data_completion_t completion, void* data)

\brief gets the data associated with a node.

zoo_awget_children
int zoo_awget_children(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, strings_completion_t completion, void* data)

\brief lists the children of a node.

zoo_awget_children2
int zoo_awget_children2(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, strings_stat_completion_t completion, void* data)

\brief lists the children of a node, and get the parent stat.

zoo_check_op_init
void zoo_check_op_init(zoo_op_t* op, char* path, int version_)

\brief zoo_check_op_init.

zoo_client_id
const(clientid_t)* zoo_client_id(zhandle_t* zh)

\brief return the client session id, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE)

zoo_create
int zoo_create(zhandle_t* zh, char* path, char* value, int valuelen, ACL_vector* acl, int flags, char* path_buffer, int path_buffer_len)

\brief create a node synchronously.

zoo_create_op_init
void zoo_create_op_init(zoo_op_t* op, char* path, char* value, int valuelen, ACL_vector* acl, int flags, char* path_buffer, int path_buffer_len)

\brief zoo_create_op_init.

zoo_delete
int zoo_delete(zhandle_t* zh, char* path, int version_)

\brief delete a node in zookeeper synchronously.

zoo_delete_op_init
void zoo_delete_op_init(zoo_op_t* op, char* path, int version_)

\brief zoo_delete_op_init.

zoo_deterministic_conn_order
void zoo_deterministic_conn_order(int yesOrNo)

\brief enable/disable quorum endpoint order randomization

zoo_exists
int zoo_exists(zhandle_t* zh, char* path, int watch, Stat* stat)

\brief checks the existence of a node in zookeeper synchronously.

zoo_get
int zoo_get(zhandle_t* zh, char* path, int watch, char* buffer, int* buffer_len, Stat* stat)

\brief gets the data associated with a node synchronously.

zoo_get_acl
int zoo_get_acl(zhandle_t* zh, char* path, ACL_vector* acl, Stat* stat)

\brief gets the acl associated with a node synchronously.

zoo_get_children
int zoo_get_children(zhandle_t* zh, char* path, int watch, String_vector* strings)

\brief lists the children of a node synchronously.

zoo_get_children2
int zoo_get_children2(zhandle_t* zh, char* path, int watch, String_vector* strings, Stat* stat)

\brief lists the children of a node and get its stat synchronously.

zoo_get_context
const(void)* zoo_get_context(zhandle_t* zh)

\brief return the context for this handle.

zoo_multi
int zoo_multi(zhandle_t* zh, int count, zoo_op_t* ops, zoo_op_result_t* results)

\brief atomically commits multiple zookeeper operations synchronously.

zoo_recv_timeout
int zoo_recv_timeout(zhandle_t* zh)

\brief return the timeout for this session, only valid if the connections is currently connected (ie. last watcher state is ZOO_CONNECTED_STATE). This value may change after a server re-connect.

zoo_set
int zoo_set(zhandle_t* zh, char* path, char* buffer, int buflen, int version_)

\brief sets the data associated with a node. See zoo_set2 function if you require access to the stat information associated with the znode.

zoo_set2
int zoo_set2(zhandle_t* zh, char* path, char* buffer, int buflen, int version_, Stat* stat)

\brief sets the data associated with a node. This function is the same as zoo_set except that it also provides access to stat information associated with the znode.

zoo_set_acl
int zoo_set_acl(zhandle_t* zh, char* path, int version_, ACL_vector* acl)

\brief sets the acl associated with a node synchronously.

zoo_set_context
void zoo_set_context(zhandle_t* zh, void* context)

\brief set the context for this handle.

zoo_set_debug_level
void zoo_set_debug_level(ZooLogLevel logLevel)

\brief sets the debugging level for the library

zoo_set_log_stream
void zoo_set_log_stream(FILE* logStream)

\brief sets the stream to be used by the library for logging

zoo_set_op_init
void zoo_set_op_init(zoo_op_t* op, char* path, char* buffer, int buflen, int version_, Stat* stat)

\brief zoo_set_op_init.

zoo_set_watcher
watcher_fn zoo_set_watcher(zhandle_t* zh, watcher_fn newFn)

\brief set a watcher function \return previous watcher function

zoo_state
int zoo_state(zhandle_t* zh)

\brief get the state of the zookeeper connection.

zoo_wexists
int zoo_wexists(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, Stat* stat)

\brief checks the existence of a node in zookeeper synchronously.

zoo_wget
int zoo_wget(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, char* buffer, int* buffer_len, Stat* stat)

\brief gets the data associated with a node synchronously.

zoo_wget_children
int zoo_wget_children(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, String_vector* strings)

\brief lists the children of a node synchronously.

zoo_wget_children2
int zoo_wget_children2(zhandle_t* zh, char* path, watcher_fn watcher, void* watcherCtx, String_vector* strings, Stat* stat)

\brief lists the children of a node and get its stat synchronously.

zookeeper_close
int zookeeper_close(zhandle_t* zh)

\brief close the zookeeper handle and free up any resources.

zookeeper_get_connected_host
sockaddr* zookeeper_get_connected_host(zhandle_t* zh, sockaddr* addr, socklen_t* addr_len)

\brief returns the socket address for the current connection \return socket address of the connected host or NULL on failure, only valid if the connection is current connected

zookeeper_init
zhandle_t* zookeeper_init(char* host, watcher_fn fn, int recv_timeout, clientid_t* clientid, void* context, int flags)

\brief create a handle to used communicate with zookeeper.

zookeeper_interest
int zookeeper_interest(zhandle_t* zh, SOCKET* fd, int* interest, timeval* tv)

\brief Returns the events that zookeeper is interested in.

zookeeper_interest
int zookeeper_interest(zhandle_t* zh, int* fd, int* interest, timeval* tv)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
zookeeper_process
int zookeeper_process(zhandle_t* zh, int events)

\brief Notifies zookeeper that an event of interest has happened.

Manifest constants

ASSOCIATING_STATE_DEF
enum ASSOCIATING_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
AUTH_FAILED_STATE_DEF
enum AUTH_FAILED_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
AUTH_XID
enum AUTH_XID;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CHANGED_EVENT_DEF
enum CHANGED_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CHILD_EVENT_DEF
enum CHILD_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CONNECTED_STATE_DEF
enum CONNECTED_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CONNECTING_STATE_DEF
enum CONNECTING_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
CREATED_EVENT_DEF
enum CREATED_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
DELETED_EVENT_DEF
enum DELETED_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
EXPIRED_SESSION_STATE_DEF
enum EXPIRED_SESSION_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
NOTCONNECTED_STATE_DEF
enum NOTCONNECTED_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
NOTWATCHING_EVENT_DEF
enum NOTWATCHING_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
PING_XID
enum PING_XID;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
READONLY_STATE_DEF
enum READONLY_STATE_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SESSION_EVENT_DEF
enum SESSION_EVENT_DEF;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
SET_WATCHES_XID
enum SET_WATCHES_XID;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
WATCHER_EVENT_XID
enum WATCHER_EVENT_XID;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Structs

_zhandle
struct _zhandle

\brief ZooKeeper handle.

clientid_t
struct clientid_t

\brief client id structure.

zoo_op
struct zoo_op

\brief zoo_op structure.

zoo_op_result
struct zoo_op_result

\brief zoo_op_result structure.

Variables

ZOOKEEPER_READ
int ZOOKEEPER_READ;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOOKEEPER_WRITE
int ZOOKEEPER_WRITE;

@name Interest Consts These constants are used to express interest in an event and to indicate to zookeeper which events have occurred. They can be ORed together to express multiple interests. These flags are used in the interest and event parameters of \ref zookeeper_interest and \ref zookeeper_process.

ZOO_ASSOCIATING_STATE
int ZOO_ASSOCIATING_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_AUTH_FAILED_STATE
int ZOO_AUTH_FAILED_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_CHANGED_EVENT
int ZOO_CHANGED_EVENT;

\brief a node has changed.

ZOO_CHILD_EVENT
int ZOO_CHILD_EVENT;

\brief a change as occurred in the list of children.

ZOO_CONNECTED_STATE
int ZOO_CONNECTED_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_CONNECTING_STATE
int ZOO_CONNECTING_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_CREATED_EVENT
int ZOO_CREATED_EVENT;

\brief a node has been created.

ZOO_DELETED_EVENT
int ZOO_DELETED_EVENT;

\brief a node has been deleted.

ZOO_EPHEMERAL
int ZOO_EPHEMERAL;

@name Create Flags

ZOO_EXPIRED_SESSION_STATE
int ZOO_EXPIRED_SESSION_STATE;

@name State Consts These constants represent the states of a zookeeper connection. They are possible parameters of the watcher callback.

ZOO_NOTCONNECTED_STATE
int ZOO_NOTCONNECTED_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_NOTWATCHING_EVENT
int ZOO_NOTWATCHING_EVENT;

\brief a watch has been removed.

ZOO_PERM_ADMIN
int ZOO_PERM_ADMIN;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_PERM_ALL
int ZOO_PERM_ALL;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_PERM_CREATE
int ZOO_PERM_CREATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_PERM_DELETE
int ZOO_PERM_DELETE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_PERM_READ
int ZOO_PERM_READ;

@name ACL Consts

ZOO_PERM_WRITE
int ZOO_PERM_WRITE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_READONLY_STATE
int ZOO_READONLY_STATE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_SEQUENCE
int ZOO_SEQUENCE;
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
ZOO_SESSION_EVENT
int ZOO_SESSION_EVENT;

\brief a session has been lost.

Meta