28ef74a4b81cc873a3b6e4fa90a8fe15a6ebda0d
[adu.git] / interactive.c
1 #include <ctype.h> /* isspace() */
2
3 #include "adu.h"
4 #include "format.h"
5 #include "select.h"
6 #include "string.h"
7 #include "error.h"
8 #include "cmdline.h"
9
10 struct interactive_command {
11         const char *name;
12         int (*handler)(char *);
13         const char *desc;
14 };
15
16 static struct uid_range *admissible_uids;
17 static struct format_info *fi;
18
19 #define INTERACTIVE_COMMANDS \
20         INTERACTIVE_COMMAND(set, "change the current configuration") \
21         INTERACTIVE_COMMAND(reset, "reset configuration to defaults") \
22         INTERACTIVE_COMMAND(help, "show list of commands and one-line descriptions") \
23         INTERACTIVE_COMMAND(run, "start the query according to the current configuration")
24
25
26 #define INTERACTIVE_COMMAND(name, desc) \
27         static int icom_ ## name (char *line);
28
29 INTERACTIVE_COMMANDS
30
31 #undef INTERACTIVE_COMMAND
32
33 #define INTERACTIVE_COMMAND(_name, _desc) \
34         { \
35         .name = #_name, \
36         .handler = icom_ ## _name, \
37         .desc = _desc \
38         },
39
40 struct interactive_command icmds[] = {
41         INTERACTIVE_COMMANDS
42         {.name  = NULL}
43 };
44
45 #define FOR_EACH_COMMAND(c) for (c = icmds; c->name; c++)
46
47 static int read_input_line(char *line, size_t size)
48 {
49         return fgets(line, size, stdin)? 1 : -1;
50 }
51
52 static int icom_run(__a_unused char *line)
53 {
54         return run_select_query(admissible_uids, fi);
55 }
56
57 static int icom_help(__a_unused char *line)
58 {
59         struct interactive_command *c;
60
61         FOR_EACH_COMMAND(c)
62                 fprintf(stdout, "%s\t%s\n", c->name, c->desc);
63         return 1;
64 }
65
66 void print_interactive_help(void)
67 {
68         icom_help(NULL);
69 }
70
71 static int icom_reset(__a_unused char *line)
72 {
73         select_cmdline_parser_init(&select_conf);
74         return 1;
75 }
76
77 static int icom_set(char *line)
78 {
79         struct select_cmdline_parser_params params = {
80                 .override = 1,
81                 .initialize = 0,
82                 .check_required = 1,
83                 .check_ambiguity = 0,
84                 .print_errors = 1
85         };
86         if (!line) {
87                 select_cmdline_parser_dump(stdout, &select_conf);
88                 return 1;
89         }
90
91         return parse_select_options(line, &params, &admissible_uids, &fi);
92 }
93
94 static int exec_interactive_command(char *line)
95 {
96         const char const *delim = "\t\n\f\r\v ";
97         int i;
98         char *cmd, *args;
99         int ret = -E_SYNTAX;
100         size_t len;
101
102         if (!line || !*line)
103                 return 1;
104         len = strlen(line);
105
106         while (len && isspace(line[len - 1])) {
107                 line[len - 1] = '\0';
108                 len--;
109         }
110         if (!len)
111                 return 1;
112         line += strspn(line, delim); /* skip initial whitespace */
113         if (!*line)
114                 return 1;
115         /* OK, we have a non-empty line */
116         cmd = adu_strdup(line);
117         args = cmd + strcspn(cmd, delim);
118         if (!*args)
119                 args = NULL;
120         else {
121                 *args = '\0';
122                 args++;
123                 /* let p point to the next non-whitespace char */
124                 args += strspn(args, delim);
125                 if (!*args)
126                         args = NULL;
127         }
128         DEBUG_LOG("name: %s, args: %s.\n", cmd, args);
129         for (i = 0; icmds[i].name; i++) {
130                 if (strcmp(icmds[i].name, cmd))
131                         continue;
132                 INFO_LOG("exec cmd: %s, args: %s\n", cmd, args);
133                 ret = icmds[i].handler(args);
134                 break;
135         }
136         free(cmd);
137         return ret;
138 }
139
140 int com_interactive(void)
141 {
142         char line[255];
143         int ret = 1;
144
145         select_cmdline_parser_init(&select_conf);
146         ret = parse_select_options(NULL, NULL, &admissible_uids, &fi);
147         while (read_input_line(line, sizeof(line)) >= 0) {
148                 ret = exec_interactive_command(line);
149                 if (ret < 0)
150                         printf("%s\n", adu_strerror(-ret));
151         }
152         return ret;
153 }