-
Notifications
You must be signed in to change notification settings - Fork 45
/
bulk-get.cc
91 lines (77 loc) · 2.64 KB
/
bulk-get.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#include <libcouchbase/couchbase.h>
#include <libcouchbase/api3.h>
#include <vector>
#include <string>
struct Result {
lcb_error_t rc;
std::string key;
std::string value;
lcb_CAS cas;
explicit Result(const lcb_RESPBASE *rb)
: rc(rb->rc), key(reinterpret_cast< const char * >(rb->key), rb->nkey), cas(rb->cas)
{
}
};
typedef std::vector< Result > ResultList;
static void op_callback(lcb_t, int cbtype, const lcb_RESPBASE *rb)
{
ResultList *results = reinterpret_cast< ResultList * >(rb->cookie);
Result res(rb);
if (cbtype == LCB_CALLBACK_GET && rb->rc == LCB_SUCCESS) {
const lcb_RESPGET *rg = reinterpret_cast< const lcb_RESPGET * >(rb);
res.value.assign(reinterpret_cast< const char * >(rg->value), rg->nvalue);
}
results->push_back(res);
}
int main(int argc, char **argv)
{
lcb_t instance;
lcb_create_st crst = {};
lcb_error_t rc;
crst.version = 3;
crst.v.v3.connstr = "couchbase://127.0.0.1/default";
crst.v.v3.username = "testuser";
crst.v.v3.passwd = "password";
rc = lcb_create(&instance, &crst);
rc = lcb_connect(instance);
lcb_wait(instance);
rc = lcb_get_bootstrap_status(instance);
if (rc != LCB_SUCCESS) {
printf("Unable to bootstrap cluster: %s\n", lcb_strerror_short(rc));
exit(1);
}
lcb_install_callback3(instance, LCB_CALLBACK_GET, op_callback);
// Make a list of keys to store initially
std::vector< std::string > toGet;
toGet.push_back("foo");
toGet.push_back("bar");
toGet.push_back("baz");
ResultList results;
lcb_sched_enter(instance);
std::vector< std::string >::const_iterator its = toGet.begin();
for (; its != toGet.end(); ++its) {
lcb_CMDGET gcmd = {};
LCB_CMD_SET_KEY(&gcmd, its->c_str(), its->size());
rc = lcb_get3(instance, &results, &gcmd);
if (rc != LCB_SUCCESS) {
fprintf(stderr, "Couldn't schedule item %s: %s\n", its->c_str(), lcb_strerror(NULL, rc));
// Unschedules all operations since the last scheduling context
// (created by lcb_sched_enter)
lcb_sched_fail(instance);
break;
}
}
lcb_sched_leave(instance);
lcb_wait(instance);
ResultList::iterator itr;
for (itr = results.begin(); itr != results.end(); ++itr) {
printf("%s: ", itr->key.c_str());
if (itr->rc != LCB_SUCCESS) {
printf("Failed (%s)\n", lcb_strerror(NULL, itr->rc));
} else {
printf("Value=%.*s. CAS=%llu\n", (int)itr->value.size(), itr->value.c_str(), (unsigned long long)itr->cas);
}
}
lcb_destroy(instance);
return 0;
}