use EC_NO_ID instead of NULL
[protos/libecoli.git] / lib / main-readline.c
index 379c36e..304b074 100644 (file)
 #define _GNU_SOURCE /* for asprintf */
 #include <stdlib.h>
 #include <stdio.h>
+#include <errno.h>
 #include <assert.h>
 
 #include <readline/readline.h>
 #include <readline/history.h>
 
-#include <ecoli_tk_str.h>
-#include <ecoli_tk_seq.h>
-#include <ecoli_tk_space.h>
-#include <ecoli_tk_or.h>
-#include <ecoli_tk_shlex.h>
-#include <ecoli_tk_int.h>
-
-static struct ec_tk *commands;
+#include <ecoli_init.h>
+#include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
+#include <ecoli_keyval.h>
+#include <ecoli_node_str.h>
+#include <ecoli_node_seq.h>
+#include <ecoli_node_space.h>
+#include <ecoli_node_or.h>
+#include <ecoli_node_sh_lex.h>
+#include <ecoli_node_int.h>
+#include <ecoli_node_option.h>
+#include <ecoli_node_cmd.h>
+#include <ecoli_node_many.h>
+#include <ecoli_node_once.h>
+#include <ecoli_node_file.h>
+
+static struct ec_node *commands;
 
 static char *my_completion_entry(const char *s, int state)
 {
-       static struct ec_completed_tk *c;
-       static struct ec_completed_tk_iter *iter;
-       static const struct ec_completed_tk_elt *elt;
-       char *out_string;
+       static struct ec_completed *c;
+       static struct ec_completed_iter *iter;
+       const struct ec_completed_item *item;
+       enum ec_completed_type item_type;
+       const char *item_str, *item_display;
+
+       (void)s;
 
+       /* Don't append a quote. Note: there are still some bugs when
+        * completing a quoted token. */
+       rl_completion_suppress_quote = 1;
+       rl_completer_quote_characters = "\"'";
 
        if (state == 0) {
                char *line;
 
-               ec_completed_tk_free(c);
-
+               ec_completed_free(c);
                line = strdup(rl_line_buffer);
                if (line == NULL)
                        return NULL;
                line[rl_point] = '\0';
 
-               c = ec_tk_complete(commands, line);
+               c = ec_node_complete(commands, line);
                free(line);
                if (c == NULL)
                        return NULL;
 
-               ec_completed_tk_iter_free(iter);
-               iter = ec_completed_tk_iter_new(c, ITER_MATCH);
+               ec_completed_iter_free(iter);
+               iter = ec_completed_iter(c, EC_COMP_FULL | EC_COMP_PARTIAL);
                if (iter == NULL)
                        return NULL;
        }
 
-       elt = ec_completed_tk_iter_next(iter);
-       if (elt == NULL)
+       item = ec_completed_iter_next(iter);
+       if (item == NULL)
                return NULL;
 
-       if (asprintf(&out_string, "%s%s", s, elt->add) < 0)
-               return NULL;
+       item_str = ec_completed_item_get_str(item);
+       if (c->count_match == 1) {
+
+               /* don't add the trailing space for partial completions */
+               if (state == 0) {
+                       item_type = ec_completed_item_get_type(item);
+                       if (item_type == EC_COMP_FULL)
+                               rl_completion_suppress_append = 0;
+                       else
+                               rl_completion_suppress_append = 1;
+               }
+
+               return strdup(item_str);
+       } else if (rl_completion_type == '?') {
+               /* on second try only show the display part */
+               item_display = ec_completed_item_get_display(item);
+               return strdup(item_display);
+       }
 
-       return out_string;
+       return strdup(item_str);
 }
 
 static char **my_attempted_completion(const char *text, int start, int end)
@@ -92,59 +125,245 @@ static char **my_attempted_completion(const char *text, int start, int end)
        return rl_completion_matches(text, my_completion_entry);
 }
 
+/* this function builds the help string */
+static char *get_node_help(const struct ec_completed_item *item)
+{
+       const struct ec_completed_group *grp;
+       struct ec_parsed *state; // XXX keep const with macro
+       const struct ec_node *node;
+       char *help = NULL;
+       const char *node_help = NULL;
+       const char *node_desc = NULL;
+
+       grp = ec_completed_item_get_grp(item);
+       state = grp->state;
+       ec_parsed_dump(stdout, ec_parsed_get_root(state));
+       for (state = grp->state; state != NULL;
+            state = ec_parsed_get_parent(state)) {
+               node = ec_parsed_get_node(state);
+               if (node_help == NULL)
+                       node_help = ec_keyval_get(ec_node_attrs(node), "help");
+               if (node_desc == NULL)
+                       node_desc = ec_node_desc(node);
+       }
+
+       if (node_help == NULL)
+               node_help = "-";
+       if (node_desc == NULL)
+               return NULL;
+
+       if (asprintf(&help, "%-20s %s", node_desc, node_help) < 0)
+               return NULL;
+
+       return help;
+}
 
 static int show_help(int ignore, int invoking_key)
 {
-       struct ec_completed_tk *c;
-       char *line;
+       struct ec_completed_iter *iter;
+       const struct ec_completed_group *grp, *prev_grp = NULL;
+       const struct ec_completed_item *item;
+       struct ec_completed *c;
+       struct ec_parsed *p;
+       char *line = NULL;
+       unsigned int count;
+       char **helps = NULL;
+       int match = 0;
 
        (void)ignore;
        (void)invoking_key;
 
-       printf("\nhelp:\n");
        line = strdup(rl_line_buffer);
        if (line == NULL)
-               return 1;
-       line[rl_point] = '\0';
+               goto fail;
+
+       /* check if the current line matches */
+       p = ec_node_parse(commands, line);
+       if (ec_parsed_matches(p))
+               match = 1;
+       ec_parsed_free(p);
+       p = NULL;
 
-       c = ec_tk_complete(commands, line);
+       /* complete at current cursor position */
+       line[rl_point] = '\0';
+       c = ec_node_complete(commands, line);
        free(line);
+       line = NULL;
        if (c == NULL)
-               return 1;
-       ec_completed_tk_dump(stdout, c);
-       ec_completed_tk_free(c);
+               goto fail;
+
+       ec_completed_dump(stdout, c);
+
+       /* let's display one contextual help per node */
+       count = 0;
+       iter = ec_completed_iter(c,
+               EC_COMP_UNKNOWN | EC_COMP_FULL | EC_COMP_PARTIAL);
+       if (iter == NULL)
+               goto fail;
+
+       /* strangely, rl_display_match_list() expects first index at 1 */
+       helps = calloc(match + 1, sizeof(char *));
+       if (helps == NULL)
+               goto fail;
+       if (match)
+               helps[1] = "<return>";
+
+       while ((item = ec_completed_iter_next(iter)) != NULL) {
+               char **tmp;
+
+               /* keep one help per group, skip other items  */
+               grp = ec_completed_item_get_grp(item);
+               if (grp == prev_grp)
+                       continue;
+
+               prev_grp = grp;
+
+               tmp = realloc(helps, (count + match + 2) * sizeof(char *));
+               if (tmp == NULL)
+                       goto fail;
+               helps = tmp;
+               helps[count + match + 1] = get_node_help(item);
+               count++;
+       }
 
+       ec_completed_iter_free(iter);
+       ec_completed_free(c);
+       rl_display_match_list(helps, count + match, 1000); /* XXX 1000 */
        rl_forced_update_display();
 
        return 0;
+
+fail:
+       ec_completed_iter_free(iter);
+       ec_parsed_free(p);
+       free(line);
+       ec_completed_free(c);
+       if (helps != NULL) {
+               while (count--)
+                       free(helps[count + match + 1]);
+       }
+       free(helps);
+
+       return 1;
 }
 
-int main(void)
+static int create_commands(void)
 {
-       struct ec_parsed_tk *p;
-//     const char *name;
-       char *line;
+       struct ec_node *cmdlist = NULL, *cmd = NULL;
+
+       cmdlist = ec_node("or", EC_NO_ID);
+       if (cmdlist == NULL)
+               goto fail;
+
+
+       cmd = EC_NODE_SEQ(EC_NO_ID,
+               ec_node_str(EC_NO_ID, "hello"),
+               EC_NODE_OR("name",
+                       ec_node_str("john", "john"),
+                       ec_node_str(EC_NO_ID, "johnny"),
+                       ec_node_str(EC_NO_ID, "mike")
+               ),
+               ec_node_option(EC_NO_ID, ec_node_int("int", 0, 10, 10))
+       );
+       if (cmd == NULL)
+               goto fail;
+       ec_keyval_set(ec_node_attrs(cmd), "help",
+               "say hello to someone several times", NULL);
+       ec_keyval_set(ec_node_attrs(ec_node_find(cmd, "john")),
+               "help", "specific help for john", NULL);
+       ec_keyval_set(ec_node_attrs(ec_node_find(cmd, "name")),
+               "help", "the name of the person", NULL);
+       ec_keyval_set(ec_node_attrs(ec_node_find(cmd, "int")),
+               "help", "an integer (0-10)", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
+
+
+       cmd = EC_NODE_CMD(EC_NO_ID, "good morning name [count]",
+                       EC_NODE_CMD("name", "bob|bobby|michael"),
+                       ec_node_int("count", 0, 10, 10));
+       if (cmd == NULL)
+               goto fail;
+       ec_keyval_set(ec_node_attrs(cmd), "help",
+               "say good morning to someone several times", NULL);
+       ec_keyval_set(ec_node_attrs(ec_node_find(cmd, "name")), "help",
+               "the person to greet", NULL);
+       ec_keyval_set(ec_node_attrs(ec_node_find(cmd, "count")), "help",
+               "how many times to greet (0-10)", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
+
+
+       cmd = EC_NODE_CMD(EC_NO_ID,
+                       "buy potatoes,carrots,pumpkins");
+       if (cmd == NULL)
+               goto fail;
+       ec_keyval_set(ec_node_attrs(cmd), "help",
+               "buy some vegetables", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
+
+
+       cmd = EC_NODE_CMD(EC_NO_ID, "eat vegetables",
+                       ec_node_many("vegetables",
+                               EC_NODE_OR(EC_NO_ID,
+                                       ec_node_str(EC_NO_ID, "potatoes"),
+                                       ec_node_once(EC_NO_ID,
+                                               ec_node_str(EC_NO_ID, "carrots")),
+                                       ec_node_once(EC_NO_ID,
+                                               ec_node_str(EC_NO_ID, "pumpkins"))),
+                       1, 0));
+       if (cmd == NULL)
+               goto fail;
+       ec_keyval_set(ec_node_attrs(cmd), "help",
+               "eat vegetables (take some more potatoes)", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
+
+
+       cmd = EC_NODE_SEQ(EC_NO_ID,
+               ec_node_str(EC_NO_ID, "bye")
+       );
+       ec_keyval_set(ec_node_attrs(cmd), "help", "say bye", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
 
-       rl_bind_key('?', show_help);
 
-       commands = ec_tk_shlex_new(NULL,
-               ec_tk_seq_new_list(NULL,
-                       ec_tk_str_new(NULL, "hello"),
-                       ec_tk_or_new_list("name",
-                               ec_tk_str_new(NULL, "john"),
-                               ec_tk_str_new(NULL, "johnny"),
-                               ec_tk_str_new(NULL, "mike"),
-                               ec_tk_int_new(NULL, 0, 10, 10),
-                               EC_TK_ENDLIST
-                       ),
-                       EC_TK_ENDLIST
-               )
+       cmd = EC_NODE_SEQ(EC_NO_ID,
+               ec_node_str(EC_NO_ID, "load"),
+               ec_node("file", EC_NO_ID)
        );
-       if (commands == NULL) {
-               printf("cannot create token\n");
+       ec_keyval_set(ec_node_attrs(cmd), "help", "load a file", NULL);
+       if (ec_node_or_add(cmdlist, cmd) < 0)
+               goto fail;
+
+
+       commands = ec_node_sh_lex(EC_NO_ID, cmdlist);
+       if (commands == NULL)
+               goto fail;
+
+       return 0;
+
+ fail:
+       fprintf(stderr, "cannot initialize nodes\n");
+       ec_node_free(cmdlist);
+       return -1;
+}
+
+int main(void)
+{
+       struct ec_parsed *p;
+       char *line;
+
+       if (ec_init() < 0) {
+               fprintf(stderr, "cannot init ecoli: %s\n", strerror(errno));
                return 1;
        }
 
+       if (create_commands() < 0)
+               return 1;
+
+       rl_bind_key('?', show_help);
        rl_attempted_completion_function = my_attempted_completion;
 
        while (1) {
@@ -152,13 +371,14 @@ int main(void)
                if (line == NULL)
                        break;
 
-               p = ec_tk_parse(commands, line);
-               ec_parsed_tk_dump(stdout, p);
+               p = ec_node_parse(commands, line);
+               ec_parsed_dump(stdout, p);
                add_history(line);
-               ec_parsed_tk_free(p);
+               ec_parsed_free(p);
        }
 
 
-       ec_tk_free(commands);
+       ec_node_free(commands);
        return 0;
+
 }