Code

Merged branch 'master' of git://git.tokkee.org/sysdb.
[sysdb.git] / src / tools / sysdb / command.c
index 30e6419e334d1b105749db8861826f2adf5f2883..c79259e401c0786bb80336601208b058180e23e9 100644 (file)
 #include "tools/sysdb/input.h"
 
 #include "frontend/proto.h"
+#include "utils/error.h"
 #include "utils/strbuf.h"
 
+#include <errno.h>
+
 #include <assert.h>
 #include <ctype.h>
 #include <string.h>
  * public API
  */
 
+int
+sdb_command_print_reply(sdb_client_t *client)
+{
+       sdb_strbuf_t *recv_buf;
+       const char *result;
+       uint32_t rcode = 0;
+
+       recv_buf = sdb_strbuf_create(1024);
+       if (! recv_buf)
+               return -1;
+
+       if (sdb_client_recv(client, &rcode, recv_buf) < 0)
+               rcode = UINT32_MAX;
+
+       if (sdb_client_eof(client))
+               return -1;
+
+       if (rcode == UINT32_MAX)
+               printf("ERROR: ");
+       result = sdb_strbuf_string(recv_buf);
+       if (result && *result)
+               printf("%s\n", result);
+       else if (rcode == UINT32_MAX) {
+               char errbuf[1024];
+               printf("%s\n", sdb_strerror(errno, errbuf, sizeof(errbuf)));
+       }
+
+       sdb_strbuf_destroy(recv_buf);
+       return 0;
+} /* sdb_command_print_reply */
+
 char *
 sdb_command_exec(sdb_input_t *input)
 {
@@ -65,25 +99,12 @@ sdb_command_exec(sdb_input_t *input)
                --query_len;
 
        if (query_len) {
-               sdb_strbuf_t *recv_buf;
-               uint32_t rcode = 0;
-
-               recv_buf = sdb_strbuf_create(1024);
-               if (! recv_buf)
-                       return NULL;
-
                data = strndup(query, query_len);
                /* ignore errors; we'll only hide the command from the caller */
 
                sdb_client_send(input->client, CONNECTION_QUERY, query_len, query);
-               if (sdb_client_recv(input->client, &rcode, recv_buf) < 0)
-                       rcode = UINT32_MAX;
-
-               if (rcode == UINT32_MAX)
-                       printf("ERROR: ");
-               printf("%s\n", sdb_strbuf_string(recv_buf));
-
-               sdb_strbuf_destroy(recv_buf);
+               if (sdb_command_print_reply(input->client))
+                       return NULL;
        }
 
        sdb_strbuf_skip(input->input, 0, input->query_len);