summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 873812b)
raw | patch | inline | side by side (parent: 873812b)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 29 Jul 2014 20:59:28 +0000 (22:59 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 29 Jul 2014 20:59:28 +0000 (22:59 +0200) |
This is in preparation for letting the parser support filters. It's not
actually used yet.
actually used yet.
src/frontend/connection.c | patch | blob | history | |
src/frontend/query.c | patch | blob | history | |
src/include/frontend/connection.h | patch | blob | history |
index 173bdef475a278d264c999194766f82bbadffe6c..777775053af71f0c6ec2fb88d788d47d9f06592d 100644 (file)
}
case CONNECTION_FETCH:
- status = sdb_fe_fetch(conn, sdb_strbuf_string(conn->buf));
+ status = sdb_fe_fetch(conn, sdb_strbuf_string(conn->buf),
+ /* filter = */ NULL);
break;
case CONNECTION_LIST:
- status = sdb_fe_list(conn);
+ status = sdb_fe_list(conn, /* filter = */ NULL);
break;
case CONNECTION_LOOKUP:
{
break;
}
- status = sdb_fe_lookup(conn, m);
+ status = sdb_fe_lookup(conn, m, /* filter = */ NULL);
sdb_object_deref(SDB_OBJ(m));
break;
}
diff --git a/src/frontend/query.c b/src/frontend/query.c
index 53ba81aac38b03dd24bc07922b146a1dc6d23c4c..d83ffd82ca76ab34bd03d0a18359baeaab194c1c 100644 (file)
--- a/src/frontend/query.c
+++ b/src/frontend/query.c
* private helper functions
*/
+typedef struct {
+ sdb_strbuf_t *buf;
+ sdb_store_matcher_t *filter;
+
+ size_t last_len;
+} tojson_data_t;
+
static int
lookup_tojson(sdb_store_obj_t *obj, void *user_data)
{
- sdb_strbuf_t *buf = user_data;
- if (sdb_strbuf_len(buf) > 1)
- sdb_strbuf_append(buf, ",");
- return sdb_store_host_tojson(obj, buf,
- /* filter = */ NULL, /* flags = */ 0);
+ tojson_data_t *data = user_data;
+ int status;
+
+ if (data->filter && (! sdb_store_matcher_matches(data->filter, obj, NULL)))
+ return 0;
+
+ if (sdb_strbuf_len(data->buf) > data->last_len)
+ sdb_strbuf_append(data->buf, ",");
+ data->last_len = sdb_strbuf_len(data->buf);
+ status = sdb_store_host_tojson(obj, data->buf,
+ data->filter, /* flags = */ 0);
+ return status;
} /* lookup_tojson */
/*
switch (node->cmd) {
case CONNECTION_FETCH:
- return sdb_fe_fetch(conn, CONN_FETCH(node)->name);
+ return sdb_fe_fetch(conn, CONN_FETCH(node)->name,
+ /* filter = */ NULL);
case CONNECTION_LIST:
- return sdb_fe_list(conn);
+ return sdb_fe_list(conn, /* filter = */ NULL);
case CONNECTION_LOOKUP:
- return sdb_fe_lookup(conn, CONN_LOOKUP(node)->matcher->matcher);
+ return sdb_fe_lookup(conn, CONN_LOOKUP(node)->matcher->matcher,
+ /* filter = */ NULL);
default:
sdb_log(SDB_LOG_ERR, "frontend: Unknown command %i", node->cmd);
} /* sdb_fe_exec */
int
-sdb_fe_fetch(sdb_conn_t *conn, const char *name)
+sdb_fe_fetch(sdb_conn_t *conn, const char *name, sdb_store_matcher_t *filter)
{
sdb_strbuf_t *buf;
sdb_store_obj_t *host;
return -1;
}
- if (sdb_store_host_tojson(host, buf,
- /* filter = */ NULL, /* flags = */ 0)) {
+ if (sdb_store_host_tojson(host, buf, filter, /* flags = */ 0)) {
sdb_log(SDB_LOG_ERR, "frontend: Failed to serialize "
"host '%s' to JSON", name);
sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
} /* sdb_fe_fetch */
int
-sdb_fe_list(sdb_conn_t *conn)
+sdb_fe_list(sdb_conn_t *conn, sdb_store_matcher_t *filter)
{
sdb_strbuf_t *buf;
return -1;
}
- if (sdb_store_tojson(buf,
- /* filter = */ NULL, /* flags = */ SDB_SKIP_ALL)) {
+ if (sdb_store_tojson(buf, filter, /* flags = */ SDB_SKIP_ALL)) {
sdb_log(SDB_LOG_ERR, "frontend: Failed to serialize "
"store to JSON");
sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
} /* sdb_fe_list */
int
-sdb_fe_lookup(sdb_conn_t *conn, sdb_store_matcher_t *m)
+sdb_fe_lookup(sdb_conn_t *conn, sdb_store_matcher_t *m,
+ sdb_store_matcher_t *filter)
{
- sdb_strbuf_t *buf;
+ tojson_data_t data = { NULL, filter, 0 };
- buf = sdb_strbuf_create(1024);
- if (! buf) {
+ data.buf = sdb_strbuf_create(1024);
+ if (! data.buf) {
char errbuf[1024];
sdb_log(SDB_LOG_ERR, "frontend: Failed to create "
"buffer to handle LOOKUP command: %s",
sdb_strerror(errno, errbuf, sizeof(errbuf)));
sdb_strbuf_sprintf(conn->errbuf, "Out of memory");
- sdb_strbuf_destroy(buf);
+ sdb_strbuf_destroy(data.buf);
return -1;
}
- sdb_strbuf_append(buf, "[");
+ sdb_strbuf_append(data.buf, "[");
- if (sdb_store_scan(m, /* filter */ NULL, lookup_tojson, buf)) {
+ /* Let the JSON serializer handle the filter instead of the scanner. Else,
+ * we'd have to filter twice -- once in the scanner and then again in the
+ * serializer. */
+ data.last_len = sdb_strbuf_len(data.buf);
+ if (sdb_store_scan(m, /* filter */ NULL, lookup_tojson, &data)) {
sdb_log(SDB_LOG_ERR, "frontend: Failed to lookup hosts");
sdb_strbuf_sprintf(conn->errbuf, "Failed to lookup hosts");
- sdb_strbuf_destroy(buf);
+ sdb_strbuf_destroy(data.buf);
return -1;
}
- sdb_strbuf_append(buf, "]");
+ sdb_strbuf_append(data.buf, "]");
sdb_connection_send(conn, CONNECTION_OK,
- (uint32_t)sdb_strbuf_len(buf), sdb_strbuf_string(buf));
- sdb_strbuf_destroy(buf);
+ (uint32_t)sdb_strbuf_len(data.buf), sdb_strbuf_string(data.buf));
+ sdb_strbuf_destroy(data.buf);
return 0;
} /* sdb_fe_lookup */
index 4791a5e4523c61f1d76d56f88c113d1c4ae26382..30e6509b553e73b910c9d3b120d5b0c98bef42e6 100644 (file)
/*
* sdb_fe_fetch:
- * Send the named host, serialized as JSON, to the client.
+ * Send the named host, serialized as JSON, to the client. If specified, only
+ * objects matching the filter will be included. See sdb_store_tojson for
+ * details.
*
* Returns:
* - 0 on success
* - a negative value else
*/
int
-sdb_fe_fetch(sdb_conn_t *conn, const char *name);
+sdb_fe_fetch(sdb_conn_t *conn, const char *name, sdb_store_matcher_t *filter);
/*
* sdb_fe_list:
- * Send a complete listing of the store, serialized as JSON, to the client.
+ * Send a complete listing of the store, serialized as JSON, to the client. If
+ * specified, only objects matching the filter will be included. See
+ * sdb_store_tojson for details.
*
* Returns:
* - 0 on success
* - a negative value else
*/
int
-sdb_fe_list(sdb_conn_t *conn);
+sdb_fe_list(sdb_conn_t *conn, sdb_store_matcher_t *filter);
/*
* sdb_fe_lookup:
- * Send a list of hosts matching 'm', serialized as JSON, to the client.
+ * Send a list of hosts matching 'm', serialized as JSON, to the client. If
+ * specified, only objects matching the filter will be included. See
+ * sdb_store_tojson for details.
*
* Returns:
* - 0 on success
* - a negative value else
*/
int
-sdb_fe_lookup(sdb_conn_t *conn, sdb_store_matcher_t *m);
+sdb_fe_lookup(sdb_conn_t *conn, sdb_store_matcher_t *m,
+ sdb_store_matcher_t *filter);
#ifdef __cplusplus
} /* extern "C" */