quasardb C API
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Groups Pages
Functions
Direct node storage access

Functions

QDB_API_LINKAGE qdb_direct_handle_t qdb_direct_connect (qdb_handle_t handle, const char *uri)
 Opens a direct connection to a node for use with the direct API. More...
 
QDB_API_LINKAGE void qdb_direct_close (qdb_direct_handle_t handle)
 Close a direct handle initially opened with qdb_direct_connect. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_blob_get (qdb_direct_handle_t handle, const char *alias, const void **content, qdb_size_t *content_length)
 Retrieves an entry's content from a quasardb node's local storage. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_blob_put (qdb_direct_handle_t handle, const char *alias, const void *content, qdb_size_t content_length, qdb_time_t expiry_time)
 Creates a new entry and sets its content to the provided blob. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_blob_update (qdb_direct_handle_t handle, const char *alias, const void *content, qdb_size_t content_length, qdb_time_t expiry_time)
 Creates or updates an entry and sets its content to the provided blob. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_remove (qdb_direct_handle_t handle, const char *alias)
 Removes an entry from the local node's storage, regardless of its type. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_int_put (qdb_direct_handle_t handle, const char *alias, qdb_int_t integer, qdb_time_t expiry_time)
 Creates a new signed 64-bit integer. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_int_update (qdb_direct_handle_t handle, const char *alias, qdb_int_t integer, qdb_time_t expiry_time)
 Creates or updates a signed 64-bit integer. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_int_get (qdb_direct_handle_t handle, const char *alias, qdb_int_t *integer)
 Retrieves the value of a signed 64-bit integer. More...
 
QDB_API_LINKAGE qdb_error_t qdb_direct_int_add (qdb_direct_handle_t handle, const char *alias, qdb_int_t addend, qdb_int_t *result)
 Atomically increases or decreases a signed 64-bit integer. More...
 

Detailed Description

Function Documentation

QDB_API_LINKAGE qdb_error_t qdb_direct_blob_get ( qdb_direct_handle_t  handle,
const char *  alias,
const void **  content,
qdb_size_t content_length 
)

Retrieves an entry's content from a quasardb node's local storage.

If the entry does not exist, the function will fail and return qdb_e_alias_not_found.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

The function will allocate a buffer large enough to hold the entry's content. This buffer must be released by the caller with a call to qdb_release().

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
[out]contentA pointer to a pointer that will be set to a function-allocated buffer holding the entry's content.
[out]content_lengthA pointer to a qdb_size_t that will be set to the content's size, in bytes.
Returns
A qdb_error_t code indicating success or failure.
QDB_API_LINKAGE qdb_error_t qdb_direct_blob_put ( qdb_direct_handle_t  handle,
const char *  alias,
const void *  content,
qdb_size_t  content_length,
qdb_time_t  expiry_time 
)

Creates a new entry and sets its content to the provided blob.

If the entry already exists the function will fail and will return qdb_e_alias_already_exists.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

You can specify an expiry or use qdb_never_expires if you don't want the entry to expire.

There is no software-defined limit to the size of blobs.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
contentA pointer to the buffer with the blob content
content_lengthThe length of the buffer, in bytes
expiry_timeThis parameter is currently ignored.
Returns
A qdb_error_t code indicating success or failure.
QDB_API_LINKAGE qdb_error_t qdb_direct_blob_update ( qdb_direct_handle_t  handle,
const char *  alias,
const void *  content,
qdb_size_t  content_length,
qdb_time_t  expiry_time 
)

Creates or updates an entry and sets its content to the provided blob.

If the entry already exists, the function will modify the entry.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

You can specify an expiry or use qdb_never_expires if you don't want the entry to expire.

There is no software-defined limit to the size of blobs.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
contentA pointer to the buffer with the blob content
content_lengthThe length of the buffer, in bytes
expiry_timeThis parameter is currently ignored.
Returns
A qdb_error_t code indicating success or failure.
QDB_API_LINKAGE void qdb_direct_close ( qdb_direct_handle_t  handle)

Close a direct handle initially opened with qdb_direct_connect.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
QDB_API_LINKAGE qdb_direct_handle_t qdb_direct_connect ( qdb_handle_t  handle,
const char *  uri 
)

Opens a direct connection to a node for use with the direct API.

The returned handled must be freed with qdb_direct_close. Releasing the direct handle has no impact on non-direct connections or other direct handles.

Parameters
handleA valid handle previously initialized by qdb_open or qdb_open_tcp.
uriA string representing the node address and port (without the qdb:// prefix)
Returns
A valid qdb_direct_handle_t if successful, a null pointer.
QDB_API_LINKAGE qdb_error_t qdb_direct_int_add ( qdb_direct_handle_t  handle,
const char *  alias,
qdb_int_t  addend,
qdb_int_t result 
)

Atomically increases or decreases a signed 64-bit integer.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

The specified entry will be atomically increased (or decreased) according to the given addend value:

  • To increase the value, specify a positive addend
  • To decrease the value, specify a negative addend

The function return the result of the operation.

The entry must already exist. If the entry is not an integer, the function will return qdb_e_incompatible_type.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
addendThe value to add to the existing value.
resultA pointer to an integer that will receive the current value of the entry, if successful.
Returns
A qdb_error_t code indicating success or failure.
See Also
qdb_int_put, qdb_int_update, qdb_int_get
QDB_API_LINKAGE qdb_error_t qdb_direct_int_get ( qdb_direct_handle_t  handle,
const char *  alias,
qdb_int_t integer 
)

Retrieves the value of a signed 64-bit integer.

Atomically retrieves the value of an existing 64-bit integer.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

If the entry is not an integer, the function will return qdb_e_incompatible_type.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
integerA pointer to an integer that will receive the current value of the entry, if successful.
Returns
A qdb_error_t code indicating success or failure.
See Also
qdb_int_put, qdb_int_update, qdb_int_add
QDB_API_LINKAGE qdb_error_t qdb_direct_int_put ( qdb_direct_handle_t  handle,
const char *  alias,
qdb_int_t  integer,
qdb_time_t  expiry_time 
)

Creates a new signed 64-bit integer.

Atomically creates an entry of the given alias and sets it to a cross-platform signed 64-bit integer. If the entry already exists, the function returns an error.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

You can specify an expiry or use qdb_never_expires if you don't want the entry to expire.

If you want to create or update an entry use qdb_int_update.

The value will be correctly translated independently of the endianness of the client's platform.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
integerThe value to which the integer must be set.
expiry_timeThis parameter is currently ignored.
Returns
A qdb_error_t code indicating success or failure.
See Also
qdb_int_update, qdb_int_get, qdb_int_add
QDB_API_LINKAGE qdb_error_t qdb_direct_int_update ( qdb_direct_handle_t  handle,
const char *  alias,
qdb_int_t  integer,
qdb_time_t  expiry_time 
)

Creates or updates a signed 64-bit integer.

Atomically updates an entry of the given alias to the provided value. If the entry doesn't exist, it will be created. If the entry is not an integer, the function will return qdb_e_incompatible_type.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

You can specify an expiry time or use qdb_never_expires if you don't want the entry to expire.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
integerThe value to which the integer must be set.
expiry_timeThis parameter is currently ignored.
Returns
A qdb_error_t code indicating success or failure.
See Also
qdb_int_put, qdb_int_get, qdb_int_add
QDB_API_LINKAGE qdb_error_t qdb_direct_remove ( qdb_direct_handle_t  handle,
const char *  alias 
)

Removes an entry from the local node's storage, regardless of its type.

This function bypasses the clustering mechanism and accesses the node local storage. Entries in the local node storage are not accessible via the regular API and vice versa.

The call is ACID, regardless of the type of the entry and a transaction will be created if need be.

Parameters
handleA valid handle previously initialized by qdb_direct_connect
aliasA pointer to a null-terminated UTF-8 string representing the alias of the entry.
Returns
A qdb_error_t code indicating success or failure.