summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 938471b)
raw | patch | inline | side by side (parent: 938471b)
author | Sebastian Harl <sh@tokkee.org> | |
Sun, 5 Jun 2016 16:08:47 +0000 (18:08 +0200) | ||
committer | Sebastian Harl <sh@tokkee.org> | |
Sun, 25 Sep 2016 10:42:45 +0000 (12:42 +0200) |
Implement the generic interface for LISTVAL and switch the LISTVAL
implementation to use the generic interface.
implementation to use the generic interface.
diff --git a/src/unixsock.c b/src/unixsock.c
index 3098aa83e343d95634c34d8ed33e46b4459fe670..897ebfc5aef8df149a18e131d1b8b0d3b2b1587b 100644 (file)
--- a/src/unixsock.c
+++ b/src/unixsock.c
}
else if (strcasecmp (fields[0], "listval") == 0)
{
- handle_listval (fhout, buffer);
+ cmd_handle_listval (fhout, buffer);
}
else if (strcasecmp (fields[0], "putnotif") == 0)
{
index afbd01d0ceed106dd2b4852d06ca5b7a76e3dcea..b31cb1eb3e15edab08f1e085e9f1c46cae35af8f 100644 (file)
--- a/src/utils_cmd_listval.c
+++ b/src/utils_cmd_listval.c
#include "utils_cache.h"
#include "utils_parse_option.h"
+cmd_status_t cmd_parse_listval (size_t argc, char **argv,
+ cmd_listval_t *ret_listval __attribute__((unused)),
+ cmd_error_handler_t *err)
+{
+ if (argc != 0)
+ {
+ cmd_error (CMD_PARSE_ERROR, err,
+ "Garbage after end of command: `%s'.", argv[0]);
+ return (CMD_PARSE_ERROR);
+ }
+
+ return (CMD_OK);
+} /* cmd_status_t cmd_parse_listval */
+
#define free_everything_and_return(status) do { \
for (size_t j = 0; j < number; j++) { \
sfree(names[j]); \
char errbuf[1024]; \
WARNING ("handle_listval: failed to write to socket #%i: %s", \
fileno (fh), sstrerror (errno, errbuf, sizeof (errbuf))); \
- free_everything_and_return (-1); \
+ free_everything_and_return (CMD_ERROR); \
} \
fflush(fh); \
} while (0)
-int handle_listval (FILE *fh, char *buffer)
+cmd_status_t cmd_handle_listval (FILE *fh, char *buffer)
{
- char *command;
+ cmd_error_handler_t err = { cmd_error_fh, fh };
+ cmd_status_t status;
+ cmd_t cmd;
+
char **names = NULL;
cdtime_t *times = NULL;
size_t number = 0;
- int status;
DEBUG ("utils_cmd_listval: handle_listval (fh = %p, buffer = %s);",
(void *) fh, buffer);
- command = NULL;
- status = parse_string (&buffer, &command);
- if (status != 0)
- {
- print_to_socket (fh, "-1 Cannot parse command.\n");
- free_everything_and_return (-1);
- }
- assert (command != NULL);
-
- if (strcasecmp ("LISTVAL", command) != 0)
- {
- print_to_socket (fh, "-1 Unexpected command: `%s'.\n", command);
- free_everything_and_return (-1);
- }
-
- if (*buffer != 0)
+ if ((status = cmd_parse (buffer, &cmd, &err)) != CMD_OK)
+ return (status);
+ if (cmd.type != CMD_LISTVAL)
{
- print_to_socket (fh, "-1 Garbage after end of command: %s\n", buffer);
- free_everything_and_return (-1);
+ cmd_error (CMD_UNKNOWN_COMMAND, &err,
+ "Unexpected command: `%s'.", CMD_TO_STRING (cmd.type));
+ free_everything_and_return (CMD_UNKNOWN_COMMAND);
}
status = uc_get_names (&names, ×, &number);
if (status != 0)
{
DEBUG ("command listval: uc_get_names failed with status %i", status);
- print_to_socket (fh, "-1 uc_get_names failed.\n");
- free_everything_and_return (-1);
+ cmd_error (CMD_ERROR, &err, "uc_get_names failed.");
+ free_everything_and_return (CMD_ERROR);
}
print_to_socket (fh, "%i Value%s found\n",
print_to_socket (fh, "%.3f %s\n", CDTIME_T_TO_DOUBLE (times[i]),
names[i]);
- free_everything_and_return (0);
-} /* int handle_listval */
+ free_everything_and_return (CMD_OK);
+} /* cmd_status_t cmd_handle_listval */
/* vim: set sw=2 sts=2 ts=8 : */
index fc125bc1ce0ec45f6eb0db694037bba25857bb6d..5d2866de9b48d4de04fe4919f4e6bf7b929c7c08 100644 (file)
--- a/src/utils_cmd_listval.h
+++ b/src/utils_cmd_listval.h
#include <stdio.h>
-int handle_listval (FILE *fh, char *buffer);
+#include "utils_cmds.h"
+
+cmd_status_t cmd_parse_listval (size_t argc, char **argv,
+ cmd_listval_t *ret_listval, cmd_error_handler_t *err);
+
+cmd_status_t cmd_handle_listval (FILE *fh, char *buffer);
+
+void cmd_destroy_listval (cmd_listval_t *listval);
#endif /* UTILS_CMD_LISTVAL_H */
diff --git a/src/utils_cmds.c b/src/utils_cmds.c
index f5494a4c624d8acd3b7273f8e2558792eede4014..7648435b86692d80abcc832e3d9f86fb8a49ea2f 100644 (file)
--- a/src/utils_cmds.c
+++ b/src/utils_cmds.c
#include "utils_cmds.h"
#include "utils_cmd_flush.h"
+#include "utils_cmd_listval.h"
#include "utils_cmd_putval.h"
#include "utils_parse_option.h"
#include "daemon/common.h"
return cmd_parse_flush (argc - 1, argv + 1,
&ret_cmd->cmd.flush, err);
}
+ else if (strcasecmp ("LISTVAL", command) == 0)
+ {
+ ret_cmd->type = CMD_LISTVAL;
+ return cmd_parse_listval (argc - 1, argv + 1,
+ &ret_cmd->cmd.listval, err);
+ }
else if (strcasecmp ("PUTVAL", command) == 0)
{
ret_cmd->type = CMD_PUTVAL;
case CMD_FLUSH:
cmd_destroy_flush (&cmd->cmd.flush);
break;
+ case CMD_LISTVAL:
+ cmd_destroy_listval (&cmd->cmd.listval);
+ break;
case CMD_PUTVAL:
cmd_destroy_putval (&cmd->cmd.putval);
break;
diff --git a/src/utils_cmds.h b/src/utils_cmds.h
index 21564cb855da87049640cc67dd0d1954c9f6b8fe..12bf6a85870f1359a55739b9590de1dedee2d7f1 100644 (file)
--- a/src/utils_cmds.h
+++ b/src/utils_cmds.h
typedef enum {
CMD_UNKNOWN = 0,
CMD_FLUSH = 1,
- CMD_PUTVAL = 2,
+ CMD_LISTVAL = 2,
+ CMD_PUTVAL = 3,
} cmd_type_t;
#define CMD_TO_STRING(type) \
((type) == CMD_FLUSH) ? "FLUSH" \
+ : ((type) == CMD_LISTVAL) ? "LISTVAL" \
: ((type) == CMD_PUTVAL) ? "PUTVAL" \
: "UNKNOWN"
size_t identifiers_num;
} cmd_flush_t;
+typedef struct {
+} cmd_listval_t;
+
typedef struct {
/* The raw identifier as provided by the user. */
char *identifier;
cmd_type_t type;
union {
cmd_flush_t flush;
+ cmd_listval_t listval;
cmd_putval_t putval;
} cmd;
} cmd_t;