forked from couchbaselabs/devguide-examples
-
Notifications
You must be signed in to change notification settings - Fork 1
/
fts-basic.cc
48 lines (43 loc) · 1.48 KB
/
fts-basic.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
#include <libcouchbase/couchbase.h>
#include <libcouchbase/cbft.h>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <string>
static void rowCallback(lcb_t, int, const lcb_RESPFTS *resp)
{
if (resp->rflags & LCB_RESP_F_FINAL) {
printf("Status: %d\n", resp->rc);
printf("Meta: %.*s\n", (int)resp->nrow, resp->row);
if (resp->htresp && resp->htresp->nbody) {
printf("HTTP Response: %.*s\n", (int)resp->htresp->nbody, (char *)resp->htresp->body);
}
} else {
printf("Row: %.*s\n", (int)resp->nrow, resp->row);
}
}
int main(int, char **)
{
lcb_t instance;
lcb_create_st crst = {};
crst.version = 3;
crst.v.v3.connstr = "couchbase://127.0.0.1/beer-sample";
crst.v.v3.username = "testuser";
crst.v.v3.passwd = "password";
lcb_error_t rc = lcb_create(&instance, &crst);
assert(rc == LCB_SUCCESS);
lcb_cntl_string(instance, "detailed_errcodes", "true");
lcb_connect(instance);
lcb_wait(instance);
assert(lcb_get_bootstrap_status(instance) == LCB_SUCCESS);
// Be sure to include the indexName within the request payload
std::string encodedQuery("{\"query\":{\"match\":\"hoppy\"},\"indexName\":\"beer-search\",\"size\":10}");
lcb_CMDFTS cmd = {};
cmd.callback = rowCallback;
cmd.query = encodedQuery.c_str();
cmd.nquery = encodedQuery.size();
rc = lcb_fts_query(instance, NULL, &cmd);
assert(rc == LCB_SUCCESS);
lcb_wait(instance);
lcb_destroy(instance);
}