Couchbase C Client
3.0.5
Asynchronous C Client for Couchbase
|
Go to the documentation of this file.
20 #include <libcouchbase/visibility.h>
21 #include <libcouchbase/sysdefs.h>
57 #define LCBVB_SVCTYPE_CBAS LCBVB_SVCTYPE_ANALYTICS
86 char *hoststrs[LCBVB_SVCTYPE__MAX];
131 LCBVB_CAP_XATTR = 1 << 0,
132 LCBVB_CAP_CBHELLO = 1 << 1,
133 LCBVB_CAP_CCCP = 1 << 2,
134 LCBVB_CAP_COUCHAPI = 1 << 3,
135 LCBVB_CAP_DCP = 1 << 4,
136 LCBVB_CAP_NODES_EXT = 1 << 5,
137 LCBVB_CAP_TOUCH = 1 << 6,
138 LCBVB_CAP_XDCR_CHECKPOINTING = 1 << 7,
139 LCBVB_CAP_COLLECTIONS = 1 << 8,
140 LCBVB_CAP_DURABLE_WRITE = 1 << 9
141 } lcbvb_BUCKET_CAPABILITIES;
144 LCBVB_CCAP_N1QL_ENHANCED_PREPARED_STATEMENTS = 1 << 0,
145 } lcbvb_CLUSTER_CAPABILITIES;
149 typedef struct lcbvb_CONFIG_st {
171 #define LCBVB_BUCKET_NAME(cfg) (cfg)->bname
172 #define LCBVB_NSERVERS(cfg) (cfg)->nsrv
173 #define LCBVB_NDATASERVERS(cfg) (cfg)->ndatasrv
174 #define LCBVB_NREPLICAS(cfg) (cfg)->nrepl
175 #define LCBVB_DISTTYPE(cfg) (cfg)->dtype
176 #define LCBVB_CAPS(cfg) (cfg)->caps
177 #define LCBVB_CCAPS(cfg) (cfg)->ccaps
178 #define LCBVB_GET_SERVER(conf, ix) ((conf)->servers + ix)
303 #define lcbvb_vbserver(cfg, vbid, ix) ((ix == 0) ? lcbvb_vbmaster(cfg, vbid) : lcbvb_vbreplica(cfg, vbid, ix - 1))
312 #define lcbvb_nmv_remap(cfg, vbid, bad) lcbvb_nmv_remap_ex(cfg, vbid, bad, 0)
524 VBUCKET_CHANGE_STATUS;
565 unsigned nservers,
unsigned nreplica,
unsigned nvbuckets);
617 typedef enum { LIBVBUCKET_SOURCE_FILE, LIBVBUCKET_SOURCE_MEMORY } vbucket_source_t;
621 #define VBUCKET_DISTRIBUTION_VBUCKET LCBVB_DIST_VBUCKET
622 #define VBUCKET_DISTRIBUTION_KETAMA LCBVB_DIST_KETAMA
623 #define VBUCKET_NO_CHANGES LCBVB_NO_CHANGES
624 #define VBUCKET_SERVERS_MODIFIED LCBVB_SERVERS_MODIFIED
625 #define VBUCKET_MAP_MODIFIED LCVBVB_MAP_MODIFIED
627 LIBCOUCHBASE_API
int vbucket_config_parse(
lcbvb_CONFIG *, vbucket_source_t,
const char *);
628 LIBCOUCHBASE_API
const char *vbucket_get_error_message(
lcbvb_CONFIG *);
629 LIBCOUCHBASE_API
lcbvb_CONFIG *vbucket_config_create(
void);
630 LIBCOUCHBASE_API
void vbucket_config_destroy(
lcbvb_CONFIG *);
631 LIBCOUCHBASE_API
int vbucket_config_get_num_replicas(
lcbvb_CONFIG *);
632 LIBCOUCHBASE_API
int vbucket_config_get_num_vbuckets(
lcbvb_CONFIG *);
633 LIBCOUCHBASE_API
int vbucket_config_get_num_servers(
lcbvb_CONFIG *);
634 LIBCOUCHBASE_API
const char *vbucket_config_get_server(
lcbvb_CONFIG *,
int);
635 LIBCOUCHBASE_API
const char *vbucket_config_get_couch_api_base(
lcbvb_CONFIG *,
int);
636 LIBCOUCHBASE_API
const char *vbucket_config_get_rest_api_server(
lcbvb_CONFIG *,
int);
638 LIBCOUCHBASE_API
int vbucket_map(
lcbvb_CONFIG *,
const void *, lcb_SIZE,
int *,
int *);
639 LIBCOUCHBASE_API
int vbucket_get_vbucket_by_key(
lcbvb_CONFIG *,
const void *, lcb_SIZE);
640 LIBCOUCHBASE_API
int vbucket_get_master(
lcbvb_CONFIG *,
int);
641 LIBCOUCHBASE_API
int vbucket_get_replica(
lcbvb_CONFIG *,
int,
int);
644 LIBCOUCHBASE_API
int vbucket_config_get_revision(
lcbvb_CONFIG *);
646 LIBCOUCHBASE_API
int vbucket_config_generate(
lcbvb_CONFIG *vb,
unsigned,
unsigned,
unsigned);
int n_vb_changes
How many vBuckets have had an ownership change.
Definition: vbucket.h:510
unsigned ndatasrv
Number of data (memcached) servers.
Definition: vbucket.h:152
void lcbvb_replace_host(lcbvb_CONFIG *cfg, const char *hostname)
Replace hostname placeholders with specific host string This function shall replace hostname placehol...
unsigned lcbvb_get_nreplicas(const lcbvb_CONFIG *cfg)
Get the number of replicas the bucket is configured with Note that not all replicas may necessarily b...
char * lcbvb_save_json(lcbvb_CONFIG *vbc)
Serialize the current config as a JSON string.
lcb_U16 n1ql
Query port.
Definition: vbucket.h:79
char * alt_hostname
selected alternative hostname for the node
Definition: vbucket.h:106
void lcbvb_genffmap(lcbvb_CONFIG *vb)
unsigned lcbvb_get_nvbuckets(const lcbvb_CONFIG *cfg)
Get the number of vbuckets the bucket is configured with.
Structure representing changes between two configurations.
Definition: vbucket.h:504
lcb_U16 mgmt
Port for adminsitrative operations (HTTP)
Definition: vbucket.h:75
void lcbvb_destroy(lcbvb_CONFIG *conf)
char * hostname
Hostname for the node.
Definition: vbucket.h:100
@ LCBVB_MAP_MODIFIED
vBuckets have been transferred
Definition: vbucket.h:521
int lcbvb_vbreplica(lcbvb_CONFIG *cfg, int vbid, unsigned ix)
@ LCBVB_SVCTYPE_DATA
memcached/Data port
Definition: vbucket.h:48
@ LCBVB_DIST_KETAMA
Ketama hashing ("memcached") bucket.
Definition: vbucket.h:126
lcbvb_DISTMODE lcbvb_get_distmode(const lcbvb_CONFIG *cfg)
Get the distribution mode (AKA bucket type) of the bucket.
int lcbvb_map_key(lcbvb_CONFIG *cfg, const void *key, lcb_SIZE n, int *vbid, int *srvix)
const char * lcbvb_get_hostport(lcbvb_CONFIG *cfg, unsigned ix, lcbvb_SVCTYPE type, lcbvb_SVCMODE mode)
Return a string for the given service This is like lcbvb_get_port but returns a string in the form of...
@ LCBVB_SVCTYPE_VIEWS
Views/CAPI port.
Definition: vbucket.h:49
@ LCBVB_SVCMODE_PLAIN
Plain transport.
Definition: vbucket.h:64
uint64_t ccaps
Cluster capabilities.
Definition: vbucket.h:168
unsigned nvbs
Total number of vbuckets the server has assigned.
Definition: vbucket.h:105
lcbvb_SERVICES svc_ssl
SSL Services.
Definition: vbucket.h:98
Definition: vbucket.h:112
int lcbvb_genconfig_ex(lcbvb_CONFIG *vb, const char *name, const char *uuid, const lcbvb_SERVER *servers, unsigned nservers, unsigned nreplica, unsigned nvbuckets)
Generate a sample configuration.
unsigned nrepl
Number of servers.
Definition: vbucket.h:154
int lcbvb_has_vbucket(lcbvb_CONFIG *vbc, int vbid, int ix)
int lcbvb_nmv_remap_ex(lcbvb_CONFIG *cfg, int vbid, int bad, int use_heuristics)
@ LCBVB_NO_CHANGES
No changes between configs.
Definition: vbucket.h:519
lcb_U16 ixadmin
Indexing admin port (HTTP)
Definition: vbucket.h:78
unsigned nvb
Number of vbuckets.
Definition: vbucket.h:151
lcbvb_SERVICES svc
Plain services.
Definition: vbucket.h:97
char * viewpath
Path prefix for view queries.
Definition: vbucket.h:101
lcbvb_DISTMODE
Type of algorithm used to distribute keys.
Definition: vbucket.h:124
uint64_t caps
Bucket capabilities.
Definition: vbucket.h:167
char ** servers_added
List of strings of servers added (via host:data_port)
Definition: vbucket.h:506
lcb_U16 ixquery
Indexing query port.
Definition: vbucket.h:77
const char * lcbvb_get_capibase(lcbvb_CONFIG *cfg, unsigned ix, lcbvb_SVCMODE mode)
lcbvb_CONFIG * lcbvb_parse_json(const char *data)
@ LCBVB_SVCMODE_SSL
SSL Transport.
Definition: vbucket.h:65
@ LCBVB_SVCTYPE_IXQUERY
Index query.
Definition: vbucket.h:51
lcbvb_CONFIG * lcbvb_create(void)
Allocate a new config This can be used to create new config object and load it with a JSON config,...
@ LCBVB_DIST_VBUCKET
vBucket hashing ("couchbase") bucket
Definition: vbucket.h:125
@ LCBVB_SVCTYPE_IXADMIN
Index administration.
Definition: vbucket.h:52
unsigned lcbvb_get_port(lcbvb_CONFIG *cfg, unsigned ix, lcbvb_SVCTYPE type, lcbvb_SVCMODE mode)
Gets the port associated with a given service of a given mode on a given server.
int lcbvb_get_randhost_ex(const lcbvb_CONFIG *cfg, lcbvb_SVCTYPE type, lcbvb_SVCMODE mode, int *used)
Get random node, excluding nodes already tried.
char * cbaspath
Path prefix for analytics queries.
Definition: vbucket.h:104
lcbvb_CHANGETYPE lcbvb_get_changetype(lcbvb_CONFIGDIFF *diff)
Get a quick summary of the changes in the passed object.
char * querypath
Path prefix for n1ql queries.
Definition: vbucket.h:102
int sequence_changed
Whether the ordering of the nodes has changed as well.
Definition: vbucket.h:512
const char * lcbvb_get_hostname(const lcbvb_CONFIG *cfg, unsigned ix)
Get the hostname of a given server index. This may be used if all nodes reside on different hostnames...
void lcbvb_make_ketama(lcbvb_CONFIG *vb)
char * ftspath
Path prefix for fulltext queries.
Definition: vbucket.h:103
int lcbvb_vbmaster(lcbvb_CONFIG *cfg, int vbid)
lcbvb_SERVICES alt_svc
selected alternative plain services
Definition: vbucket.h:107
@ LCBVB_SVCTYPE_SEARCH
Fulltext.
Definition: vbucket.h:54
lcbvb_DISTMODE dtype
Type of bucket/distribution.
Definition: vbucket.h:150
char * query_base_
N1QL base URL.
Definition: vbucket.h:83
lcbvb_SVCTYPE
This enum functions as a 'key' to indicate a specific service offered by a node.
Definition: vbucket.h:47
lcbvb_CONFIGDIFF * lcbvb_compare(lcbvb_CONFIG *from, lcbvb_CONFIG *to)
Compare two configurations and return information on the changes.
int lcbvb_load_json(lcbvb_CONFIG *vbc, const char *data)
int lcbvb_load_json_ex(lcbvb_CONFIG *vbc, const char *data, const char *source, char **network)
int lcbvb_genconfig(lcbvb_CONFIG *vb, unsigned nservers, unsigned nreplica, unsigned nvbuckets)
Generate a sample configuration used for testing.
char ** servers_removed
List of strings of servers removed (via host:data_port)
Definition: vbucket.h:508
lcbvb_SERVICES alt_svc_ssl
selected alternative SSL Services
Definition: vbucket.h:108
lcb_U16 fts
CBFT.
Definition: vbucket.h:80
int n_repl_changed
Whether the number of the replicas has changed.
Definition: vbucket.h:514
const char * lcbvb_get_error(const lcbvb_CONFIG *vbc)
Return a string indicating why parsing the configuration failed.
lcb_U16 data
Data port for key-value operations (memcached protocol)
Definition: vbucket.h:74
Services which may be provided by a node.
Definition: vbucket.h:73
@ LCBVB_SVCTYPE_QUERY
N1QL Query.
Definition: vbucket.h:53
@ LCBVB_DIST_UNKNOWN
Unknown distribution (cluster config)
Definition: vbucket.h:127
unsigned lcbvb_get_nservers(const lcbvb_CONFIG *cfg)
Get the number of servers in the bucket. Note that not all servers may actually be available.
int lcbvb_get_revision(const lcbvb_CONFIG *cfg)
Get the revision for this configuration.
@ LCBVB_REPLICAS_MODIFIED
number of replicas has been modified
Definition: vbucket.h:522
Structure containing the configuration.
Definition: vbucket.h:149
@ LCBVB_SVCTYPE_MGMT
Administrative/'REST' UI.
Definition: vbucket.h:50
char * views_base_
Views base URL.
Definition: vbucket.h:82
Definition: vbucket.h:117
lcb_U16 views
Port for view queries (HTTP)
Definition: vbucket.h:76
char * authority
host:dataport for comparison
Definition: vbucket.h:99
lcb_U16 cbas
CBAS (Analytics)
Definition: vbucket.h:81
const char * lcbvb_get_resturl(lcbvb_CONFIG *cfg, unsigned ix, lcbvb_SVCTYPE type, lcbvb_SVCMODE mode)
Function to return the URL prefix for a REST service.
void lcbvb_free_diff(lcbvb_CONFIGDIFF *diff)
Free the structure returned by lcbvb_compare()
@ LCBVB_SERVERS_MODIFIED
Servers have been added or removed.
Definition: vbucket.h:520
int lcbvb_k2vb(lcbvb_CONFIG *cfg, const void *key, lcb_SIZE n)
lcbvb_CHANGETYPE
Convenience enum to determine the mode of change.
Definition: vbucket.h:518
@ LCBVB_SVCTYPE_ANALYTICS
Analytics Query.
Definition: vbucket.h:55
int lcbvb_get_randhost(const lcbvb_CONFIG *cfg, lcbvb_SVCTYPE type, lcbvb_SVCMODE mode)
Convenience function to select a random node for a service.
Node in the cluster This structure represents a node in the cluster. The node has a hostname (hostnam...
Definition: vbucket.h:96
lcbvb_SVCMODE
This enum functions to indicate the 'mode' of the service.
Definition: vbucket.h:63