18 #ifndef LIBCOUCHBASE_COUCHBASE_H
19 #define LIBCOUCHBASE_COUCHBASE_H 1
26 #define LCB_CONFIG_MCD_PORT 11210
27 #define LCB_CONFIG_MCD_SSL_PORT 11207
28 #define LCB_CONFIG_HTTP_PORT 8091
29 #define LCB_CONFIG_HTTP_SSL_PORT 18091
30 #define LCB_CONFIG_MCCOMPAT_PORT 11211
42 struct lcb_http_request_st;
43 typedef struct lcb_http_request_st *lcb_http_request_t;
49 #include <libcouchbase/sysdefs.h>
50 #include <libcouchbase/assert.h>
51 #include <libcouchbase/visibility.h>
54 #include <libcouchbase/http.h>
55 #include <libcouchbase/configuration.h>
57 #include <libcouchbase/_cxxwrap.h>
63 typedef lcb_U8 lcb_datatype_t;
64 typedef lcb_U32 lcb_USECS;
237 #ifndef __LCB_DOXYGEN__
241 typedef enum { LCB_CONFIG_TRANSPORT_LIST_END = 0, LCB_CONFIG_TRANSPORT_HTTP = 1, LCB_CONFIG_TRANSPORT_CCCP, LCB_CONFIG_TRANSPORT_MAX } lcb_config_transport_t;
242 #define LCB_CREATE_V0_FIELDS const char *host; const char *user; const char *passwd; const char *bucket; struct lcb_io_opt_st *io;
243 #define LCB_CREATE_V1_FIELDS LCB_CREATE_V0_FIELDS lcb_type_t type;
244 #define LCB_CREATE_V2_FIELDS LCB_CREATE_V1_FIELDS const char *mchosts; const lcb_config_transport_t* transports;
245 struct lcb_create_st0 { LCB_CREATE_V0_FIELDS };
246 struct lcb_create_st1 { LCB_CREATE_V1_FIELDS };
247 struct lcb_create_st2 { LCB_CREATE_V2_FIELDS };
258 struct lcb_io_opt_st *
io;
271 struct lcb_create_st0 v0;
272 struct lcb_create_st1 v1;
273 struct lcb_create_st2 v2;
427 #define LCB_CMD_BASE \
468 #define LCB_CMD_F_INTERNAL_CALLBACK (1 << 0)
486 #define LCB_CMD_SET_KEY(cmd, keybuf, keylen) \
487 LCB_KREQ_SIMPLE(&(cmd)->key, keybuf, keylen)
500 #define LCB_CMD__SETVBID(cmd, vbid) do { \
501 (cmd)->_hashkey.type = LCB_KV_VBID; \
502 (cmd)->_hashkey.contig.nbytes = vbid; \
539 #define LCB_RESP_BASE \
563 #define LCB_RESP_SERVER_FIELDS \
573 LCB_RESP_SERVER_FIELDS
642 LCB_CALLBACK_STOREDUR,
644 LCB_CALLBACK_SDMUTATE,
654 #define LCB_CALLBACK_VIEWQUERY -1
657 #define LCB_CALLBACK_N1QL -2
739 #define LCB_CMDGET_F_CLEAREXP (1<<16)
782 lcb_datatype_t datatype;
1075 #define LCB_CMD_SET_VALUE(scmd, valbuf, vallen) do { \
1076 (scmd)->value.vtype = LCB_KV_COPY; \
1077 (scmd)->value.u_buf.contig.bytes = valbuf; \
1078 (scmd)->value.u_buf.contig.nbytes = vallen; \
1097 #define LCB_CMD_SET_VALUEIOV(scmd, iovs, niovs) do { \
1098 (scmd)->value.vtype = LCB_KV_IOVCOPY; \
1099 (scmd)->value.u_buf.multi.iov = iovs; \
1100 (scmd)->value.u_buf.multi.niov = niovs; \
1266 typedef struct lcb_MULTICMD_CTX_st {
1284 lcb_error_t (*done)(
struct lcb_MULTICMD_CTX_st *ctx,
const void *cookie);
1293 void (*fail)(
struct lcb_MULTICMD_CTX_st *ctx);
1419 typedef struct lcb_durability_opts_st {
1428 #define LCB_CMDENDURE_F_MUTATION_TOKEN 1<<16
1609 lcb_datatype_t datatype;
1654 #define LCB_DURABILITY_VALIDATE_CAPMAX 1<<1
1686 lcb_U16 *persist_to, lcb_U16 *replicate_to,
int options);
1697 #define LCB_CMDOBSERVE_F_MASTER_ONLY 1<<16
1724 LCB_OBSERVE_MAX = 0x82
1856 #define LCB_MUTATION_TOKEN_ID(p) (p)->uuid_
1858 #define LCB_MUTATION_TOKEN_SEQ(p) (p)->seqno_
1860 #define LCB_MUTATION_TOKEN_VB(p) (p)->vbid_
1862 #define LCB_MUTATION_TOKEN_ISVALID(p) \
1863 (p && !((p)->uuid_ == 0 && (p)->seqno_ == 0 && (p)->vbid_ == 0))
2162 #define LCB_CMDSTATS_F_KV (1 << 16)
2170 LCB_RESP_SERVER_FIELDS
2228 LCB_RESP_SERVER_FIELDS
2246 LCB_VERBOSITY_DETAIL = 0x00,
2247 LCB_VERBOSITY_DEBUG = 0x01,
2248 LCB_VERBOSITY_INFO = 0x02,
2249 LCB_VERBOSITY_WARNING = 0x03
2366 LCB_HTTP_METHOD_GET = 0,
2367 LCB_HTTP_METHOD_POST = 1,
2368 LCB_HTTP_METHOD_PUT = 2,
2369 LCB_HTTP_METHOD_DELETE = 3,
2370 LCB_HTTP_METHOD_MAX = 4
2382 #define LCB_CMDHTTP_F_STREAM 1<<16
2389 #define LCB_CMDHTTP_F_CASTMO 1<<17
2456 lcb_http_request_t _htreq;
3007 #define LCB_DATATYPE_JSON 0x01
3010 typedef enum { LCB_VALUE_RAW = 0x00, LCB_VALUE_F_JSON = 0x01, LCB_VALUE_F_SNAPPYCOMP } lcb_VALUEFLAGS;
3056 #define LCB_GETNODE_UNAVAILABLE "invalid_host:0"
3494 #if !defined(LCB_VERSION_STRING) || defined(__LCB_DOXYGEN__)
3496 #define LCB_VERSION_STRING "unknown"
3499 #if !defined(LCB_VERSION) || defined(__LCB_DOXYGEN__)
3515 #define LCB_VERSION 0x000000
3518 #if !defined(LCB_VERSION_CHANGESET) || defined(__LCB_DOXYGEN__)
3520 #define LCB_VERSION_CHANGESET "0xdeadbeef"
3537 LIBCOUCHBASE_API LCB_EXTERN_VAR
3541 #define LCB_SUPPORTS_SSL 1
3543 #define LCB_SUPPORTS_SNAPPY 2
3580 void lcb_run_loop(
lcb_t instance);
3584 void lcb_stop_loop(
lcb_t instance);
3589 lcb_U64 lcb_nstime(
void);
3603 struct lcb_histogram_st;
3604 typedef struct lcb_histogram_st lcb_HISTOGRAM;
3613 lcb_histogram_create(
void);
3621 lcb_histogram_destroy(lcb_HISTOGRAM *hg);
3631 lcb_histogram_record(lcb_HISTOGRAM *hg, lcb_U64 duration);
3633 typedef void (*lcb_HISTOGRAM_CALLBACK)
3634 (
const void *cookie,
lcb_timeunit_t timeunit, lcb_U32 min, lcb_U32 max,
3635 lcb_U32 total, lcb_U32 maxtotal);
3646 lcb_histogram_read(
const lcb_HISTOGRAM *hg,
const void *cookie,
3647 lcb_HISTOGRAM_CALLBACK cb);
3666 #include <libcouchbase/subdoc.h>
3669 #include <libcouchbase/api-legacy.h>
Structure for performing an HTTP request.
Definition: couchbase.h:2395
const void * value
Value buffer for the item.
Definition: couchbase.h:779
void lcb_dump(lcb_t instance, FILE *fp, lcb_U32 flags)
Write a textual dump to a file.
lcb_datatype_t datatype
Do not set this value for now.
Definition: couchbase.h:1043
int lcb_supports_feature(int n)
Execute an arbitrary request against a host and port.
Definition: couchbase.h:2351
int version
Indicates which field in the lcb_CRST_u union should be used.
Definition: couchbase.h:266
Dump memory usage/reservation information about buffers.
Definition: couchbase.h:3597
lcb_MULTICMD_CTX * lcb_observe3_ctxnew(lcb_t instance)
Create a new multi context for an observe operation.
void lcb_destroy_async(lcb_t instance, const void *arg)
Asynchronously schedule the destruction of an instance.
lcb_error_t lcb_cbflush3(lcb_t instance, const void *cookie, const lcb_CMDCBFLUSH *cmd)
uncommitted
lcb_stats3()
Definition: couchbase.h:632
The item missing on the disk and the memory.
Definition: couchbase.h:1720
Handle for administrative access.
Definition: couchbase.h:234
lcb_U32 ttr
Unused.
Definition: couchbase.h:1737
LCB_INTERNAL_API void lcb_histogram_print(lcb_HISTOGRAM *hg, FILE *stream)
Print the histogram to the specified FILE.
void lcb_refresh_config(lcb_t instance)
Force the library to refetch the cluster configuration.
lcb_RESPCALLBACK lcb_install_callback3(lcb_t instance, int cbtype, lcb_RESPCALLBACK cb)
lcb_observe3_ctxnew()
Definition: couchbase.h:636
Options for lcb_endure3_ctxnew() (wrapper)
Definition: couchbase.h:1419
struct lcb_io_opt_st * io
IO Options.
Definition: couchbase.h:258
void(* lcb_bootstrap_callback)(lcb_t instance, lcb_error_t err)
Bootstrap callback.
Definition: couchbase.h:359
Time is in nanoseconds.
Definition: couchbase.h:3409
Response structure for the version command.
Definition: couchbase.h:2226
void lcb_set_cookie(lcb_t instance, const void *cookie)
Associate a cookie with an instance of lcb.
Response structure for counter operations.
Definition: couchbase.h:1971
void(* lcb_destroy_callback)(const void *cookie)
Callback received when instance is about to be destroyed.
Definition: couchbase.h:2964
lcb_timeunit_t
Time units reported by lcb_get_timings()
Definition: couchbase.h:3408
Only return a node which is connected, or a node which is known to be up.
Definition: couchbase.h:3036
Response structure for cluster statistics.
Definition: couchbase.h:2168
lcb_verbosity_level_t
level field for lcb_server_verbosity3 ()
Definition: couchbase.h:2245
Execute an N1QL Query.
Definition: couchbase.h:2354
lcb_error_t lcb_server_verbosity3(lcb_t instance, const void *cookie, const lcb_CMDVERBOSITY *cmd)
lcb_error_t lcb_unlock3(lcb_t instance, const void *cookie, const lcb_CMDUNLOCK *cmd)
Unlock a previously locked item using lcb_CMDGET::lock.
Use sequence-number based polling.
Definition: couchbase.h:1342
lcb_error_t lcb_wait(lcb_t instance)
Wait for the execution of all batched requests.
Use the preferred durability.
Definition: couchbase.h:1319
void lcb_sched_enter(lcb_t instance)
Enter a scheduling context.
const void * lcb_get_cookie(lcb_t instance)
Retrieve the cookie associated with this instance.
void lcb_sched_flush(lcb_t instance)
Request commands to be flushed to the network.
Query all the replicas sequentially, retrieving the first successful response.
Definition: couchbase.h:846
void(* lcb_timings_callback)(lcb_t instance, const void *cookie, lcb_timeunit_t timeunit, lcb_U32 min, lcb_U32 max, lcb_U32 total, lcb_U32 maxtotal)
The following function is called for each bucket in the timings histogram when you call lcb_get_timin...
Definition: couchbase.h:3458
lcb_U32 itmflags
User-defined flags for the item.
Definition: couchbase.h:783
const char * connstr
Connection string.
Definition: couchbase.h:254
Response structure for endure.
Definition: couchbase.h:1443
Response structure for lcb_observe_seqno3()
Definition: couchbase.h:1799
lcb_error_t lcb_get_bootstrap_status(lcb_t instance)
Gets the initial bootstrap status.
lcb_CMDBASE lcb_CMDTOUCH
Command structure for a touch request.
Definition: couchbase.h:2098
lcb_RESPBASE lcb_RESPREMOVE
Response structure for removal operation.
Definition: couchbase.h:1187
Default callback invoked as a fallback.
Definition: couchbase.h:625
Command structure for lcb_storedur3() This is much like lcb_CMDSTORE, but also includes durability op...
Definition: couchbase.h:1605
Time is in microseconds.
Definition: couchbase.h:3410
LCB_EXTERN_VAR const lcb_U32 lcb_version_g
Global/extern variable containing the version of the library.
Definition: couchbase.h:3538
void lcb_wait3(lcb_t instance, lcb_WAITFLAGS flags)
Wait for completion of scheduled operations.
Response structure for lcb_store3()
Definition: couchbase.h:1055
lcb_DURMODE
Type of durability polling to use.
Definition: couchbase.h:1313
lcb_U64 cur_uuid
UUID for this vBucket as known to the server.
Definition: couchbase.h:1803
Will cause the operation to fail unless the key already exists in the cluster.
Definition: couchbase.h:977
void * lcb_mem_alloc(lcb_SIZE size)
Functions to allocate and free memory related to libcouchbase.
lcb_error_t lcb_http3(lcb_t instance, const void *cookie, const lcb_CMDHTTP *cmd)
lcb_error_t lcb_touch3(lcb_t instance, const void *cookie, const lcb_CMDTOUCH *cmd)
Spool a touch request.
int lock
If set to true, the exptime field inside options will take to mean the time the lock should be held...
Definition: couchbase.h:773
lcb_http_method_t
HTTP Request method enumeration These just enumerate the various types of HTTP request methods suppor...
Definition: couchbase.h:2365
lcb_error_t lcb_counter3(lcb_t instance, const void *cookie, const lcb_CMDCOUNTER *cmd)
Schedule single counter operation.
const char * lcb_strcbtype(int cbtype)
lcb_SIZE nvalue
Length of value.
Definition: couchbase.h:780
lcb_storage_t operation
Definition: couchbase.h:1610
Base structure for informational commands from servers This contains an additional lcb_RESPSERVERBASE...
Definition: couchbase.h:571
lcb_U32 lcb_cntl_getu32(lcb_t instance, int cmd)
Retrieve an lcb_U32 setting.
lcb_U32 flags
Definition: couchbase.h:1608
The response was a result of a not-my-vbucket error.
Definition: couchbase.h:600
Common ABI header for all commands.
Definition: couchbase.h:458
Like LCB_APPEND, but prepends the new value to the existing value.
Definition: couchbase.h:1013
lcb_U8 check_delete
this flag inverts the sense of the durability check and ensures that the key does not exist...
Definition: couchbase.h:1402
This union contains the set of current and historical options.
Definition: couchbase.h:270
lcb_server_versions3()
Definition: couchbase.h:633
struct lcb_create_st3 v3
Use this field.
Definition: couchbase.h:274
Response structure for an observe command.
Definition: couchbase.h:1732
lcb_U64 value
Contains the current value after the operation was performed.
Definition: couchbase.h:1974
lcb_error_t lcb_get_timings(lcb_t instance, const void *cookie, lcb_timings_callback callback)
Get the timings histogram.
lcb_storage_t
Values for lcb_CMDSTORE::operation.
Definition: couchbase.h:966
lcb_get3()
Definition: couchbase.h:626
int index
Valid only when strategy is LCB_REPLICA_SELECT, specifies the replica index number to query...
Definition: couchbase.h:897
lcb_U16 nresponses
Total number of polls (i.e.
Definition: couchbase.h:1449
Execute a management API request.
Definition: couchbase.h:2346
Handle for data access (default)
Definition: couchbase.h:233
char replicate_to
Number of nodes to replicate to.
Definition: couchbase.h:1624
Equivalent to LCB_NODE_HTCONFIG|LCB_NODE_CONNECTED
Definition: couchbase.h:3045
Dump the raw vbucket configuration.
Definition: couchbase.h:3593
lcb_http3()
Definition: couchbase.h:639
lcb_error_t lcb_cntl_setu32(lcb_t instance, int cmd, lcb_U32 arg)
Convenience function to set a value as an lcb_U32.
int lcb_cntl_exists(int ctl)
Determine if a specific control code exists.
lcb_touch3()
Definition: couchbase.h:629
Options for lcb_endure3_ctxnew()
Definition: couchbase.h:1346
void lcb_destroy(lcb_t instance)
Destroy (and release all allocated resources) an instance of lcb.
lcb_error_t lcb_connect(lcb_t instance)
Schedule the initial connection This function will schedule the initial connection for the handle...
Get a view (CAPI) node.
Definition: couchbase.h:3034
lcb_destroy_callback lcb_set_destroy_callback(lcb_t, lcb_destroy_callback)
Set the callback to be invoked when the instance is destroyed asynchronously.
void(* lcb_RESPCALLBACK)(lcb_t instance, int cbtype, const lcb_RESPBASE *resp)
Definition: couchbase.h:670
Definition of all of the error codes used by libcouchbase.
lcb_observe_t
Possible statuses for keys in OBSERVE response.
Definition: couchbase.h:1714
lcb_VALBUF value
Definition: couchbase.h:1607
Command structure for endure.
Definition: couchbase.h:1437
Time is in milliseconds.
Definition: couchbase.h:3411
lcb_SIZE nvalue
Length of value.
Definition: couchbase.h:2172
The item found in the memory, but not yet on the disk.
Definition: couchbase.h:1716
lcb_U8 pollopts
Set the polling method to use.
Definition: couchbase.h:1414
lcb_cbflush3()
Definition: couchbase.h:640
const char * mcversion
The version string.
Definition: couchbase.h:2229
lcb_U32 interval
The durability check may involve more than a single call to observe - or more than a single packet se...
Definition: couchbase.h:1365
Structure representing a synchronization token.
Definition: couchbase.h:577
Multi Command Context API Some commands (notably, OBSERVE and its higher level equivalent, endue) are handled more efficiently at the cluster side by stuffing multiple items into a single packet.
Definition: couchbase.h:1266
lcb_int64_t delta
Delta value.
Definition: couchbase.h:1959
lcb_CMDBASE lcb_CMDUNLOCK
Command for lcb_unlock3()
Definition: couchbase.h:2045
Equivalent to LCB_NODE_HTCONFIG|LCB_NODE_NEVERNULL.
Definition: couchbase.h:3051
Will cause the operation to fail if the key already exists in the cluster.
Definition: couchbase.h:971
lcb_error_t lcb_store3(lcb_t instance, const void *cookie, const lcb_CMDSTORE *cmd)
Schedule a single storage request.
lcb_error_t lcb_durability_validate(lcb_t instance, lcb_U16 *persist_to, lcb_U16 *replicate_to, int options)
const lcb_MUTATION_TOKEN * lcb_get_mutation_token(lcb_t instance, const lcb_KEYBUF *kb, lcb_error_t *errp)
lcb_U32 timeout
Upper limit in microseconds from the scheduling of the command.
Definition: couchbase.h:1355
const lcb_RESPENDURE * dur_resp
Internal durability response structure.
Definition: couchbase.h:1633
lcb_flush3()
Definition: couchbase.h:635
lcb_U64 old_seqno
If old_uuid is nonzero, contains the highest sequence number persisted in the old_uuid snapshot...
Definition: couchbase.h:1817
The response was artificially generated inside the client.
Definition: couchbase.h:597
lcb_storage_t op
The type of operation which was performed.
Definition: couchbase.h:1059
lcb_U32 flags
Format flags used by clients to determine the underlying encoding of the value.
Definition: couchbase.h:1040
lcb_error_t lcb_observe_seqno3(lcb_t instance, const void *cookie, const lcb_CMDOBSEQNO *cmd)
Get the persistence/replication status for a given mutation token.
lcb_U64 old_uuid
In the case where the command's uuid is not the most current, this contains the last known UUID...
Definition: couchbase.h:1811
Structure for an observe request.
Definition: couchbase.h:1703
lcb_unlock3()
Definition: couchbase.h:631
lcb_U16 vbid_
Use LCB_MUTATION_TOKEN_VB()
Definition: couchbase.h:580
lcb_S32 lcb_get_num_nodes(lcb_t instance)
Get the number of the nodes in the cluster.
Query all the replicas concurrently, retrieving all the responses.
Definition: couchbase.h:849
lcb_error_t lcb_tick_nowait(lcb_t instance)
lcb_CALLBACKTYPE
The type of response passed to the callback.
Definition: couchbase.h:624
lcb_replica_t
Select get-replica mode.
Definition: couchbase.h:843
Command codes for libcouchbase.
lcb_replica_t strategy
Strategy for selecting a replica.
Definition: couchbase.h:890
const char * password
Password to authenticate with, if left empty, will use the credentials passed to lcb_create() ...
Definition: couchbase.h:2424
const char * body
If the request requires a body (e.g.
Definition: couchbase.h:2406
lcb_http_type_t type
Type of request to issue.
Definition: couchbase.h:2401
lcb_U8 exists_master
Whether this item exists in the master in its current form.
Definition: couchbase.h:1455
Command for retrieving a single item.
Definition: couchbase.h:765
lcb_rget3()
Definition: couchbase.h:637
lcb_remove3()
Definition: couchbase.h:630
Command structure for lcb_observe_seqno3().
Definition: couchbase.h:1782
Low level structures used by commands for buffers.
Command for counter operations.
Definition: couchbase.h:1954
const char * username
Username for bucket.
Definition: couchbase.h:255
lcb_U8 nreplicated
Total number of replica nodes to which this mutation has been replicated.
Definition: couchbase.h:1473
lcb_error_t lcb_server_versions3(lcb_t instance, const void *cookie, const lcb_CMDBASE *cmd)
lcb_bootstrap_callback lcb_set_bootstrap_callback(lcb_t instance, lcb_bootstrap_callback callback)
Set the callback for notification of success or failure of initial connection.
lcb_U16 replicate_to
how many nodes the key should be persisted to (excluding master).
Definition: couchbase.h:1395
lcb_counter3()
Definition: couchbase.h:628
Query the specific replica specified by the lcb_rget3_cmd_t::index field.
Definition: couchbase.h:853
Structure for HTTP responses.
Definition: couchbase.h:2439
lcb_U16 server_index
Server index to target.
Definition: couchbase.h:1788
lcb_store3()
Definition: couchbase.h:627
lcb_U64 seqno_
Use LCB_MUTATION_TOKEN_SEQ()
Definition: couchbase.h:579
lcb_U64 uuid_
Use LCB_MUTATION_TOKEN_ID()
Definition: couchbase.h:578
const char * username
Username to authenticate with, if left empty, will use the credentials passed to lcb_create() ...
Definition: couchbase.h:2420
void lcb_sched_leave(lcb_t instance)
Leave the current scheduling context, scheduling the commands within the context to be flushed to the...
lcb_U8 cap_max
If replication/persistence requirements are excessive, cap to the maximum available.
Definition: couchbase.h:1408
short htstatus
HTTP status code.
Definition: couchbase.h:2444
const char *const * headers
List of key-value headers.
Definition: couchbase.h:2448
lcb_U64 persisted_seqno
Highest persisted sequence.
Definition: couchbase.h:1804
lcb_CMDBASE lcb_CMDREMOVE
Command for removing an item from the server.
Definition: couchbase.h:1175
lcb_U8 persisted_master
True if item was persisted on the master node.
Definition: couchbase.h:1461
Get a data (memcached) node.
Definition: couchbase.h:3032
const char * value
The value, if any, for the given statistic.
Definition: couchbase.h:2171
lcb_server_verbosity3()
Definition: couchbase.h:634
int create
Boolean value.
Definition: couchbase.h:1965
const char * lcb_get_keynode(lcb_t instance, const void *key, size_t nkey)
Get the target server for a given key.
Response structure for `LCB_CALLBACK_STOREDUR.
Definition: couchbase.h:1630
lcb_U64 uuid
UUID known to client which should be queried.
Definition: couchbase.h:1790
struct lcb_st * lcb_t
Library handle representing a connection to a data bucket.
Definition: couchbase.h:41
Base response structure for callbacks.
Definition: couchbase.h:558
const char * content_type
For views, set this to application/json
Definition: couchbase.h:2416
Wrapper structure for lcb_create()
Definition: couchbase.h:264
lcb_type_t
Handle types.
Definition: couchbase.h:232
lcb_error_t
Error codes returned by the library.
Definition: error.h:506
lcb_RESPFLAGS
Response flags.
Definition: couchbase.h:588
lcb_RESPCALLBACK lcb_get_callback3(lcb_t instance, int cbtype)
lcb_U8 npersisted
Total number of nodes (including master) on which this mutation has been persisted.
Definition: couchbase.h:1467
lcb_storage_t operation
Controls how the operation is perfomed.
Definition: couchbase.h:1049
void lcb_cancel_http_request(lcb_t instance, lcb_http_request_t request)
Cancel ongoing HTTP request.
Get an HTTP configuration (Rest API) node.
Definition: couchbase.h:3030
lcb_MULTICMD_CTX * lcb_endure3_ctxnew(lcb_t instance, const lcb_durability_opts_t *options, lcb_error_t *err)
Return a new command context for scheduling endure operations.
For lcb_observe_seqno3()
Definition: couchbase.h:641
lcb_error_t lcb_stats3(lcb_t instance, const void *cookie, const lcb_CMDSTATS *cmd)
Schedule a request for statistics from the cluster.
lcb_error_t lcb_enable_timings(lcb_t instance)
Start recording timing metrics for the different operations.
Specifying this flag adds additional semantics which instruct the library to search additional resour...
Definition: couchbase.h:3042
const char * lcb_get_version(lcb_U32 *version)
Get the version of the library.
Unconditionally store the item in the cluster.
Definition: couchbase.h:980
Behave like the old lcb_wait()
Definition: couchbase.h:2685
Flag, only valid for subdoc responses, indicates that the response was processed using the single-ope...
Definition: couchbase.h:608
#define LCB_RESP_BASE
Response specific flags.
Definition: couchbase.h:539
int lcb_is_waiting(lcb_t instance)
Check if instance is blocked in the event loop.
char persist_to
Number of nodes to persist to.
Definition: couchbase.h:1617
const char * lcb_get_node(lcb_t instance, lcb_GETNODETYPE type, unsigned index)
Return a string of host:port for a node of the given type.
lcb_http_request_t * reqhandle
If non-NULL, will be assigned a handle which may be used to subsequently cancel the request...
Definition: couchbase.h:2413
lcb_error_t lcb_create(lcb_t *instance, const struct lcb_create_st *options)
Create an instance of lcb.
lcb_error_t lcb_get3(lcb_t instance, const void *cookie, const lcb_CMDGET *cmd)
Spool a single get operation.
lcb_RESPBASE lcb_RESPTOUCH
Response structure for a touch request.
Definition: couchbase.h:2102
Time is in seconds.
Definition: couchbase.h:3412
Command for requesting an item from a replica.
Definition: couchbase.h:867
void lcb_breakout(lcb_t instance)
Forcefully break from the event loop.
lcb_RESPBASE lcb_RESPUNLOCK
Response structure for an unlock command.
Definition: couchbase.h:2049
lcb_error_t lcb_flush3(lcb_t instance, const void *cookie, const lcb_CMDFLUSH *cmd)
const char * host
If set, this must be a string in the form of http://host:port.
Definition: couchbase.h:2428
lcb_U8 status
Bit set of flags.
Definition: couchbase.h:1734
lcb_error_t lcb_disable_timings(lcb_t instance)
Stop recording (and release all resources from previous measurements) timing metrics.
lcb_U64 mem_seqno
Highest known sequence.
Definition: couchbase.h:1805
void lcb_sched_fail(lcb_t instance)
Fail all commands in the current scheduling context.
const char *const * lcb_get_server_list(lcb_t instance)
Get a list of nodes in the cluster.
Dump information about each packet.
Definition: couchbase.h:3595
lcb_DUMPFLAGS
Definition: couchbase.h:3591
lcb_U16 vbid
vBucket ID to query
Definition: couchbase.h:1789
No more responses are to be received for this request.
Definition: couchbase.h:590
const void * body
If LCB_CMDHTTP_F_STREAM is true, contains the current chunk of response content.
Definition: couchbase.h:2452
lcb_GETNODETYPE
Type of node to retrieve for the lcb_get_node() function.
Definition: couchbase.h:3028
lcb_error_t lcb_cntl_string(lcb_t instance, const char *key, const char *value)
Alternate way to set configuration settings by passing a string key and value.
Rather than setting the contents of the entire document, take the value specified in lcb_CMDSTORE::va...
Definition: couchbase.h:1008
Execute a request against the bucket.
Definition: couchbase.h:2338
Do not check pending operations before running the event loop.
Definition: couchbase.h:2694
lcb_U64 initial
If the item does not exist on the server (and create is true) then this will be the initial value for...
Definition: couchbase.h:1962
int store_ok
If the rc field is not LCB_SUCCESS, this field indicates what failed.
Definition: couchbase.h:1639
lcb_VALBUF value
Value to store on the server.
Definition: couchbase.h:1033
Command for storing an item to the server.
Definition: couchbase.h:1026
lcb_SIZE nversion
Length of the version string.
Definition: couchbase.h:2230
Dump everything.
Definition: couchbase.h:3599
lcb_http_method_t method
HTTP Method to use.
Definition: couchbase.h:2402
The response has additional internal data.
Definition: couchbase.h:604
lcb_WAITFLAGS
Flags for lcb_wait3()
Definition: couchbase.h:2683
lcb_error_t lcb_storedur3(lcb_t instance, const void *cookie, const lcb_CMDSTOREDUR *cmd)
lcb_endure3_ctxnew()
Definition: couchbase.h:638
Common request header for all keys.
Definition: kvbuf.h:61
lcb_U8 ismaster
Set to true if this response came from the master node.
Definition: couchbase.h:1735
lcb_error_t lcb_cntl(lcb_t instance, int mode, int cmd, void *arg)
This function exposes an ioctl/fcntl-like interface to read and write various configuration propertie...
Response structure when retrieving a single item.
Definition: couchbase.h:777
lcb_CMDBASE lcb_CMDSTATS
Command structure for stats request The lcb_CMDSTATS::key field should contain the statistics key...
Definition: couchbase.h:2155
Public I/O integration interface.
lcb_SIZE nbody
Length of the body for the request.
Definition: couchbase.h:2409
lcb_U16 persist_to
how many nodes the key should be persisted to (including master).
Definition: couchbase.h:1380
lcb_http_type_t
The type of HTTP request to execute.
Definition: couchbase.h:2333
The item hit the disk.
Definition: couchbase.h:1718
lcb_S32 lcb_get_num_replicas(lcb_t instance)
Get the number of the replicas in the cluster.
Explicitly request CAS-based durability.
Definition: couchbase.h:1333
Innser structure for lcb_create().
Definition: couchbase.h:253
Structure representing a value to be stored.
Definition: kvbuf.h:110
const char * passwd
Password for bucket.
Definition: couchbase.h:256
No knowledge of the key :)
Definition: couchbase.h:1722
void lcb_mem_free(void *ptr)
Use this to free memory allocated with lcb_mem_alloc.
Definition: couchbase.h:643
lcb_error_t lcb_rget3(lcb_t instance, const void *cookie, const lcb_CMDGETREPLICA *cmd)
Spool a single get-with-replica request.
const lcb_MUTATION_TOKEN * lcb_resp_get_mutation_token(int cbtype, const lcb_RESPBASE *rb)
Retrieves the mutation token from the response structure.
lcb_U32 ttp
Unused.
Definition: couchbase.h:1736
lcb_error_t lcb_remove3(lcb_t instance, const void *cookie, const lcb_CMDREMOVE *cmd)
Spool a removal of an item.
const lcb_U16 * servers_
For internal use: This determines the servers the command should be routed to.
Definition: couchbase.h:1707