18#ifndef LIBCOUCHBASE_COUCHBASE_H
19#define LIBCOUCHBASE_COUCHBASE_H 1
36typedef struct lcb_HTTP_HANDLE_ lcb_HTTP_HANDLE;
42#include <libcouchbase/sysdefs.h>
43#include <libcouchbase/assert.h>
44#include <libcouchbase/visibility.h>
47#include <libcouchbase/configuration.h>
50#include <libcouchbase/metrics.h>
51#include <libcouchbase/tracing.h>
52#include <libcouchbase/logger.h>
248 LCB_CONFIG_TRANSPORT_LIST_END = 0,
249 LCB_CONFIG_TRANSPORT_HTTP = 1,
250 LCB_CONFIG_TRANSPORT_CCCP,
251 LCB_CONFIG_TRANSPORT_MAX
252} lcb_BOOTSTRAP_TRANSPORT;
260typedef struct lcb_CREATEOPTS_ lcb_CREATEOPTS;
263LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_destroy(lcb_CREATEOPTS *options);
264LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_connstr(lcb_CREATEOPTS *options,
const char *connstr,
size_t connstr_len);
265LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_bucket(lcb_CREATEOPTS *options,
const char *bucket,
size_t bucket_len);
266LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_logger(lcb_CREATEOPTS *options,
const lcb_LOGGER *logger);
267LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_credentials(lcb_CREATEOPTS *options,
const char *username,
268 size_t username_len,
const char *password,
size_t password_len);
270LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_io(lcb_CREATEOPTS *options,
struct lcb_io_opt_st *io);
271LIBCOUCHBASE_API
lcb_STATUS lcb_createopts_meter(lcb_CREATEOPTS *options,
const lcbmetrics_METER *metrics);
419LIBCOUCHBASE_API
int lcb_mutation_token_is_valid(
const lcb_MUTATION_TOKEN *token);
486 LCB_CALLBACK_STOREDUR,
488 LCB_CALLBACK_SDMUTATE,
504#define LCB_CALLBACK_VIEWQUERY -1
507#define LCB_CALLBACK_QUERY -2
510#define LCB_CALLBACK_IXMGMT -3
513#define LCB_CALLBACK_ANALYTICS -4
516#define LCB_CALLBACK_SEARCH -5
518#define LCB_CALLBACK_OPEN -6
525 LCB_DURABILITYLEVEL_NONE = 0x00,
543typedef void lcb_CMDBASE;
544typedef void lcb_RESPBASE;
690LIBCOUCHBASE_API
lcb_STATUS lcb_respget_error_context(
const lcb_RESPGET *resp,
const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
695LIBCOUCHBASE_API
lcb_STATUS lcb_respget_key(
const lcb_RESPGET *resp,
const char **key,
size_t *key_len);
696LIBCOUCHBASE_API
lcb_STATUS lcb_respget_value(
const lcb_RESPGET *resp,
const char **value,
size_t *value_len);
698typedef struct lcb_CMDGET_ lcb_CMDGET;
700LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_create(lcb_CMDGET **cmd);
701LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_destroy(lcb_CMDGET *cmd);
702LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_parent_span(lcb_CMDGET *cmd, lcbtrace_SPAN *span);
703LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_collection(lcb_CMDGET *cmd,
const char *scope,
size_t scope_len,
704 const char *collection,
size_t collection_len);
705LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_key(lcb_CMDGET *cmd,
const char *key,
size_t key_len);
706LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_expiry(lcb_CMDGET *cmd, uint32_t expiration);
707LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_locktime(lcb_CMDGET *cmd, uint32_t duration);
708LIBCOUCHBASE_API
lcb_STATUS lcb_cmdget_timeout(lcb_CMDGET *cmd, uint32_t timeout);
717 size_t privilege_len);
788 LCB_REPLICA_MODE_ANY = 0x00,
789 LCB_REPLICA_MODE_ALL = 0x01,
790 LCB_REPLICA_MODE_IDX0 = 0x02,
791 LCB_REPLICA_MODE_IDX1 = 0x03,
792 LCB_REPLICA_MODE_IDX2 = 0x04,
793 LCB_REPLICA_MODE__MAX
796typedef struct lcb_RESPGETREPLICA_ lcb_RESPGETREPLICA;
798LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_status(
const lcb_RESPGETREPLICA *resp);
799LIBCOUCHBASE_API
int lcb_respgetreplica_is_active(
const lcb_RESPGETREPLICA *resp);
800LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_error_context(
const lcb_RESPGETREPLICA *resp,
801 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
802LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_cookie(
const lcb_RESPGETREPLICA *resp,
void **cookie);
803LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_cas(
const lcb_RESPGETREPLICA *resp, uint64_t *cas);
804LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_datatype(
const lcb_RESPGETREPLICA *resp, uint8_t *datatype);
805LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_flags(
const lcb_RESPGETREPLICA *resp, uint32_t *flags);
806LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_key(
const lcb_RESPGETREPLICA *resp,
const char **key,
size_t *key_len);
807LIBCOUCHBASE_API
lcb_STATUS lcb_respgetreplica_value(
const lcb_RESPGETREPLICA *resp,
const char **value,
809LIBCOUCHBASE_API
int lcb_respgetreplica_is_final(
const lcb_RESPGETREPLICA *resp);
811typedef struct lcb_CMDGETREPLICA_ lcb_CMDGETREPLICA;
814LIBCOUCHBASE_API
lcb_STATUS lcb_cmdgetreplica_destroy(lcb_CMDGETREPLICA *cmd);
815LIBCOUCHBASE_API
lcb_STATUS lcb_cmdgetreplica_parent_span(lcb_CMDGETREPLICA *cmd, lcbtrace_SPAN *span);
816LIBCOUCHBASE_API
lcb_STATUS lcb_cmdgetreplica_collection(lcb_CMDGETREPLICA *cmd,
const char *scope,
size_t scope_len,
817 const char *collection,
size_t collection_len);
818LIBCOUCHBASE_API
lcb_STATUS lcb_cmdgetreplica_key(lcb_CMDGETREPLICA *cmd,
const char *key,
size_t key_len);
819LIBCOUCHBASE_API
lcb_STATUS lcb_cmdgetreplica_timeout(lcb_CMDGETREPLICA *cmd, uint32_t timeout);
828 const char *privilege,
size_t privilege_len);
829LIBCOUCHBASE_API
lcb_STATUS lcb_getreplica(
lcb_INSTANCE *instance,
void *cookie,
const lcb_CMDGETREPLICA *cmd);
833typedef struct lcb_RESPEXISTS_ lcb_RESPEXISTS;
835LIBCOUCHBASE_API
lcb_STATUS lcb_respexists_status(
const lcb_RESPEXISTS *resp);
836LIBCOUCHBASE_API
int lcb_respexists_is_found(
const lcb_RESPEXISTS *resp);
837LIBCOUCHBASE_API
lcb_STATUS lcb_respexists_error_context(
const lcb_RESPEXISTS *resp,
838 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
839LIBCOUCHBASE_API
lcb_STATUS lcb_respexists_cookie(
const lcb_RESPEXISTS *resp,
void **cookie);
840LIBCOUCHBASE_API
lcb_STATUS lcb_respexists_cas(
const lcb_RESPEXISTS *resp, uint64_t *cas);
841LIBCOUCHBASE_API
lcb_STATUS lcb_respexists_key(
const lcb_RESPEXISTS *resp,
const char **key,
size_t *key_len);
843typedef struct lcb_CMDEXISTS_ lcb_CMDEXISTS;
845LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_create(lcb_CMDEXISTS **cmd);
846LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_destroy(lcb_CMDEXISTS *cmd);
847LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_parent_span(lcb_CMDEXISTS *cmd, lcbtrace_SPAN *span);
848LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_collection(lcb_CMDEXISTS *cmd,
const char *scope,
size_t scope_len,
849 const char *collection,
size_t collection_len);
850LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_key(lcb_CMDEXISTS *cmd,
const char *key,
size_t key_len);
851LIBCOUCHBASE_API
lcb_STATUS lcb_cmdexists_timeout(lcb_CMDEXISTS *cmd, uint32_t timeout);
860 size_t privilege_len);
975 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
982LIBCOUCHBASE_API
int lcb_respstore_observe_attached(
const lcb_RESPSTORE *resp);
985LIBCOUCHBASE_API
lcb_STATUS lcb_respstore_observe_master_persisted(
const lcb_RESPSTORE *resp,
int *master_persisted);
986LIBCOUCHBASE_API
lcb_STATUS lcb_respstore_observe_num_responses(
const lcb_RESPSTORE *resp, uint16_t *num_responses);
987LIBCOUCHBASE_API
lcb_STATUS lcb_respstore_observe_num_persisted(
const lcb_RESPSTORE *resp, uint16_t *num_persisted);
988LIBCOUCHBASE_API
lcb_STATUS lcb_respstore_observe_num_replicated(
const lcb_RESPSTORE *resp, uint16_t *num_replicated);
990typedef struct lcb_CMDSTORE_ lcb_CMDSTORE;
993LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_destroy(lcb_CMDSTORE *cmd);
994LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_parent_span(lcb_CMDSTORE *cmd, lcbtrace_SPAN *span);
995LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_collection(lcb_CMDSTORE *cmd,
const char *scope,
size_t scope_len,
996 const char *collection,
size_t collection_len);
997LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_key(lcb_CMDSTORE *cmd,
const char *key,
size_t key_len);
998LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_value(lcb_CMDSTORE *cmd,
const char *value,
size_t value_len);
999LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_value_iov(lcb_CMDSTORE *cmd,
const lcb_IOV *value,
size_t value_len);
1000LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_expiry(lcb_CMDSTORE *cmd, uint32_t expiration);
1001LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_preserve_expiry(lcb_CMDSTORE *cmd,
int should_preserve);
1002LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_cas(lcb_CMDSTORE *cmd, uint64_t cas);
1003LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_flags(lcb_CMDSTORE *cmd, uint32_t flags);
1004LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_datatype(lcb_CMDSTORE *cmd, uint8_t datatype);
1006LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_durability_observe(lcb_CMDSTORE *cmd,
int persist_to,
int replicate_to);
1007LIBCOUCHBASE_API
lcb_STATUS lcb_cmdstore_timeout(lcb_CMDSTORE *cmd, uint32_t timeout);
1016 size_t privilege_len);
1105 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
1111typedef struct lcb_CMDREMOVE_ lcb_CMDREMOVE;
1113LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_create(lcb_CMDREMOVE **cmd);
1114LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_destroy(lcb_CMDREMOVE *cmd);
1115LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_parent_span(lcb_CMDREMOVE *cmd, lcbtrace_SPAN *span);
1116LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_collection(lcb_CMDREMOVE *cmd,
const char *scope,
size_t scope_len,
1117 const char *collection,
size_t collection_len);
1118LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_key(lcb_CMDREMOVE *cmd,
const char *key,
size_t key_len);
1119LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_cas(lcb_CMDREMOVE *cmd, uint64_t cas);
1121LIBCOUCHBASE_API
lcb_STATUS lcb_cmdremove_timeout(lcb_CMDREMOVE *cmd, uint32_t timeout);
1130 size_t privilege_len);
1198 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
1205typedef struct lcb_CMDCOUNTER_ lcb_CMDCOUNTER;
1207LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_create(lcb_CMDCOUNTER **cmd);
1208LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_destroy(lcb_CMDCOUNTER *cmd);
1209LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_parent_span(lcb_CMDCOUNTER *cmd, lcbtrace_SPAN *span);
1210LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_collection(lcb_CMDCOUNTER *cmd,
const char *scope,
size_t scope_len,
1211 const char *collection,
size_t collection_len);
1212LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_key(lcb_CMDCOUNTER *cmd,
const char *key,
size_t key_len);
1213LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_expiry(lcb_CMDCOUNTER *cmd, uint32_t expiration);
1214LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_delta(lcb_CMDCOUNTER *cmd, int64_t number);
1215LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_initial(lcb_CMDCOUNTER *cmd, uint64_t number);
1217LCB_DEPRECATED2(LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_cas(lcb_CMDCOUNTER *cmd, uint64_t cas),
1218 "CAS is not applicable to arithmetic operations");
1219LIBCOUCHBASE_API
lcb_STATUS lcb_cmdcounter_timeout(lcb_CMDCOUNTER *cmd, uint32_t timeout);
1228 size_t privilege_len);
1291 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
1296typedef struct lcb_CMDUNLOCK_ lcb_CMDUNLOCK;
1298LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_create(lcb_CMDUNLOCK **cmd);
1299LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_destroy(lcb_CMDUNLOCK *cmd);
1300LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_parent_span(lcb_CMDUNLOCK *cmd, lcbtrace_SPAN *span);
1301LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_collection(lcb_CMDUNLOCK *cmd,
const char *scope,
size_t scope_len,
1302 const char *collection,
size_t collection_len);
1303LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_key(lcb_CMDUNLOCK *cmd,
const char *key,
size_t key_len);
1304LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_cas(lcb_CMDUNLOCK *cmd, uint64_t cas);
1305LIBCOUCHBASE_API
lcb_STATUS lcb_cmdunlock_timeout(lcb_CMDUNLOCK *cmd, uint32_t timeout);
1314 size_t privilege_len);
1365 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
1369LIBCOUCHBASE_API
lcb_STATUS lcb_resptouch_mutation_token(
const lcb_RESPTOUCH *resp, lcb_MUTATION_TOKEN *token);
1371typedef struct lcb_CMDTOUCH_ lcb_CMDTOUCH;
1373LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_create(lcb_CMDTOUCH **cmd);
1374LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_destroy(lcb_CMDTOUCH *cmd);
1375LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_parent_span(lcb_CMDTOUCH *cmd, lcbtrace_SPAN *span);
1376LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_collection(lcb_CMDTOUCH *cmd,
const char *scope,
size_t scope_len,
1377 const char *collection,
size_t collection_len);
1378LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_key(lcb_CMDTOUCH *cmd,
const char *key,
size_t key_len);
1379LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_expiry(lcb_CMDTOUCH *cmd, uint32_t expiration);
1381LIBCOUCHBASE_API
lcb_STATUS lcb_cmdtouch_timeout(lcb_CMDTOUCH *cmd, uint32_t timeout);
1390 size_t privilege_len);
1411 LCB_PING_STATUS_OK = 0,
1412 LCB_PING_STATUS_TIMEOUT,
1413 LCB_PING_STATUS_ERROR,
1414 LCB_PING_STATUS_INVALID,
1415 LCB_PING_STATUS__MAX
1424 LCB_PING_SERVICE_KV = 0,
1425 LCB_PING_SERVICE_VIEWS,
1426 LCB_PING_SERVICE_QUERY,
1427 LCB_PING_SERVICE_SEARCH,
1428 LCB_PING_SERVICE_ANALYTICS,
1429 LCB_PING_SERVICE__MAX
1432typedef struct lcb_RESPPING_ lcb_RESPPING;
1434LIBCOUCHBASE_API
lcb_STATUS lcb_respping_status(
const lcb_RESPPING *resp);
1435LIBCOUCHBASE_API
lcb_STATUS lcb_respping_cookie(
const lcb_RESPPING *resp,
void **cookie);
1436LIBCOUCHBASE_API
lcb_STATUS lcb_respping_value(
const lcb_RESPPING *resp,
const char **json,
size_t *json_len);
1437LIBCOUCHBASE_API
lcb_STATUS lcb_respping_report_id(
const lcb_RESPPING *resp,
const char **report_id,
1438 size_t *report_id_len);
1439LIBCOUCHBASE_API
size_t lcb_respping_result_size(
const lcb_RESPPING *resp);
1440LIBCOUCHBASE_API
lcb_PING_STATUS lcb_respping_result_status(
const lcb_RESPPING *resp,
size_t index);
1441LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_id(
const lcb_RESPPING *resp,
size_t index,
const char **endpoint_id,
1442 size_t *endpoint_id_len);
1444LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_remote(
const lcb_RESPPING *resp,
size_t index,
const char **address,
1445 size_t *address_len);
1446LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_local(
const lcb_RESPPING *resp,
size_t index,
const char **address,
1447 size_t *address_len);
1448LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_latency(
const lcb_RESPPING *resp,
size_t index, uint64_t *latency);
1450LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_namespace(
const lcb_RESPPING *resp,
size_t index,
const char **name,
1453LCB_DEPRECATED2(LIBCOUCHBASE_API
lcb_STATUS lcb_respping_result_scope(
const lcb_RESPPING *resp,
size_t index,
1454 const char **name,
size_t *name_len),
1455 "Use lcb_respping_result_namespace");
1457typedef struct lcb_CMDPING_ lcb_CMDPING;
1459LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_create(lcb_CMDPING **cmd);
1460LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_destroy(lcb_CMDPING *cmd);
1461LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_parent_span(lcb_CMDPING *cmd, lcbtrace_SPAN *span);
1462LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_report_id(lcb_CMDPING *cmd,
const char *report_id,
size_t report_id_len);
1463LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_all(lcb_CMDPING *cmd);
1464LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_kv(lcb_CMDPING *cmd,
int enable);
1465LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_query(lcb_CMDPING *cmd,
int enable);
1466LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_views(lcb_CMDPING *cmd,
int enable);
1467LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_search(lcb_CMDPING *cmd,
int enable);
1468LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_analytics(lcb_CMDPING *cmd,
int enable);
1469LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_no_metrics(lcb_CMDPING *cmd,
int enable);
1470LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_encode_json(lcb_CMDPING *cmd,
int enable,
int pretty,
int with_details);
1471LIBCOUCHBASE_API
lcb_STATUS lcb_cmdping_timeout(lcb_CMDPING *cmd, uint32_t timeout);
1474typedef struct lcb_RESPDIAG_ lcb_RESPDIAG;
1476LIBCOUCHBASE_API
lcb_STATUS lcb_respdiag_status(
const lcb_RESPDIAG *resp);
1477LIBCOUCHBASE_API
lcb_STATUS lcb_respdiag_cookie(
const lcb_RESPDIAG *resp,
void **cookie);
1478LIBCOUCHBASE_API
lcb_STATUS lcb_respdiag_value(
const lcb_RESPDIAG *resp,
const char **json,
size_t *json_len);
1480typedef struct lcb_CMDDIAG_ lcb_CMDDIAG;
1482LIBCOUCHBASE_API
lcb_STATUS lcb_cmddiag_create(lcb_CMDDIAG **cmd);
1483LIBCOUCHBASE_API
lcb_STATUS lcb_cmddiag_destroy(lcb_CMDDIAG *cmd);
1484LIBCOUCHBASE_API
lcb_STATUS lcb_cmddiag_report_id(lcb_CMDDIAG *cmd,
const char *report_id,
size_t report_id_len);
1485LIBCOUCHBASE_API
lcb_STATUS lcb_cmddiag_prettify(lcb_CMDDIAG *cmd,
int enable);
1579 LCB_HTTP_TYPE_EVENTING = 7,
1591 LCB_HTTP_METHOD_GET = 0,
1592 LCB_HTTP_METHOD_POST = 1,
1593 LCB_HTTP_METHOD_PUT = 2,
1594 LCB_HTTP_METHOD_DELETE = 3,
1595 LCB_HTTP_METHOD_MAX = 4
1672LIBCOUCHBASE_API
lcb_STATUS lcb_resphttp_path(
const lcb_RESPHTTP *resp,
const char **path,
size_t *path_len);
1673LIBCOUCHBASE_API
lcb_STATUS lcb_resphttp_body(
const lcb_RESPHTTP *resp,
const char **body,
size_t *body_len);
1675LIBCOUCHBASE_API
lcb_STATUS lcb_resphttp_error_context(
const lcb_RESPHTTP *resp,
const lcb_HTTP_ERROR_CONTEXT **ctx);
1677LIBCOUCHBASE_API
int lcb_resphttp_is_final(
const lcb_RESPHTTP *resp);
1684typedef struct lcb_CMDHTTP_ lcb_CMDHTTP;
1687LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_destroy(lcb_CMDHTTP *cmd);
1688LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_parent_span(lcb_CMDHTTP *cmd, lcbtrace_SPAN *span);
1690LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_path(lcb_CMDHTTP *cmd,
const char *path,
size_t path_len);
1691LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_content_type(lcb_CMDHTTP *cmd,
const char *content_type,
1692 size_t content_type_len);
1693LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_body(lcb_CMDHTTP *cmd,
const char *body,
size_t body_len);
1694LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_handle(lcb_CMDHTTP *cmd, lcb_HTTP_HANDLE **handle);
1695LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_username(lcb_CMDHTTP *cmd,
const char *username,
size_t username_len);
1696LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_password(lcb_CMDHTTP *cmd,
const char *password,
size_t password_len);
1697LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_host(lcb_CMDHTTP *cmd,
const char *host,
size_t host_len);
1698LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_streaming(lcb_CMDHTTP *cmd,
int streaming);
1699LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_skip_auth_header(lcb_CMDHTTP *cmd,
int skip_auth);
1700LIBCOUCHBASE_API
lcb_STATUS lcb_cmdhttp_timeout(lcb_CMDHTTP *cmd, uint32_t timeout);
2109#define LCB_DATATYPE_JSON 0x01
2112typedef enum { LCB_VALUE_RAW = 0x00, LCB_VALUE_F_JSON = 0x01, LCB_VALUE_F_SNAPPYCOMP = 0x02 }
lcb_VALUEFLAGS;
2348#if !defined(LCB_VERSION_STRING) || defined(__LCB_DOXYGEN__)
2350#define LCB_VERSION_STRING "unknown"
2353#if !defined(LCB_VERSION) || defined(__LCB_DOXYGEN__)
2369#define LCB_VERSION 0x000000
2372#if !defined(LCB_VERSION_CHANGESET) || defined(__LCB_DOXYGEN__)
2374#define LCB_VERSION_CHANGESET "0xdeadbeef"
2394#define LCB_SUPPORTS_SSL 1
2396#define LCB_SUPPORTS_SNAPPY 2
2398#define LCB_SUPPORTS_TRACING 3
2436typedef struct lcb_ANALYTICS_HANDLE_ lcb_ANALYTICS_HANDLE;
2437typedef struct lcb_DEFERRED_HANDLE_ lcb_DEFERRED_HANDLE;
2467 const lcb_ANALYTICS_ERROR_CONTEXT **ctx);
2470 lcb_DEFERRED_HANDLE **handle);
2471LIBCOUCHBASE_API
lcb_STATUS lcb_deferred_handle_destroy(lcb_DEFERRED_HANDLE *handle);
2472LIBCOUCHBASE_API
lcb_STATUS lcb_deferred_handle_status(lcb_DEFERRED_HANDLE *handle,
const char **status,
2473 size_t *status_len);
2475LIBCOUCHBASE_API
lcb_STATUS lcb_deferred_handle_poll(
lcb_INSTANCE *instance,
void *cookie, lcb_DEFERRED_HANDLE *handle);
2477typedef struct lcb_CMDANALYTICS_ lcb_CMDANALYTICS;
2479typedef struct lcb_INGEST_OPTIONS_ lcb_INGEST_OPTIONS;
2481 LCB_INGEST_METHOD_NONE = 0,
2482 LCB_INGEST_METHOD_UPSERT,
2483 LCB_INGEST_METHOD_INSERT,
2484 LCB_INGEST_METHOD_REPLACE,
2485 LCB_INGEST_METHOD__MAX
2502typedef enum { LCB_INGEST_STATUS_OK = 0, LCB_INGEST_STATUS_IGNORE, LCB_INGEST_STATUS__MAX } lcb_INGEST_STATUS;
2504typedef struct lcb_INGEST_PARAM_ lcb_INGEST_PARAM;
2506typedef lcb_INGEST_STATUS (*lcb_INGEST_DATACONVERTER_CALLBACK)(
lcb_INSTANCE *instance, lcb_INGEST_PARAM *param);
2508LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_create(lcb_INGEST_OPTIONS **options);
2509LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_destroy(lcb_INGEST_OPTIONS *options);
2510LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_method(lcb_INGEST_OPTIONS *options, lcb_INGEST_METHOD method);
2511LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_expiry(lcb_INGEST_OPTIONS *options, uint32_t expiration);
2512LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_ignore_error(lcb_INGEST_OPTIONS *options,
int flag);
2513LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_options_data_converter(lcb_INGEST_OPTIONS *options,
2514 lcb_INGEST_DATACONVERTER_CALLBACK callback);
2516LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_dataconverter_param_cookie(lcb_INGEST_PARAM *param,
void **cookie);
2517LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_dataconverter_param_row(lcb_INGEST_PARAM *param,
const char **row,
2519LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_dataconverter_param_method(lcb_INGEST_PARAM *param, lcb_INGEST_METHOD *method);
2520LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_dataconverter_param_set_id(lcb_INGEST_PARAM *param,
const char *
id,
2521 size_t id_len,
void (*id_dtor)(
const char *));
2522LIBCOUCHBASE_API
lcb_STATUS lcb_ingest_dataconverter_param_set_out(lcb_INGEST_PARAM *param,
const char *out,
2523 size_t out_len,
void (*out_dtor)(
const char *));
2525LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_create(lcb_CMDANALYTICS **cmd);
2526LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_destroy(lcb_CMDANALYTICS *cmd);
2527LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_reset(lcb_CMDANALYTICS *cmd);
2559LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_encoded_payload(lcb_CMDANALYTICS *cmd,
const char **query,
2561LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_payload(lcb_CMDANALYTICS *cmd,
const char *query,
size_t query_len);
2562LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_statement(lcb_CMDANALYTICS *cmd,
const char *statement,
2563 size_t statement_len);
2564LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_named_param(lcb_CMDANALYTICS *cmd,
const char *name,
size_t name_len,
2565 const char *value,
size_t value_len);
2584LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_ingest_options(lcb_CMDANALYTICS *cmd, lcb_INGEST_OPTIONS *options);
2585LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_deferred(lcb_CMDANALYTICS *cmd,
int deferred);
2586LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_client_context_id(lcb_CMDANALYTICS *cmd,
const char *value,
2588LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_readonly(lcb_CMDANALYTICS *cmd,
int readonly);
2589LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_priority(lcb_CMDANALYTICS *cmd,
int priority);
2591LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_option(lcb_CMDANALYTICS *cmd,
const char *name,
size_t name_len,
2592 const char *value,
size_t value_len);
2614 size_t qualifier_len);
2623LIBCOUCHBASE_API
lcb_STATUS lcb_cmdanalytics_timeout(lcb_CMDANALYTICS *cmd, uint32_t timeout);
2688typedef struct lcb_SEARCH_HANDLE_ lcb_SEARCH_HANDLE;
2689typedef struct lcb_RESPSEARCH_ lcb_RESPSEARCH;
2691LIBCOUCHBASE_API
lcb_STATUS lcb_respsearch_status(
const lcb_RESPSEARCH *resp);
2692LIBCOUCHBASE_API
lcb_STATUS lcb_respsearch_cookie(
const lcb_RESPSEARCH *resp,
void **cookie);
2693LIBCOUCHBASE_API
lcb_STATUS lcb_respsearch_row(
const lcb_RESPSEARCH *resp,
const char **row,
size_t *row_len);
2694LIBCOUCHBASE_API
lcb_STATUS lcb_respsearch_http_response(
const lcb_RESPSEARCH *resp,
const lcb_RESPHTTP **http);
2703LIBCOUCHBASE_API
lcb_STATUS lcb_respsearch_error_context(
const lcb_RESPSEARCH *resp,
2704 const lcb_SEARCH_ERROR_CONTEXT **ctx);
2705LIBCOUCHBASE_API
int lcb_respsearch_is_final(
const lcb_RESPSEARCH *resp);
2707typedef struct lcb_CMDSEARCH_ lcb_CMDSEARCH;
2708typedef void (*lcb_SEARCH_CALLBACK)(
lcb_INSTANCE *, int,
const lcb_RESPSEARCH *);
2710LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsearch_create(lcb_CMDSEARCH **cmd);
2711LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsearch_destroy(lcb_CMDSEARCH *cmd);
2745LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsearch_callback(lcb_CMDSEARCH *cmd, lcb_SEARCH_CALLBACK callback);
2746LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsearch_payload(lcb_CMDSEARCH *cmd,
const char *payload,
size_t payload_len);
2754LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsearch_timeout(lcb_CMDSEARCH *cmd, uint32_t timeout);
2876 LCB_QUERY_PROFILE_OFF = 0,
2877 LCB_QUERY_PROFILE_PHASES = 1,
2878 LCB_QUERY_PROFILE_TIMINGS = 2
2886LIBCOUCHBASE_API
lcb_STATUS lcb_respquery_error_context(
const lcb_RESPQUERY *resp,
const lcb_QUERY_ERROR_CONTEXT **ctx);
2887LIBCOUCHBASE_API
int lcb_respquery_is_final(
const lcb_RESPQUERY *resp);
2989 size_t qualifier_len);
2999 const char *value,
size_t value_len);
3017LIBCOUCHBASE_API
lcb_STATUS lcb_cmdquery_client_context_id(
lcb_CMDQUERY *cmd,
const char *value,
size_t value_len);
3098 size_t keyspace_len,
3099 const lcb_MUTATION_TOKEN *token);
3183typedef struct lcb_RESPVIEW_ lcb_RESPVIEW;
3184typedef struct lcb_CMDVIEW_ lcb_CMDVIEW;
3204LIBCOUCHBASE_API
lcb_STATUS lcb_respview_status(
const lcb_RESPVIEW *resp);
3205LIBCOUCHBASE_API
lcb_STATUS lcb_respview_cookie(
const lcb_RESPVIEW *resp,
void **cookie);
3206LIBCOUCHBASE_API
lcb_STATUS lcb_respview_key(
const lcb_RESPVIEW *resp,
const char **key,
size_t *key_len);
3207LIBCOUCHBASE_API
lcb_STATUS lcb_respview_doc_id(
const lcb_RESPVIEW *resp,
const char **doc_id,
size_t *doc_id_len);
3208LIBCOUCHBASE_API
lcb_STATUS lcb_respview_row(
const lcb_RESPVIEW *resp,
const char **row,
size_t *row_len);
3209LIBCOUCHBASE_API
lcb_STATUS lcb_respview_document(
const lcb_RESPVIEW *resp,
const lcb_RESPGET **doc);
3210LIBCOUCHBASE_API
lcb_STATUS lcb_respview_http_response(
const lcb_RESPVIEW *resp,
const lcb_RESPHTTP **http);
3212LIBCOUCHBASE_API
lcb_STATUS lcb_respview_error_context(
const lcb_RESPVIEW *resp,
const lcb_VIEW_ERROR_CONTEXT **ctx);
3213LIBCOUCHBASE_API
int lcb_respview_is_final(
const lcb_RESPVIEW *resp);
3215LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_create(lcb_CMDVIEW **cmd);
3216LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_destroy(lcb_CMDVIEW *cmd);
3217LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_parent_span(lcb_CMDVIEW *cmd, lcbtrace_SPAN *span);
3219LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_design_document(lcb_CMDVIEW *cmd,
const char *ddoc,
size_t ddoc_len);
3220LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_view_name(lcb_CMDVIEW *cmd,
const char *view,
size_t view_len);
3221LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_option_string(lcb_CMDVIEW *cmd,
const char *optstr,
size_t optstr_len);
3222LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_post_data(lcb_CMDVIEW *cmd,
const char *data,
size_t data_len);
3223LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_include_docs(lcb_CMDVIEW *cmd,
int include_docs);
3224LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_max_concurrent_docs(lcb_CMDVIEW *cmd, uint32_t num);
3225LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_no_row_parse(lcb_CMDVIEW *cmd,
int flag);
3227LIBCOUCHBASE_API
lcb_STATUS lcb_cmdview_timeout(lcb_CMDVIEW *cmd, uint32_t timeout);
3243typedef struct lcb_RESPSUBDOC_ lcb_RESPSUBDOC;
3245LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_status(
const lcb_RESPSUBDOC *resp);
3246LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_error_context(
const lcb_RESPSUBDOC *resp,
3247 const lcb_KEY_VALUE_ERROR_CONTEXT **ctx);
3248LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_cookie(
const lcb_RESPSUBDOC *resp,
void **cookie);
3249LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_cas(
const lcb_RESPSUBDOC *resp, uint64_t *cas);
3250LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_key(
const lcb_RESPSUBDOC *resp,
const char **key,
size_t *key_len);
3251LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_mutation_token(
const lcb_RESPSUBDOC *resp, lcb_MUTATION_TOKEN *token);
3253LIBCOUCHBASE_API
size_t lcb_respsubdoc_result_size(
const lcb_RESPSUBDOC *resp);
3254LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_result_status(
const lcb_RESPSUBDOC *resp,
size_t index);
3255LIBCOUCHBASE_API
lcb_STATUS lcb_respsubdoc_result_value(
const lcb_RESPSUBDOC *resp,
size_t index,
const char **value,
3262LIBCOUCHBASE_API
int lcb_respsubdoc_is_deleted(
const lcb_RESPSUBDOC *resp);
3264typedef struct lcb_SUBDOCSPECS_ lcb_SUBDOCSPECS;
3267#define LCB_SUBDOCSPECS_F_MKINTERMEDIATES (1u << 16u)
3270#define LCB_SUBDOCSPECS_F_XATTRPATH (1u << 18u)
3273#define LCB_SUBDOCSPECS_F_XATTR_MACROVALUES (1u << 19u)
3276#define LCB_SUBDOCSPECS_F_XATTR_DELETED_OK (1u << 20u)
3278LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_create(lcb_SUBDOCSPECS **operations,
size_t capacity);
3279LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_destroy(lcb_SUBDOCSPECS *operations);
3280LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_get(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3281 const char *path,
size_t path_len);
3282LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_exists(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3283 const char *path,
size_t path_len);
3284LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_replace(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3285 const char *path,
size_t path_len,
const char *value,
3287LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_dict_add(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3288 const char *path,
size_t path_len,
const char *value,
3290LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_dict_upsert(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3291 const char *path,
size_t path_len,
const char *value,
3293LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_array_add_first(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3294 const char *path,
size_t path_len,
const char *value,
3296LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_array_add_last(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3297 const char *path,
size_t path_len,
const char *value,
3299LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_array_add_unique(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3300 const char *path,
size_t path_len,
const char *value,
3302LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_array_insert(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3303 const char *path,
size_t path_len,
const char *value,
3305LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_counter(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3306 const char *path,
size_t path_len, int64_t delta);
3307LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_remove(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3308 const char *path,
size_t path_len);
3309LIBCOUCHBASE_API
lcb_STATUS lcb_subdocspecs_get_count(lcb_SUBDOCSPECS *operations,
size_t index, uint32_t flags,
3310 const char *path,
size_t path_len);
3312typedef struct lcb_CMDSUBDOC_ lcb_CMDSUBDOC;
3314LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_create(lcb_CMDSUBDOC **cmd);
3315LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_destroy(lcb_CMDSUBDOC *cmd);
3316LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_parent_span(lcb_CMDSUBDOC *cmd, lcbtrace_SPAN *span);
3317LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_collection(lcb_CMDSUBDOC *cmd,
const char *scope,
size_t scope_len,
3318 const char *collection,
size_t collection_len);
3319LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_key(lcb_CMDSUBDOC *cmd,
const char *key,
size_t key_len);
3320LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_cas(lcb_CMDSUBDOC *cmd, uint64_t cas);
3321LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_specs(lcb_CMDSUBDOC *cmd,
const lcb_SUBDOCSPECS *operations);
3322LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_expiry(lcb_CMDSUBDOC *cmd, uint32_t expiration);
3323LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_preserve_expiry(lcb_CMDSUBDOC *cmd,
int should_preserve);
3326 LCB_SUBDOC_STORE_REPLACE = 0,
3327 LCB_SUBDOC_STORE_UPSERT,
3328 LCB_SUBDOC_STORE_INSERT
3329} lcb_SUBDOC_STORE_SEMANTICS;
3330LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_store_semantics(lcb_CMDSUBDOC *cmd, lcb_SUBDOC_STORE_SEMANTICS mode);
3331LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_access_deleted(lcb_CMDSUBDOC *cmd,
int flag);
3338LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_timeout(lcb_CMDSUBDOC *cmd, uint32_t timeout);
3343LIBCOUCHBASE_API
lcb_STATUS lcb_cmdsubdoc_on_behalf_of_extra_privilege(lcb_CMDSUBDOC *cmd,
const char *privilege,
3344 size_t privilege_len);
Credentials store for Couchbase.
Command codes for libcouchbase.
lcb_STATUS lcb_http_cancel(lcb_INSTANCE *instance, lcb_HTTP_HANDLE *handle)
Cancel ongoing HTTP request.
void lcb_destroy_async(lcb_INSTANCE *instance, const void *arg)
Asynchronously schedule the destruction of an instance.
lcb_STATUS lcb_cmdsubdoc_on_behalf_of(lcb_CMDSUBDOC *cmd, const char *data, size_t data_len)
lcb_VALUEFLAGS
Definition: couchbase.h:2112
lcb_STATUS lcb_cmdtouch_on_behalf_of(lcb_CMDTOUCH *cmd, const char *data, size_t data_len)
lcb_HTTP_METHOD
HTTP Request method enumeration These just enumerate the various types of HTTP request methods suppor...
Definition: couchbase.h:1590
void(* lcb_destroy_callback)(const void *cookie)
Callback received when instance is about to be destroyed.
Definition: couchbase.h:2069
struct lcb_RESPTOUCH_ lcb_RESPTOUCH
Spool a touch request.
Definition: couchbase.h:1361
lcb_destroy_callback lcb_set_destroy_callback(lcb_INSTANCE *instance, lcb_destroy_callback)
Set the callback to be invoked when the instance is destroyed asynchronously.
lcb_STATUS lcb_resphttp_headers(const lcb_RESPHTTP *resp, const char *const **headers)
List of key-value headers.
struct lcb_RESPHTTP_ lcb_RESPHTTP
Definition: couchbase.h:1667
lcb_STATUS lcb_cmdtouch_on_behalf_of_extra_privilege(lcb_CMDTOUCH *cmd, const char *privilege, size_t privilege_len)
lcb_HTTP_TYPE
The type of HTTP request to execute.
Definition: couchbase.h:1543
@ LCB_HTTP_TYPE_PING
Special pseudo-type, for ping endpoints in various services.
Definition: couchbase.h:1577
@ LCB_HTTP_TYPE_MANAGEMENT
Execute a management API request.
Definition: couchbase.h:1556
@ LCB_HTTP_TYPE_QUERY
Execute an N1QL Query.
Definition: couchbase.h:1564
@ LCB_HTTP_TYPE_ANALYTICS
Execute an Analytics Query.
Definition: couchbase.h:1570
@ LCB_HTTP_TYPE_RAW
Execute an arbitrary request against a host and port.
Definition: couchbase.h:1561
@ LCB_HTTP_TYPE_SEARCH
Search a fulltext index.
Definition: couchbase.h:1567
@ LCB_HTTP_TYPE_VIEW
Execute a request against the bucket.
Definition: couchbase.h:1548
void lcb_destroy(lcb_INSTANCE *instance)
Destroy (and release all allocated resources) an instance of lcb.
lcb_STATUS lcb_cmdsubdoc_create_as_deleted(lcb_CMDSUBDOC *cmd, int flag)
If new document created, the server will create it as a tombstone.
Definition of all of the error codes used by libcouchbase.
lcb_STATUS lcb_analytics_cancel(lcb_INSTANCE *instance, lcb_ANALYTICS_HANDLE *handle)
Cancels an in-progress request.
lcb_STATUS lcb_cmdanalytics_handle(lcb_CMDANALYTICS *cmd, lcb_ANALYTICS_HANDLE **handle)
Get handle to analytics query.
lcb_STATUS lcb_respanalytics_handle(const lcb_RESPANALYTICS *resp, lcb_ANALYTICS_HANDLE **handle)
Get handle to analytics query.
lcb_ANALYTICS_CONSISTENCY
Definition: couchbase.h:2488
lcb_STATUS lcb_cmdanalytics_on_behalf_of(lcb_CMDANALYTICS *cmd, const char *data, size_t data_len)
lcb_STATUS lcb_analytics(lcb_INSTANCE *instance, void *cookie, const lcb_CMDANALYTICS *cmd)
Execute a Analytics query.
lcb_STATUS lcb_cmdanalytics_positional_param(lcb_CMDANALYTICS *cmd, const char *value, size_t value_len)
lcb_STATUS lcb_cmdanalytics_positional_params(lcb_CMDANALYTICS *cmd, const char *value, size_t value_len)
Sets the positional arguments for the query.
void(* lcb_ANALYTICS_CALLBACK)(lcb_INSTANCE *, int, const lcb_RESPANALYTICS *)
Callback to be invoked for each row.
Definition: couchbase.h:2452
lcb_STATUS lcb_cmdanalytics_scope_qualifier(lcb_CMDANALYTICS *cmd, const char *qualifier, size_t qualifier_len)
struct lcb_RESPANALYTICS_ lcb_RESPANALYTICS
Response for a Analytics query.
Definition: couchbase.h:2444
lcb_STATUS lcb_cmdanalytics_scope_name(lcb_CMDANALYTICS *cmd, const char *scope, size_t scope_len)
Associate scope name with the query.
@ LCB_ANALYTICS_CONSISTENCY_NOT_BOUNDED
No consistency constraints.
Definition: couchbase.h:2494
@ LCB_ANALYTICS_CONSISTENCY_REQUEST_PLUS
Strong consistency.
Definition: couchbase.h:2499
Opaque pointer containing credentials for the library.
const char * lcb_get_version(lcb_U32 *version)
Get the version of the library.
int lcb_supports_feature(int n)
LCB_EXTERN_VAR const lcb_U32 lcb_version_g
Global/extern variable containing the version of the library.
Definition: couchbase.h:2391
lcb_STATUS lcb_respsearch_handle(const lcb_RESPSEARCH *resp, lcb_SEARCH_HANDLE **handle)
Get search handle from search response.
lcb_STATUS lcb_cmdsearch_on_behalf_of(lcb_CMDSEARCH *cmd, const char *data, size_t data_len)
lcb_STATUS lcb_search(lcb_INSTANCE *instance, void *cookie, const lcb_CMDSEARCH *cmd)
Issue a full-text query.
lcb_STATUS lcb_cmdsearch_handle(lcb_CMDSEARCH *cmd, lcb_SEARCH_HANDLE **handle)
Obtain handle to search.
lcb_STATUS lcb_search_cancel(lcb_INSTANCE *instance, lcb_SEARCH_HANDLE *handle)
Cancel a full-text query in progress.
lcb_STATUS lcb_cntl_string(lcb_INSTANCE *instance, const char *key, const char *value)
Alternatively one may change configuration settings by passing a string key and value.
void lcb_refresh_config(lcb_INSTANCE *instance)
Force the library to refetch the cluster configuration.
lcb_STATUS lcb_cntl(lcb_INSTANCE *instance, int mode, int cmd, void *arg)
This function exposes an ioctl/fcntl-like interface to read and write various configuration propertie...
lcb_STATUS lcb_cntl_setu32(lcb_INSTANCE *instance, int cmd, lcb_U32 arg)
Convenience function to set a value as an lcb_U32.
lcb_U32 lcb_cntl_getu32(lcb_INSTANCE *instance, int cmd)
Retrieve an lcb_U32 setting.
int lcb_cntl_exists(int ctl)
Determine if a specific control code exists.
void lcb_set_cookie(lcb_INSTANCE *instance, const void *cookie)
Associate a cookie with an instance of lcb.
const void * lcb_get_cookie(lcb_INSTANCE *instance)
Retrieve the cookie associated with this instance.
lcb_STATUS lcb_cmdcounter_on_behalf_of_extra_privilege(lcb_CMDCOUNTER *cmd, const char *privilege, size_t privilege_len)
struct lcb_RESPCOUNTER_ lcb_RESPCOUNTER
Schedule single counter operation.
Definition: couchbase.h:1194
lcb_STATUS lcb_cmdcounter_on_behalf_of(lcb_CMDCOUNTER *cmd, const char *data, size_t data_len)
lcb_STATUS
Error codes returned by the library.
Definition: error.h:212
lcb_STATUS lcb_cmdgetreplica_on_behalf_of(lcb_CMDGETREPLICA *cmd, const char *data, size_t data_len)
lcb_REPLICA_MODE
Spool a single get-with-replica request.
Definition: couchbase.h:787
lcb_STATUS lcb_cmdgetreplica_on_behalf_of_extra_privilege(lcb_CMDGETREPLICA *cmd, const char *privilege, size_t privilege_len)
lcb_STATUS lcb_cmdget_on_behalf_of_extra_privilege(lcb_CMDGET *cmd, const char *privilege, size_t privilege_len)
struct lcb_RESPGET_ lcb_RESPGET
Command for retrieving a single item.
Definition: couchbase.h:687
lcb_STATUS lcb_cmdget_on_behalf_of(lcb_CMDGET *cmd, const char *data, size_t data_len)
lcb_STATUS lcb_get_bootstrap_status(lcb_INSTANCE *instance)
Gets the initial bootstrap status.
void lcb_set_auth(lcb_INSTANCE *instance, lcb_AUTHENTICATOR *auth)
Sets the authenticator object for the instance.
lcb_BTYPE
Type of the bucket.
Definition: couchbase.h:240
lcb_bootstrap_callback lcb_set_bootstrap_callback(lcb_INSTANCE *instance, lcb_bootstrap_callback callback)
Set the callback for notification of success or failure of initial connection.
lcb_STATUS lcb_create(lcb_INSTANCE **instance, const lcb_CREATEOPTS *options)
Create an instance of lcb.
lcb_INSTANCE_TYPE
Handle types.
Definition: couchbase.h:255
struct lcb_st lcb_INSTANCE
Library handle representing a connection to a cluster and its data buckets.
Definition: couchbase.h:35
lcb_STATUS lcb_connect(lcb_INSTANCE *instance)
Schedule the initial connection This function will schedule the initial connection for the handle.
void(* lcb_bootstrap_callback)(lcb_INSTANCE *instance, lcb_STATUS err)
Bootstrap callback.
Definition: couchbase.h:354
@ LCB_BTYPE_UNSPEC
Unknown or unspecified.
Definition: couchbase.h:241
@ LCB_BTYPE_COUCHBASE
Data persisted and replicated.
Definition: couchbase.h:242
@ LCB_BTYPE_EPHEMERAL
Data not persisted, but replicated.
Definition: couchbase.h:243
@ LCB_BTYPE_MEMCACHED
Data not persisted and not replicated.
Definition: couchbase.h:244
@ LCB_TYPE_CLUSTER
Handle for administrative access.
Definition: couchbase.h:257
@ LCB_TYPE_BUCKET
Handle for data access (default)
Definition: couchbase.h:256
structure indicating a buffer and its size
Definition: iops.h:78
lcb_RESPCALLBACK lcb_install_callback(lcb_INSTANCE *instance, int cbtype, lcb_RESPCALLBACK cb)
lcb_STATUS lcb_cmdunlock_on_behalf_of(lcb_CMDUNLOCK *cmd, const char *data, size_t data_len)
lcb_CALLBACK_TYPE
The type of response passed to the callback.
Definition: couchbase.h:469
lcb_STATUS lcb_cmdexists_on_behalf_of_extra_privilege(lcb_CMDEXISTS *cmd, const char *privilege, size_t privilege_len)
lcb_DURABILITY_LEVEL
Definition: couchbase.h:524
void(* lcb_RESPCALLBACK)(lcb_INSTANCE *instance, int cbtype, const lcb_RESPBASE *resp)
Callback invoked for responses.
Definition: couchbase.h:554
lcb_STATUS lcb_cmdexists_on_behalf_of(lcb_CMDEXISTS *cmd, const char *data, size_t data_len)
lcb_RESPFLAGS
Response flags.
Definition: couchbase.h:430
lcb_RESPCALLBACK lcb_get_callback(lcb_INSTANCE *instance, int cbtype)
const char * lcb_strcbtype(int cbtype)
Returns the type of the callback as a string.
struct lcb_RESPUNLOCK_ lcb_RESPUNLOCK
Unlock a previously locked item using lcb_cmdunlock.
Definition: couchbase.h:1287
lcb_STATUS lcb_cmdunlock_on_behalf_of_extra_privilege(lcb_CMDUNLOCK *cmd, const char *privilege, size_t privilege_len)
@ LCB_CALLBACK_ENDURE
lcb_endure3_ctxnew()
Definition: couchbase.h:482
@ LCB_CALLBACK_VERSIONS
lcb_server_versions()
Definition: couchbase.h:478
@ LCB_CALLBACK_GETCID
lcb_getcid()
Definition: couchbase.h:493
@ LCB_CALLBACK_VERBOSITY
lcb_server_verbosity()
Definition: couchbase.h:479
@ LCB_CALLBACK_EXISTS
lcb_exists()
Definition: couchbase.h:494
@ LCB_CALLBACK_PING
lcb_ping3()
Definition: couchbase.h:490
@ LCB_CALLBACK_REMOVE
lcb_remove()
Definition: couchbase.h:475
@ LCB_CALLBACK_TOUCH
lcb_touch()
Definition: couchbase.h:474
@ LCB_CALLBACK_COLLECTIONS_GET_MANIFEST
lcb_getmanifest()
Definition: couchbase.h:492
@ LCB_CALLBACK_NOOP
lcb_noop3()
Definition: couchbase.h:489
@ LCB_CALLBACK_STATS
lcb_stats3()
Definition: couchbase.h:477
@ LCB_CALLBACK_GET
lcb_get()
Definition: couchbase.h:471
@ LCB_CALLBACK_COUNTER
lcb_counter()
Definition: couchbase.h:473
@ LCB_CALLBACK_HTTP
lcb_http()
Definition: couchbase.h:483
@ LCB_CALLBACK_STORE
lcb_store()
Definition: couchbase.h:472
@ LCB_CALLBACK_GETREPLICA
lcb_getreplica()
Definition: couchbase.h:481
@ LCB_CALLBACK_UNLOCK
lcb_unlock()
Definition: couchbase.h:476
@ LCB_CALLBACK_CBFLUSH
lcb_cbflush3()
Definition: couchbase.h:484
@ LCB_CALLBACK_DIAG
lcb_diag()
Definition: couchbase.h:491
@ LCB_CALLBACK_SDLOOKUP
<for lcb_storedur3()
Definition: couchbase.h:487
@ LCB_CALLBACK_DEFAULT
Default callback invoked as a fallback.
Definition: couchbase.h:470
@ LCB_CALLBACK_OBSEQNO
For lcb_observe_seqno3()
Definition: couchbase.h:485
@ LCB_CALLBACK_OBSERVE
lcb_observe3_ctxnew()
Definition: couchbase.h:480
@ LCB_DURABILITYLEVEL_MAJORITY
Mutation must be replicated to (i.e.
Definition: couchbase.h:531
@ LCB_DURABILITYLEVEL_MAJORITY_AND_PERSIST_TO_ACTIVE
As majority, but additionally persisted to the active node.
Definition: couchbase.h:535
@ LCB_DURABILITYLEVEL_PERSIST_TO_MAJORITY
Mutation must be persisted to (i.e.
Definition: couchbase.h:540
@ LCB_RESP_F_NMVGEN
The response was a result of a not-my-vbucket error.
Definition: couchbase.h:442
@ LCB_RESP_F_FINAL
No more responses are to be received for this request.
Definition: couchbase.h:432
@ LCB_RESP_F_CLIENTGEN
The response was artificially generated inside the client.
Definition: couchbase.h:439
@ LCB_RESP_F_ERRINFO
The response has extra error information as value (see SDK-RFC-28).
Definition: couchbase.h:453
@ LCB_RESP_F_SDSINGLE
Flag, only valid for subdoc responses, indicates that the response was processed using the single-ope...
Definition: couchbase.h:450
@ LCB_RESP_F_EXTDATA
The response has additional internal data.
Definition: couchbase.h:446
int lcb_is_redacting_logs(lcb_INSTANCE *instance)
Returns whether the library redacting logs for this connection instance.
lcb_STATUS lcb_query(lcb_INSTANCE *instance, void *cookie, const lcb_CMDQUERY *cmd)
Execute a N1QL query.
lcb_STATUS lcb_cmdquery_statement(lcb_CMDQUERY *cmd, const char *statement, size_t statement_len)
Sets the actual statement to be executed.
lcb_STATUS lcb_query_cancel(lcb_INSTANCE *instance, lcb_QUERY_HANDLE *handle)
Cancels an in-progress request.
lcb_STATUS lcb_cmdquery_option(lcb_CMDQUERY *cmd, const char *name, size_t name_len, const char *value, size_t value_len)
Set a query option.
lcb_STATUS lcb_cmdquery_named_param(lcb_CMDQUERY *cmd, const char *name, size_t name_len, const char *value, size_t value_len)
Sets a named argument for the query.
lcb_STATUS lcb_cmdquery_reset(lcb_CMDQUERY *cmd)
Reset the lcb_CMDQUERY structure so that it may be reused for a subsequent query.
struct lcb_RESPQUERY_ lcb_RESPQUERY
Opaque query response structure.
Definition: couchbase.h:2838
lcb_STATUS lcb_cmdquery_create(lcb_CMDQUERY **cmd)
Create a new lcb_CMDQUERY object.
lcb_STATUS lcb_cmdquery_pipeline_cap(lcb_CMDQUERY *cmd, int value)
Sets maximum number of items each execution operator can buffer between various operators.
struct lcb_CMDQUERY_ lcb_CMDQUERY
Opaque query command structure.
Definition: couchbase.h:2843
lcb_STATUS lcb_cmdquery_consistency(lcb_CMDQUERY *cmd, lcb_QUERY_CONSISTENCY mode)
Sets the consistency mode for the request.
lcb_QUERY_CONSISTENCY
Definition: couchbase.h:2857
void(* lcb_QUERY_CALLBACK)(lcb_INSTANCE *, int, const lcb_RESPQUERY *)
Callback to be invoked for each row.
Definition: couchbase.h:2855
lcb_STATUS lcb_cmdquery_flex_index(lcb_CMDQUERY *cmd, int value)
lcb_STATUS lcb_cmdquery_positional_param(lcb_CMDQUERY *cmd, const char *value, size_t value_len)
lcb_STATUS lcb_cmdquery_scope_qualifier(lcb_CMDQUERY *cmd, const char *qualifier, size_t qualifier_len)
lcb_STATUS lcb_cmdquery_pipeline_batch(lcb_CMDQUERY *cmd, int value)
Sets the number of items execution operators can batch for fetch from the KV.
lcb_STATUS lcb_cmdquery_destroy(lcb_CMDQUERY *cmd)
Free the command structure.
lcb_STATUS lcb_cmdquery_positional_params(lcb_CMDQUERY *cmd, const char *value, size_t value_len)
Sets the positional arguments for the query.
lcb_STATUS lcb_cmdquery_readonly(lcb_CMDQUERY *cmd, int readonly)
Marks query as read-only.
lcb_STATUS lcb_cmdquery_consistency_token_for_keyspace(lcb_CMDQUERY *cmd, const char *keyspace, size_t keyspace_len, const lcb_MUTATION_TOKEN *token)
Indicate that the query should synchronize its internal snapshot to reflect the changes indicated by ...
lcb_STATUS lcb_cmdquery_on_behalf_of(lcb_CMDQUERY *cmd, const char *data, size_t data_len)
lcb_STATUS lcb_cmdquery_encoded_payload(lcb_CMDQUERY *cmd, const char **payload, size_t *payload_len)
Get the JSON-encoded query payload.
lcb_STATUS lcb_cmdquery_payload(lcb_CMDQUERY *cmd, const char *query, size_t query_len)
Sets the JSON-encodes query payload to be executed.
lcb_STATUS lcb_cmdquery_scope_name(lcb_CMDQUERY *cmd, const char *scope, size_t scope_len)
Associate scope name with the query.
struct lcb_QUERY_HANDLE_ lcb_QUERY_HANDLE
Pointer for request instance.
Definition: couchbase.h:2847
lcb_STATUS lcb_cmdquery_preserve_expiry(lcb_CMDQUERY *cmd, int preserve_expiry)
lcb_STATUS lcb_cmdquery_scan_cap(lcb_CMDQUERY *cmd, int value)
Sets maximum buffered channel size between the indexer client and the query service for index scans.
@ LCB_QUERY_CONSISTENCY_NONE
No consistency constraints.
Definition: couchbase.h:2859
@ LCB_QUERY_CONSISTENCY_RYOW
This is implicitly set by lcb_cmdquery_consistency_token_for_keyspace.
Definition: couchbase.h:2866
@ LCB_QUERY_CONSISTENCY_STATEMENT
Refresh the snapshot for each statement.
Definition: couchbase.h:2872
@ LCB_QUERY_CONSISTENCY_REQUEST
Refresh the snapshot for each request.
Definition: couchbase.h:2869
lcb_STATUS lcb_open(lcb_INSTANCE *instance, const char *bucket, size_t bucket_len)
Opens bucket.
lcb_open_callback lcb_set_open_callback(lcb_INSTANCE *instance, lcb_open_callback callback)
Callback to be called when bucket is opened.
lcb_STATUS lcb_diag(lcb_INSTANCE *instance, void *cookie, const lcb_CMDDIAG *cmd)
Returns diagnostics report about network connections.
lcb_PING_SERVICE
Type of the service.
Definition: couchbase.h:1423
lcb_PING_STATUS
Status of the service.
Definition: couchbase.h:1410
struct lcb_RESPREMOVE_ lcb_RESPREMOVE
Spool a removal of an item.
Definition: couchbase.h:1101
lcb_STATUS lcb_cmdremove_on_behalf_of(lcb_CMDREMOVE *cmd, const char *data, size_t data_len)
lcb_STATUS lcb_cmdremove_on_behalf_of_extra_privilege(lcb_CMDREMOVE *cmd, const char *privilege, size_t privilege_len)
void lcb_sched_leave(lcb_INSTANCE *instance)
Leave the current scheduling context, scheduling the commands within the context to be flushed to the...
void lcb_sched_fail(lcb_INSTANCE *instance)
Fail all commands in the current scheduling context.
void lcb_sched_enter(lcb_INSTANCE *instance)
Enter a scheduling context.
void lcb_sched_flush(lcb_INSTANCE *instance)
Request commands to be flushed to the network.
lcb_STATUS lcb_cmdstore_on_behalf_of(lcb_CMDSTORE *cmd, const char *data, size_t data_len)
lcb_STORE_OPERATION
Values for lcb_CMDSTORE::operation.
Definition: couchbase.h:878
lcb_STATUS lcb_cmdstore_on_behalf_of_extra_privilege(lcb_CMDSTORE *cmd, const char *privilege, size_t privilege_len)
struct lcb_RESPSTORE_ lcb_RESPSTORE
Schedule a single storage request.
Definition: couchbase.h:971
@ LCB_STORE_APPEND
Rather than setting the contents of the entire document, take the value specified in lcb_CMDSTORE::va...
Definition: couchbase.h:906
@ LCB_STORE_INSERT
Will cause the operation to fail if the key already exists in the cluster.
Definition: couchbase.h:893
@ LCB_STORE_REPLACE
Will cause the operation to fail unless the key already exists in the cluster.
Definition: couchbase.h:899
@ LCB_STORE_UPSERT
The default storage mode.
Definition: couchbase.h:887
@ LCB_STORE_PREPEND
Like LCB_STORE_APPEND, but prepends the new value to the existing value.
Definition: couchbase.h:911
lcb_STATUS lcb_cmdanalytics_parent_span(lcb_CMDANALYTICS *cmd, lcbtrace_SPAN *span)
Associate parent tracing span with the Analytics request.
lcb_STATUS lcb_cmdquery_parent_span(lcb_CMDQUERY *cmd, lcbtrace_SPAN *span)
Associate parent tracing span with the N1QL request.
lcb_STATUS lcb_cmdsearch_parent_span(lcb_CMDSEARCH *cmd, lcbtrace_SPAN *span)
Associate parent tracing span with the FTS request.
Tracer interface.
Definition: tracing.h:73
void(* lcb_VIEW_CALLBACK)(lcb_INSTANCE *instance, int cbtype, const lcb_RESPVIEW *row)
Callback function invoked for each row returned from the view.
Definition: couchbase.h:3202
struct lcb_VIEW_HANDLE_ lcb_VIEW_HANDLE
Pointer for request instance.
Definition: couchbase.h:3189
lcb_STATUS lcb_wait(lcb_INSTANCE *instance, lcb_WAITFLAGS flags)
Wait for completion of scheduled operations.
int lcb_is_waiting(lcb_INSTANCE *instance)
Check if instance is blocked in the event loop.
lcb_WAITFLAGS
Flags for lcb_wait()
Definition: couchbase.h:1852
lcb_STATUS lcb_tick_nowait(lcb_INSTANCE *instance)
void lcb_breakout(lcb_INSTANCE *instance)
Forcefully break from the event loop.
@ LCB_WAIT_DEFAULT
Behave like the old lcb_wait()
Definition: couchbase.h:1854
@ LCB_WAIT_NOCHECK
Do not check pending operations before running the event loop.
Definition: couchbase.h:1863
Public I/O integration interface.
Low level structures used by commands for buffers.