summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0ede4f5)
raw | patch | inline | side by side (parent: 0ede4f5)
author | Sebastian Harl <sh@tokkee.org> | |
Tue, 16 Sep 2014 16:48:57 +0000 (18:48 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Tue, 16 Sep 2014 16:48:57 +0000 (18:48 +0200) |
The priority is encoded as 32 bit integer in network byte order and added as a
separate field before the actual log message.
The 'sysdb' client now handles LOG messages accordingly and prefixes the
message with a string describing the priority.
separate field before the actual log message.
The 'sysdb' client now handles LOG messages accordingly and prefixes the
message with a string describing the priority.
src/frontend/connection.c | patch | blob | history | |
src/include/frontend/proto.h | patch | blob | history | |
src/tools/sysdb/command.c | patch | blob | history |
index a7414017284a558cfc0000dfdd8ab5d80d3d1c5c..a8dfeee86e93597b5239f9709487c867bb1a5670 100644 (file)
connection_log(int prio, const char *msg,
sdb_object_t __attribute__((unused)) *user_data)
{
+ uint32_t len = (uint32_t)sizeof(uint32_t) + (uint32_t)strlen(msg);
+ uint32_t p = htonl((uint32_t)prio);
+ char tmp[len + 1];
+
sdb_conn_t *conn;
conn = sdb_conn_get_ctx();
if (prio >= SDB_LOG_DEBUG)
return 0;
- /* TODO: Use CONNECTION_LOG_<prio>? */
- if (sdb_connection_send(conn, CONNECTION_LOG,
- (uint32_t)strlen(msg), msg) < 0)
+ memcpy(tmp, &p, sizeof(p));
+ strcpy(tmp + sizeof(p), msg);
+
+ if (sdb_connection_send(conn, CONNECTION_LOG, len, tmp) < 0)
return -1;
return 0;
} /* connection_log */
index feac94685356e1f3a0deccc782b341fd01312519..2fabad513b06e5c156c021617262606de628c7f2 100644 (file)
/*
* CONNECTION_LOG:
* Indicates an asynchronous log message. The message body will contain
- * the message string providing informational or warning logs. Log
- * messages may be sent to the client any time.
+ * the log priority (see utils/error.h) and message. Log messages may be
+ * sent to the client any time.
*
* 0 32 64
* +---------------+---------------+
* | message type | length |
* +---------------+---------------+
- * | log message ... |
+ * | log priority | log message |
+ * +---------------+ |
+ * | ... |
*/
CONNECTION_LOG,
index 718309bfad693678f93e1017eb5e01578b1b3b5a..d30ec6084179a614fcf386cf87e3a9dcad9e0079 100644 (file)
# include "config.h"
#endif /* HAVE_CONFIG_H */
+#include "sysdb.h"
+
#include "tools/sysdb/command.h"
#include "tools/sysdb/input.h"
#include "frontend/proto.h"
#include "utils/error.h"
+#include "utils/proto.h"
#include "utils/strbuf.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
+static void
+log_printer(sdb_strbuf_t *buf)
+{
+ uint32_t prio = sdb_proto_get_int(buf, 0);
+
+ if (prio == UINT32_MAX) {
+ printf("ERROR: Received a LOG message with invalid "
+ "or missing priority\n");
+ return;
+ }
+ sdb_strbuf_skip(buf, 0, sizeof(prio));
+
+ printf("%s: %s\n", SDB_LOG_PRIO_TO_STRING((int)prio),
+ sdb_strbuf_string(buf));
+} /* log_printer */
+
+static void
+data_printer(sdb_strbuf_t *buf)
+{
+ if (sdb_strbuf_len(buf) <= sizeof(uint32_t)) {
+ printf("ERROR: Received a DATA message with invalid "
+ "or missing data-type\n");
+ return;
+ }
+
+ /* At the moment, we don't care about the result type. We simply print the
+ * result without further parsing it. */
+ sdb_strbuf_skip(buf, 0, sizeof(uint32_t));
+ printf("%s\n", sdb_strbuf_string(buf));
+} /* data_printer */
+
+static struct {
+ int status;
+ void (*printer)(sdb_strbuf_t *);
+} response_printers[] = {
+ { CONNECTION_LOG, log_printer },
+ { CONNECTION_DATA, data_printer },
+};
+
/*
* public API
*/
sdb_strbuf_t *recv_buf;
const char *result;
uint32_t rcode = 0;
+
int status = 0;
+ size_t i;
recv_buf = sdb_strbuf_create(1024);
if (! recv_buf)
else
status = (int)rcode;
+ for (i = 0; i < SDB_STATIC_ARRAY_LEN(response_printers); ++i) {
+ if (status == response_printers[i].status) {
+ response_printers[i].printer(recv_buf);
+ sdb_strbuf_destroy(recv_buf);
+ return status;
+ }
+ }
+
result = sdb_strbuf_string(recv_buf);
- /* At the moment, we don't care about the result type. We simply print the
- * result without further parsing it. */
- if (status == CONNECTION_DATA)
- result += sizeof(uint32_t);
if (result && *result)
printf("%s\n", result);
else if (rcode == UINT32_MAX) {