The FreeRADIUS server  $Id: 15bac2a4c627c01d1aa2047687b3418955ac7f00 $
Macros | Functions
couchbase.c File Reference

Wrapper functions around the libcouchbase Couchbase client driver. More...

#include <freeradius-devel/server/base.h>
#include <freeradius-devel/json/base.h>
#include "couchbase.h"
+ Include dependency graph for couchbase.c:

Go to the source code of this file.

Macros

#define LOG_PREFIX   "couchbase"
 

Functions

void couchbase_get_callback (lcb_t instance, const void *cookie, lcb_error_t error, const lcb_get_resp_t *resp)
 Couchbase callback for get (read) operations. More...
 
lcb_error_t couchbase_get_key (lcb_t instance, const void *cookie, const char *key)
 Retrieve a document by key from Couchbase. More...
 
void couchbase_http_data_callback (lcb_http_request_t request, lcb_t instance, const void *cookie, lcb_error_t error, const lcb_http_resp_t *resp)
 Couchbase callback for http (view) operations. More...
 
lcb_error_t couchbase_init_connection (lcb_t *instance, const char *host, const char *bucket, const char *user, const char *pass, lcb_uint32_t timeout, const couchbase_opts_t *opts)
 Initialize a Couchbase connection instance. More...
 
lcb_error_t couchbase_query_view (lcb_t instance, const void *cookie, const char *path, const char *post)
 Query a Couchbase design document view. More...
 
lcb_error_t couchbase_server_stats (lcb_t instance, const void *cookie)
 Request Couchbase server statistics. More...
 
lcb_error_t couchbase_set_key (lcb_t instance, const char *key, const char *document, int expire)
 Store a document by key in Couchbase. More...
 
void couchbase_stat_callback (lcb_t instance, const void *cookie, lcb_error_t error, const lcb_server_stat_resp_t *resp)
 Couchbase callback for cluster statistics requests. More...
 
void couchbase_store_callback (lcb_t instance, const void *cookie, lcb_storage_t operation, lcb_error_t error, const lcb_store_resp_t *resp)
 Couchbase callback for store (write) operations. More...
 

Detailed Description

Wrapper functions around the libcouchbase Couchbase client driver.

Id
f8ce8bc28a738ff71498ad83a8bed032c5d8118d
Author
Aaron Hurt (ahurt.nosp@m.@anb.nosp@m.cs.co.nosp@m.m)

Definition in file couchbase.c.

Macro Definition Documentation

◆ LOG_PREFIX

#define LOG_PREFIX   "couchbase"

Definition at line 28 of file couchbase.c.

Function Documentation

◆ couchbase_get_callback()

void couchbase_get_callback ( lcb_t  instance,
const void *  cookie,
lcb_error_t  error,
const lcb_get_resp_t *  resp 
)

Couchbase callback for get (read) operations.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
errorCouchbase error object.
respCouchbase get operation response object.

Definition at line 81 of file couchbase.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ couchbase_get_key()

lcb_error_t couchbase_get_key ( lcb_t  instance,
const void *  cookie,
const char *  key 
)

Retrieve a document by key from Couchbase.

Setup and execute a Couchbase get request and wait for the result.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
keyDocument key to fetch.
Returns
Couchbase error object.

Definition at line 325 of file couchbase.c.

+ Here is the caller graph for this function:

◆ couchbase_http_data_callback()

void couchbase_http_data_callback ( lcb_http_request_t  request,
lcb_t  instance,
const void *  cookie,
lcb_error_t  error,
const lcb_http_resp_t *  resp 
)

Couchbase callback for http (view) operations.

Parameters
requestCouchbase http request object.
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
errorCouchbase error object.
respCouchbase http response object.

Definition at line 138 of file couchbase.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ couchbase_init_connection()

lcb_error_t couchbase_init_connection ( lcb_t *  instance,
const char *  host,
const char *  bucket,
const char *  user,
const char *  pass,
lcb_uint32_t  timeout,
const couchbase_opts_t opts 
)

Initialize a Couchbase connection instance.

Initialize all information relating to a Couchbase instance and configure available method callbacks. This function forces synchronous operation and will wait for a connection or timeout.

Parameters
instanceEmpty (un-allocated) Couchbase instance object.
hostThe Couchbase server or list of servers.
bucketThe Couchbase bucket to associate with the instance.
userThe Couchbase bucket user (NULL if none).
passThe Couchbase bucket password (NULL if none).
timeoutMaximum time to wait for obtaining the initial configuration.
optsExtra options to configure the libcouchbase.
Returns
Couchbase error object.

Definition at line 196 of file couchbase.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ couchbase_query_view()

lcb_error_t couchbase_query_view ( lcb_t  instance,
const void *  cookie,
const char *  path,
const char *  post 
)

Query a Couchbase design document view.

Setup and execute a Couchbase view request and wait for the result.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
pathThe fully qualified view path including the design document and view name.
postThe post payload (NULL for none).
Returns
Couchbase error object.

Definition at line 377 of file couchbase.c.

+ Here is the caller graph for this function:

◆ couchbase_server_stats()

lcb_error_t couchbase_server_stats ( lcb_t  instance,
const void *  cookie 
)

Request Couchbase server statistics.

Setup and execute a request for cluster statistics and wait for the result.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
Returns
Couchbase error object.

Definition at line 254 of file couchbase.c.

+ Here is the caller graph for this function:

◆ couchbase_set_key()

lcb_error_t couchbase_set_key ( lcb_t  instance,
const char *  key,
const char *  document,
int  expire 
)

Store a document by key in Couchbase.

Setup and execute a Couchbase set operation and wait for the result.

Parameters
instanceCouchbase connection instance.
keyDocument key to store in the database.
documentDocument body to store in the database.
expireExpiration time for the document (0 = never)
Returns
Couchbase error object.

Definition at line 288 of file couchbase.c.

+ Here is the caller graph for this function:

◆ couchbase_stat_callback()

void couchbase_stat_callback ( lcb_t  instance,
const void *  cookie,
lcb_error_t  error,
const lcb_server_stat_resp_t *  resp 
)

Couchbase callback for cluster statistics requests.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
errorCouchbase error object.
respCouchbase statistics response object.

Definition at line 42 of file couchbase.c.

+ Here is the caller graph for this function:

◆ couchbase_store_callback()

void couchbase_store_callback ( lcb_t  instance,
const void *  cookie,
lcb_storage_t  operation,
lcb_error_t  error,
const lcb_store_resp_t *  resp 
)

Couchbase callback for store (write) operations.

Parameters
instanceCouchbase connection instance.
cookieCouchbase cookie for returning information from callbacks.
operationCouchbase storage operation object.
errorCouchbase error object.
respCouchbase store operation response object.

Definition at line 61 of file couchbase.c.

+ Here is the caller graph for this function: