summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6efa089)
raw | patch | inline | side by side (parent: 6efa089)
author | Sebastian Harl <sh@tokkee.org> | |
Mon, 3 Nov 2014 06:37:57 +0000 (07:37 +0100) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Mon, 3 Nov 2014 06:37:57 +0000 (07:37 +0100) |
… instead of the old tojson functions.
src/frontend/query.c | patch | blob | history |
diff --git a/src/frontend/query.c b/src/frontend/query.c
index e9c2d2212965638bf74dbbfd57e7ef3c1e72ca25..057d5b8e4a3b1ec07b2456de8afbeb06b157c96c 100644 (file)
--- a/src/frontend/query.c
+++ b/src/frontend/query.c
* private helper functions
*/
+static int
+list_tojson(sdb_store_obj_t *obj,
+ sdb_store_matcher_t __attribute__((unused)) *filter,
+ void *user_data)
+{
+ sdb_store_json_formatter_t *f = user_data;
+ return sdb_store_json_emit(f, obj);
+} /* list_tojson */
+
static int
lookup_tojson(sdb_store_obj_t *obj, sdb_store_matcher_t *filter,
void *user_data)
sdb_fe_exec_fetch(sdb_conn_t *conn, int type, const char *name,
sdb_store_matcher_t *filter)
{
- sdb_strbuf_t *buf;
sdb_store_obj_t *host;
uint32_t res_type = htonl(CONNECTION_FETCH);
+ sdb_store_json_formatter_t *f;
+ sdb_strbuf_t *buf;
+
/* XXX: support other types */
if (type != SDB_HOST) {
sdb_log(SDB_LOG_ERR, "frontend: Invalid object type %d "
sdb_object_deref(SDB_OBJ(host));
return -1;
}
+ f = sdb_store_json_formatter(buf, type, /* flags = */ 0);
+ if (! f) {
+ char errbuf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to create "
+ "JSON formatter to handle FETCH command: %s",
+ sdb_strerror(errno, errbuf, sizeof(errbuf)));
+
+ sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
+ sdb_strbuf_destroy(buf);
+ sdb_object_deref(SDB_OBJ(host));
+ return -1;
+ }
sdb_strbuf_memcpy(buf, &res_type, sizeof(uint32_t));
- if (sdb_store_host_tojson(host, buf, filter, /* flags = */ 0)) {
+ if (sdb_store_json_emit_full(f, host, filter)) {
sdb_log(SDB_LOG_ERR, "frontend: Failed to serialize "
"host '%s' to JSON", name);
sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
sdb_strbuf_destroy(buf);
+ free(f);
sdb_object_deref(SDB_OBJ(host));
return -1;
}
+ sdb_store_json_finish(f);
sdb_connection_send(conn, CONNECTION_DATA,
(uint32_t)sdb_strbuf_len(buf), sdb_strbuf_string(buf));
sdb_strbuf_destroy(buf);
+ free(f);
sdb_object_deref(SDB_OBJ(host));
return 0;
} /* sdb_fe_exec_fetch */
int
sdb_fe_exec_list(sdb_conn_t *conn, int type, sdb_store_matcher_t *filter)
{
- sdb_strbuf_t *buf;
uint32_t res_type = htonl(CONNECTION_LIST);
- int flags;
-
- if (type == SDB_HOST)
- flags = SDB_SKIP_ALL;
- else if (type == SDB_SERVICE)
- flags = (SDB_SKIP_ALL & (~SDB_SKIP_SERVICES))
- | SDB_SKIP_EMPTY_SERVICES;
- else if (type == SDB_METRIC)
- flags = (SDB_SKIP_ALL & (~SDB_SKIP_METRICS))
- | SDB_SKIP_EMPTY_METRICS;
- else {
- sdb_log(SDB_LOG_ERR, "frontend: Invalid object type %d "
- "for LIST command", type);
- sdb_strbuf_sprintf(conn->errbuf,
- "LIST: Invalid object type %d", type);
- return -1;
- }
+ sdb_store_json_formatter_t *f;
+ sdb_strbuf_t *buf;
buf = sdb_strbuf_create(1024);
if (! buf) {
sdb_strbuf_destroy(buf);
return -1;
}
+ f = sdb_store_json_formatter(buf, type, SDB_WANT_ARRAY);
+ if (! f) {
+ char errbuf[1024];
+ sdb_log(SDB_LOG_ERR, "frontend: Failed to create "
+ "JSON formatter to handle LIST command: %s",
+ sdb_strerror(errno, errbuf, sizeof(errbuf)));
+
+ sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
+ sdb_strbuf_destroy(buf);
+ return -1;
+ }
sdb_strbuf_memcpy(buf, &res_type, sizeof(uint32_t));
- if (sdb_store_tojson(buf, filter, flags)) {
+ if (sdb_store_scan(type, /* m = */ NULL, filter, list_tojson, f)) {
sdb_log(SDB_LOG_ERR, "frontend: Failed to serialize "
"store to JSON");
sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
sdb_strbuf_destroy(buf);
+ free(f);
return -1;
}
+ sdb_store_json_finish(f);
sdb_connection_send(conn, CONNECTION_DATA,
(uint32_t)sdb_strbuf_len(buf), sdb_strbuf_string(buf));
sdb_strbuf_destroy(buf);
+ free(f);
return 0;
} /* sdb_fe_exec_list */