]> git.droids-corp.org - protos/libecoli.git/commitdiff
save
authorOlivier Matz <zer0@droids-corp.org>
Thu, 15 Jun 2017 20:43:24 +0000 (22:43 +0200)
committerOlivier Matz <zer0@droids-corp.org>
Thu, 15 Jun 2017 20:43:24 +0000 (22:43 +0200)
26 files changed:
lib/Makefile
lib/ecoli_completed.c [new file with mode: 0644]
lib/ecoli_completed.h [new file with mode: 0644]
lib/ecoli_node.c
lib/ecoli_node.h
lib/ecoli_node_cmd.c
lib/ecoli_node_empty.c
lib/ecoli_node_expr.c
lib/ecoli_node_expr_test.c
lib/ecoli_node_int.c
lib/ecoli_node_many.c
lib/ecoli_node_option.c
lib/ecoli_node_or.c
lib/ecoli_node_re.c
lib/ecoli_node_re_lex.c
lib/ecoli_node_seq.c
lib/ecoli_node_sh_lex.c
lib/ecoli_node_space.c
lib/ecoli_node_str.c
lib/ecoli_node_subset.c
lib/ecoli_node_weakref.c
lib/ecoli_parsed.c [new file with mode: 0644]
lib/ecoli_parsed.h [new file with mode: 0644]
lib/ecoli_test.c
lib/main-readline.c
lib/todo.txt

index da9961a760da23a34372c297b775620eb137ba71..cb35f8299fe572c37139c6ebcb80e1e0b4996d42 100644 (file)
@@ -34,6 +34,7 @@ CFLAGS  = -g -O0 -Wall -Werror -W -Wextra -fPIC -Wmissing-prototypes
 CFLAGS += -I.
 
 srcs :=
+srcs += ecoli_completed.c
 srcs += ecoli_keyval.c
 srcs += ecoli_log.c
 srcs += ecoli_malloc.c
@@ -56,6 +57,7 @@ srcs += ecoli_node_space.c
 srcs += ecoli_node_str.c
 srcs += ecoli_node_subset.c
 srcs += ecoli_node_weakref.c
+srcs += ecoli_parsed.c
 
 shlib-y-$(O)libecoli.so := $(srcs)
 
diff --git a/lib/ecoli_completed.c b/lib/ecoli_completed.c
new file mode 100644 (file)
index 0000000..60588e5
--- /dev/null
@@ -0,0 +1,321 @@
+/*
+ * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in the
+ *       documentation and/or other materials provided with the distribution.
+ *     * Neither the name of the University of California, Berkeley nor the
+ *       names of its contributors may be used to endorse or promote products
+ *       derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
+#include <errno.h>
+
+#include <ecoli_malloc.h>
+#include <ecoli_strvec.h>
+#include <ecoli_keyval.h>
+#include <ecoli_log.h>
+#include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
+
+struct ec_completed *ec_completed(void)
+{
+       struct ec_completed *completed = NULL;
+
+       completed = ec_calloc(1, sizeof(*completed));
+       if (completed == NULL)
+               return NULL;
+
+       TAILQ_INIT(&completed->elts);
+       completed->count_match = 0;
+
+       return completed;
+}
+
+struct ec_completed_elt *ec_completed_elt(const struct ec_node *node,
+       const char *add)
+{
+       struct ec_completed_elt *elt = NULL;
+
+       elt = ec_calloc(1, sizeof(*elt));
+       if (elt == NULL)
+               return NULL;
+
+       elt->node = node;
+       if (add != NULL) {
+               elt->add = ec_strdup(add);
+               if (elt->add == NULL) {
+                       ec_completed_elt_free(elt);
+                       return NULL;
+               }
+       }
+
+       return elt;
+}
+
+/* XXX define when to use ec_node_complete() or node->complete()
+ * (same for parse)
+ * suggestion: node->op() is internal, user calls the function
+ * other idea: have 2 functions
+ */
+struct ec_completed *ec_node_complete(struct ec_node *node,
+       const char *str)
+{
+       struct ec_strvec *strvec = NULL;
+       struct ec_completed *completed;
+
+       errno = ENOMEM;
+       strvec = ec_strvec();
+       if (strvec == NULL)
+               goto fail;
+
+       if (ec_strvec_add(strvec, str) < 0)
+               goto fail;
+
+       completed = ec_node_complete_strvec(node, strvec);
+       if (completed == NULL)
+               goto fail;
+
+       ec_strvec_free(strvec);
+       return completed;
+
+ fail:
+       ec_strvec_free(strvec);
+       return NULL;
+}
+
+/* default completion function: return a no-match element */
+struct ec_completed *ec_node_default_complete(const struct ec_node *gen_node,
+       const struct ec_strvec *strvec)
+{
+       struct ec_completed *completed;
+       struct ec_completed_elt *completed_elt;
+
+       (void)strvec;
+
+       completed = ec_completed();
+       if (completed == NULL)
+               return NULL;
+
+       completed_elt = ec_completed_elt(gen_node, NULL);
+       if (completed_elt == NULL) {
+               ec_completed_free(completed);
+               return NULL;
+       }
+
+       ec_completed_add_elt(completed, completed_elt);
+
+       return completed;
+}
+
+struct ec_completed *ec_node_complete_strvec(struct ec_node *node,
+       const struct ec_strvec *strvec)
+{
+       int ret;
+
+       /* build the node if required */
+       if (node->type->build != NULL) {
+               if ((node->flags & EC_NODE_F_BUILT) == 0) {
+                       ret = node->type->build(node);
+                       if (ret < 0) {
+                               errno = -ret;
+                               return NULL;
+                       }
+               }
+       }
+       node->flags |= EC_NODE_F_BUILT;
+
+       if (node->type->complete == NULL) {
+               errno = ENOTSUP;
+               return NULL;
+       }
+
+       return node->type->complete(node, strvec);
+}
+
+/* count the number of identical chars at the beginning of 2 strings */
+static size_t strcmp_count(const char *s1, const char *s2)
+{
+       size_t i = 0;
+
+       while (s1[i] && s2[i] && s1[i] == s2[i])
+               i++;
+
+       return i;
+}
+
+void ec_completed_add_elt(
+       struct ec_completed *completed, struct ec_completed_elt *elt)
+{
+       size_t n;
+
+       TAILQ_INSERT_TAIL(&completed->elts, elt, next);
+       completed->count++;
+       if (elt->add != NULL)
+               completed->count_match++;
+       if (elt->add != NULL) {
+               if (completed->smallest_start == NULL) {
+                       completed->smallest_start = ec_strdup(elt->add);
+               } else {
+                       n = strcmp_count(elt->add,
+                               completed->smallest_start);
+                       completed->smallest_start[n] = '\0';
+               }
+       }
+}
+
+void ec_completed_elt_free(struct ec_completed_elt *elt)
+{
+       ec_free(elt->add);
+       ec_free(elt);
+}
+
+void ec_completed_merge(struct ec_completed *completed1,
+       struct ec_completed *completed2)
+{
+       struct ec_completed_elt *elt;
+
+       assert(completed1 != NULL);
+       assert(completed2 != NULL);
+
+       while (!TAILQ_EMPTY(&completed2->elts)) {
+               elt = TAILQ_FIRST(&completed2->elts);
+               TAILQ_REMOVE(&completed2->elts, elt, next);
+               ec_completed_add_elt(completed1, elt);
+       }
+
+       ec_completed_free(completed2);
+}
+
+void ec_completed_free(struct ec_completed *completed)
+{
+       struct ec_completed_elt *elt;
+
+       if (completed == NULL)
+               return;
+
+       while (!TAILQ_EMPTY(&completed->elts)) {
+               elt = TAILQ_FIRST(&completed->elts);
+               TAILQ_REMOVE(&completed->elts, elt, next);
+               ec_completed_elt_free(elt);
+       }
+       ec_free(completed->smallest_start);
+       ec_free(completed);
+}
+
+void ec_completed_dump(FILE *out, const struct ec_completed *completed)
+{
+       struct ec_completed_elt *elt;
+
+       if (completed == NULL || completed->count == 0) {
+               fprintf(out, "no completion\n");
+               return;
+       }
+
+       fprintf(out, "completion: count=%u match=%u smallest_start=<%s>\n",
+               completed->count, completed->count_match,
+               completed->smallest_start);
+
+       TAILQ_FOREACH(elt, &completed->elts, next) {
+               fprintf(out, "add=<%s>, node=%p, node_type=%s\n",
+                       elt->add, elt->node, elt->node->type->name);
+       }
+}
+
+const char *ec_completed_smallest_start(
+       const struct ec_completed *completed)
+{
+       if (completed == NULL || completed->smallest_start == NULL)
+               return "";
+
+       return completed->smallest_start;
+}
+
+unsigned int ec_completed_count(
+       const struct ec_completed *completed,
+       enum ec_completed_filter_flags flags)
+{
+       unsigned int count = 0;
+
+       if (completed == NULL)
+               return count;
+
+       if (flags & EC_MATCH)
+               count += completed->count_match;
+       if (flags & EC_NO_MATCH)
+               count += (completed->count - completed->count_match); //XXX
+
+       return count;
+}
+
+struct ec_completed_iter *
+ec_completed_iter(struct ec_completed *completed,
+       enum ec_completed_filter_flags flags)
+{
+       struct ec_completed_iter *iter;
+
+       iter = ec_calloc(1, sizeof(*iter));
+       if (iter == NULL)
+               return NULL;
+
+       iter->completed = completed;
+       iter->flags = flags;
+       iter->cur = NULL;
+
+       return iter;
+}
+
+const struct ec_completed_elt *ec_completed_iter_next(
+       struct ec_completed_iter *iter)
+{
+       if (iter->completed == NULL)
+               return NULL;
+
+       do {
+               if (iter->cur == NULL) {
+                       iter->cur = TAILQ_FIRST(&iter->completed->elts);
+               } else {
+                       iter->cur = TAILQ_NEXT(iter->cur, next);
+               }
+
+               if (iter->cur == NULL)
+                       break;
+
+               if (iter->cur->add == NULL &&
+                               (iter->flags & EC_NO_MATCH))
+                       break;
+
+               if (iter->cur->add != NULL &&
+                               (iter->flags & EC_MATCH))
+                       break;
+
+       } while (iter->cur != NULL);
+
+       return iter->cur;
+}
+
+void ec_completed_iter_free(struct ec_completed_iter *iter)
+{
+       ec_free(iter);
+}
diff --git a/lib/ecoli_completed.h b/lib/ecoli_completed.h
new file mode 100644 (file)
index 0000000..d9fcdc3
--- /dev/null
@@ -0,0 +1,105 @@
+/*
+ * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in the
+ *       documentation and/or other materials provided with the distribution.
+ *     * Neither the name of the University of California, Berkeley nor the
+ *       names of its contributors may be used to endorse or promote products
+ *       derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef ECOLI_COMPLETED_
+#define ECOLI_COMPLETED_
+
+#include <sys/queue.h>
+#include <sys/types.h>
+#include <stdio.h>
+
+struct ec_node;
+
+struct ec_completed_elt {
+       TAILQ_ENTRY(ec_completed_elt) next;
+       const struct ec_node *node;
+       char *add;
+};
+
+TAILQ_HEAD(ec_completed_elt_list, ec_completed_elt);
+
+
+struct ec_completed {
+       struct ec_completed_elt_list elts;
+       unsigned count;
+       unsigned count_match;
+       char *smallest_start;
+};
+
+/*
+ * return a completed object filled with elts
+ * return NULL on error (nomem?)
+ */
+struct ec_completed *ec_node_complete(struct ec_node *node,
+       const char *str);
+struct ec_completed *ec_node_complete_strvec(struct ec_node *node,
+       const struct ec_strvec *strvec);
+
+struct ec_completed *ec_completed(void);
+struct ec_completed_elt *ec_completed_elt(const struct ec_node *node,
+       const char *add);
+void ec_completed_add_elt(struct ec_completed *completed,
+       struct ec_completed_elt *elt);
+void ec_completed_elt_free(struct ec_completed_elt *elt);
+void ec_completed_merge(struct ec_completed *completed1,
+       struct ec_completed *completed2);
+void ec_completed_free(struct ec_completed *completed);
+void ec_completed_dump(FILE *out,
+       const struct ec_completed *completed);
+struct ec_completed *ec_node_default_complete(const struct ec_node *gen_node,
+       const struct ec_strvec *strvec);
+
+/* cannot return NULL */
+const char *ec_completed_smallest_start(
+       const struct ec_completed *completed);
+
+enum ec_completed_filter_flags {
+       EC_MATCH = 1,
+       EC_NO_MATCH = 2,
+};
+
+unsigned int ec_completed_count(
+       const struct ec_completed *completed,
+       enum ec_completed_filter_flags flags);
+
+struct ec_completed_iter {
+       enum ec_completed_filter_flags flags;
+       const struct ec_completed *completed;
+       const struct ec_completed_elt *cur;
+};
+
+struct ec_completed_iter *
+ec_completed_iter(struct ec_completed *completed,
+       enum ec_completed_filter_flags flags);
+
+const struct ec_completed_elt *ec_completed_iter_next(
+       struct ec_completed_iter *iter);
+
+void ec_completed_iter_free(struct ec_completed_iter *iter);
+
+
+#endif
index da911733fca97b13f94fc8e47413651e2554b1fd..1e09b5db708817e079054135aa42ffab16a7db54 100644 (file)
@@ -215,501 +215,6 @@ void ec_node_dump(FILE *out, const struct ec_node *node)
        __ec_node_dump(out, node, 0);
 }
 
-struct ec_parsed *ec_node_parse(struct ec_node *node, const char *str)
-{
-       struct ec_strvec *strvec = NULL;
-       struct ec_parsed *parsed;
-
-       errno = ENOMEM;
-       strvec = ec_strvec();
-       if (strvec == NULL)
-               goto fail;
-
-       if (ec_strvec_add(strvec, str) < 0)
-               goto fail;
-
-       parsed = ec_node_parse_strvec(node, strvec);
-       if (parsed == NULL)
-               goto fail;
-
-       ec_strvec_free(strvec);
-       return parsed;
-
- fail:
-       ec_strvec_free(strvec);
-       return NULL;
-}
-
-struct ec_parsed *ec_node_parse_strvec(struct ec_node *node,
-       const struct ec_strvec *strvec)
-{
-       struct ec_parsed *parsed;
-       int ret;
-
-       /* build the node if required */
-       if (node->type->build != NULL) {
-               if ((node->flags & EC_NODE_F_BUILT) == 0) {
-                       ret = node->type->build(node);
-                       if (ret < 0) {
-                               errno = -ret;
-                               return NULL;
-                       }
-               }
-       }
-       node->flags |= EC_NODE_F_BUILT;
-
-       if (node->type->parse == NULL) {
-               errno = ENOTSUP;
-               return NULL;
-       }
-
-       parsed = node->type->parse(node, strvec);
-
-       return parsed;
-}
-
-
-struct ec_parsed *ec_parsed(void)
-{
-       struct ec_parsed *parsed = NULL;
-
-       parsed = ec_calloc(1, sizeof(*parsed));
-       if (parsed == NULL)
-               goto fail;
-
-       TAILQ_INIT(&parsed->children);
-
-       return parsed;
-
- fail:
-       return NULL;
-}
-
-void ec_parsed_set_match(struct ec_parsed *parsed,
-       const struct ec_node *node, struct ec_strvec *strvec)
-{
-       parsed->node = node;
-       parsed->strvec = strvec;
-}
-
-void ec_parsed_free_children(struct ec_parsed *parsed)
-{
-       struct ec_parsed *child;
-
-       if (parsed == NULL)
-               return;
-
-       while (!TAILQ_EMPTY(&parsed->children)) {
-               child = TAILQ_FIRST(&parsed->children);
-               TAILQ_REMOVE(&parsed->children, child, next);
-               ec_parsed_free(child);
-       }
-}
-
-void ec_parsed_free(struct ec_parsed *parsed)
-{
-       if (parsed == NULL)
-               return;
-
-       ec_parsed_free_children(parsed);
-       ec_strvec_free(parsed->strvec);
-       ec_free(parsed);
-}
-
-static void __ec_parsed_dump(FILE *out,
-       const struct ec_parsed *parsed, size_t indent)
-{
-       struct ec_parsed *child;
-       const struct ec_strvec *vec;
-       size_t i;
-       const char *id = "None", *typename = "None";
-
-       if (parsed->node != NULL) {
-               if (parsed->node->id != NULL)
-                       id = parsed->node->id;
-               typename = parsed->node->type->name;
-       }
-
-       /* XXX enhance */
-       for (i = 0; i < indent; i++) {
-               if (i % 2)
-                       fprintf(out, " ");
-               else
-                       fprintf(out, "|");
-       }
-
-       fprintf(out, "node_type=%s id=%s vec=[", typename, id);
-       vec = ec_parsed_strvec(parsed);
-       for (i = 0; i < ec_strvec_len(vec); i++)
-               fprintf(out, "%s<%s>",
-                       i == 0 ? "" : ",",
-                       ec_strvec_val(vec, i));
-       fprintf(out, "]\n");
-
-       TAILQ_FOREACH(child, &parsed->children, next)
-               __ec_parsed_dump(out, child, indent + 2);
-}
-
-void ec_parsed_dump(FILE *out, const struct ec_parsed *parsed)
-{
-       fprintf(out, "------------------- parsed dump:\n"); //XXX
-
-       if (parsed == NULL) {
-               fprintf(out, "parsed is NULL, error in parse\n");
-               return;
-       }
-       if (!ec_parsed_matches(parsed)) {
-               fprintf(out, "no match\n");
-               return;
-       }
-
-       __ec_parsed_dump(out, parsed, 0);
-}
-
-void ec_parsed_add_child(struct ec_parsed *parsed,
-       struct ec_parsed *child)
-{
-       TAILQ_INSERT_TAIL(&parsed->children, child, next);
-}
-
-void ec_parsed_del_child(struct ec_parsed *parsed,
-       struct ec_parsed *child)
-{
-       TAILQ_REMOVE(&parsed->children, child, next);
-}
-
-struct ec_parsed *ec_parsed_find_first(struct ec_parsed *parsed,
-       const char *id)
-{
-       struct ec_parsed *child, *ret;
-
-       if (parsed == NULL)
-               return NULL;
-
-       if (parsed->node != NULL &&
-                       parsed->node->id != NULL &&
-                       !strcmp(parsed->node->id, id))
-               return parsed;
-
-       TAILQ_FOREACH(child, &parsed->children, next) {
-               ret = ec_parsed_find_first(child, id);
-               if (ret != NULL)
-                       return ret;
-       }
-
-       return NULL;
-}
-
-const struct ec_strvec *ec_parsed_strvec(
-       const struct ec_parsed *parsed)
-{
-       if (parsed == NULL || parsed->strvec == NULL)
-               return NULL;
-
-       return parsed->strvec;
-}
-
-/* number of parsed strings in the vector */
-size_t ec_parsed_len(const struct ec_parsed *parsed)
-{
-       if (parsed == NULL || parsed->strvec == NULL)
-               return 0;
-
-       return ec_strvec_len(parsed->strvec);
-}
-
-size_t ec_parsed_matches(const struct ec_parsed *parsed)
-{
-       if (parsed == NULL)
-               return 0;
-
-       if (parsed->node == NULL && TAILQ_EMPTY(&parsed->children))
-               return 0;
-
-       return 1;
-}
-
-struct ec_completed *ec_completed(void)
-{
-       struct ec_completed *completed = NULL;
-
-       completed = ec_calloc(1, sizeof(*completed));
-       if (completed == NULL)
-               return NULL;
-
-       TAILQ_INIT(&completed->elts);
-       completed->count_match = 0;
-
-       return completed;
-}
-
-struct ec_completed_elt *ec_completed_elt(const struct ec_node *node,
-       const char *add)
-{
-       struct ec_completed_elt *elt = NULL;
-
-       elt = ec_calloc(1, sizeof(*elt));
-       if (elt == NULL)
-               return NULL;
-
-       elt->node = node;
-       if (add != NULL) {
-               elt->add = ec_strdup(add);
-               if (elt->add == NULL) {
-                       ec_completed_elt_free(elt);
-                       return NULL;
-               }
-       }
-
-       return elt;
-}
-
-/* XXX define when to use ec_node_complete() or node->complete()
- * (same for parse)
- * suggestion: node->op() is internal, user calls the function
- * other idea: have 2 functions
- */
-struct ec_completed *ec_node_complete(struct ec_node *node,
-       const char *str)
-{
-       struct ec_strvec *strvec = NULL;
-       struct ec_completed *completed;
-
-       errno = ENOMEM;
-       strvec = ec_strvec();
-       if (strvec == NULL)
-               goto fail;
-
-       if (ec_strvec_add(strvec, str) < 0)
-               goto fail;
-
-       completed = ec_node_complete_strvec(node, strvec);
-       if (completed == NULL)
-               goto fail;
-
-       ec_strvec_free(strvec);
-       return completed;
-
- fail:
-       ec_strvec_free(strvec);
-       return NULL;
-}
-
-/* default completion function: return a no-match element */
-struct ec_completed *ec_node_default_complete(const struct ec_node *gen_node,
-       const struct ec_strvec *strvec)
-{
-       struct ec_completed *completed;
-       struct ec_completed_elt *completed_elt;
-
-       (void)strvec;
-
-       completed = ec_completed();
-       if (completed == NULL)
-               return NULL;
-
-       completed_elt = ec_completed_elt(gen_node, NULL);
-       if (completed_elt == NULL) {
-               ec_completed_free(completed);
-               return NULL;
-       }
-
-       ec_completed_add_elt(completed, completed_elt);
-
-       return completed;
-}
-
-struct ec_completed *ec_node_complete_strvec(struct ec_node *node,
-       const struct ec_strvec *strvec)
-{
-       int ret;
-
-       /* build the node if required */
-       if (node->type->build != NULL) {
-               if ((node->flags & EC_NODE_F_BUILT) == 0) {
-                       ret = node->type->build(node);
-                       if (ret < 0) {
-                               errno = -ret;
-                               return NULL;
-                       }
-               }
-       }
-       node->flags |= EC_NODE_F_BUILT;
-
-       if (node->type->complete == NULL) {
-               errno = ENOTSUP;
-               return NULL;
-       }
-
-       return node->type->complete(node, strvec);
-}
-
-/* count the number of identical chars at the beginning of 2 strings */
-static size_t strcmp_count(const char *s1, const char *s2)
-{
-       size_t i = 0;
-
-       while (s1[i] && s2[i] && s1[i] == s2[i])
-               i++;
-
-       return i;
-}
-
-void ec_completed_add_elt(
-       struct ec_completed *completed, struct ec_completed_elt *elt)
-{
-       size_t n;
-
-       TAILQ_INSERT_TAIL(&completed->elts, elt, next);
-       completed->count++;
-       if (elt->add != NULL)
-               completed->count_match++;
-       if (elt->add != NULL) {
-               if (completed->smallest_start == NULL) {
-                       completed->smallest_start = ec_strdup(elt->add);
-               } else {
-                       n = strcmp_count(elt->add,
-                               completed->smallest_start);
-                       completed->smallest_start[n] = '\0';
-               }
-       }
-}
-
-void ec_completed_elt_free(struct ec_completed_elt *elt)
-{
-       ec_free(elt->add);
-       ec_free(elt);
-}
-
-void ec_completed_merge(struct ec_completed *completed1,
-       struct ec_completed *completed2)
-{
-       struct ec_completed_elt *elt;
-
-       assert(completed1 != NULL);
-       assert(completed2 != NULL);
-
-       while (!TAILQ_EMPTY(&completed2->elts)) {
-               elt = TAILQ_FIRST(&completed2->elts);
-               TAILQ_REMOVE(&completed2->elts, elt, next);
-               ec_completed_add_elt(completed1, elt);
-       }
-
-       ec_completed_free(completed2);
-}
-
-void ec_completed_free(struct ec_completed *completed)
-{
-       struct ec_completed_elt *elt;
-
-       if (completed == NULL)
-               return;
-
-       while (!TAILQ_EMPTY(&completed->elts)) {
-               elt = TAILQ_FIRST(&completed->elts);
-               TAILQ_REMOVE(&completed->elts, elt, next);
-               ec_completed_elt_free(elt);
-       }
-       ec_free(completed->smallest_start);
-       ec_free(completed);
-}
-
-void ec_completed_dump(FILE *out, const struct ec_completed *completed)
-{
-       struct ec_completed_elt *elt;
-
-       if (completed == NULL || completed->count == 0) {
-               fprintf(out, "no completion\n");
-               return;
-       }
-
-       fprintf(out, "completion: count=%u match=%u smallest_start=<%s>\n",
-               completed->count, completed->count_match,
-               completed->smallest_start);
-
-       TAILQ_FOREACH(elt, &completed->elts, next) {
-               fprintf(out, "add=<%s>, node=%p, node_type=%s\n",
-                       elt->add, elt->node, elt->node->type->name);
-       }
-}
-
-const char *ec_completed_smallest_start(
-       const struct ec_completed *completed)
-{
-       if (completed == NULL || completed->smallest_start == NULL)
-               return "";
-
-       return completed->smallest_start;
-}
-
-unsigned int ec_completed_count(
-       const struct ec_completed *completed,
-       enum ec_completed_filter_flags flags)
-{
-       unsigned int count = 0;
-
-       if (completed == NULL)
-               return count;
-
-       if (flags & EC_MATCH)
-               count += completed->count_match;
-       if (flags & EC_NO_MATCH)
-               count += (completed->count - completed->count_match); //XXX
-
-       return count;
-}
-
-struct ec_completed_iter *
-ec_completed_iter(struct ec_completed *completed,
-       enum ec_completed_filter_flags flags)
-{
-       struct ec_completed_iter *iter;
-
-       iter = ec_calloc(1, sizeof(*iter));
-       if (iter == NULL)
-               return NULL;
-
-       iter->completed = completed;
-       iter->flags = flags;
-       iter->cur = NULL;
-
-       return iter;
-}
-
-const struct ec_completed_elt *ec_completed_iter_next(
-       struct ec_completed_iter *iter)
-{
-       if (iter->completed == NULL)
-               return NULL;
-
-       do {
-               if (iter->cur == NULL) {
-                       iter->cur = TAILQ_FIRST(&iter->completed->elts);
-               } else {
-                       iter->cur = TAILQ_NEXT(iter->cur, next);
-               }
-
-               if (iter->cur == NULL)
-                       break;
-
-               if (iter->cur->add == NULL &&
-                               (iter->flags & EC_NO_MATCH))
-                       break;
-
-               if (iter->cur->add != NULL &&
-                               (iter->flags & EC_MATCH))
-                       break;
-
-       } while (iter->cur != NULL);
-
-       return iter->cur;
-}
-
-void ec_completed_iter_free(struct ec_completed_iter *iter)
-{
-       ec_free(iter);
-}
-
 const char *ec_node_desc(const struct ec_node *node)
 {
        if (node->type->desc != NULL)
index 0933a20da6be49031ed3f65d0c1f1660cff775d4..27a52c8b30b8347231a25b2393f871e3f8c73fa9 100644 (file)
@@ -36,6 +36,7 @@
 
 struct ec_node;
 struct ec_parsed;
+struct ec_completed;
 struct ec_strvec;
 struct ec_keyval;
 
@@ -126,6 +127,7 @@ struct ec_node *__ec_node(const struct ec_node_type *type, const char *id);
 /* create a_new node node */
 struct ec_node *ec_node(const char *typename, const char *id);
 
+struct ec_node *ec_node_clone(struct ec_node *node);
 void ec_node_free(struct ec_node *node);
 
 /* XXX add more accessors */
@@ -137,123 +139,4 @@ const char *ec_node_desc(const struct ec_node *node);
 void ec_node_dump(FILE *out, const struct ec_node *node);
 struct ec_node *ec_node_find(struct ec_node *node, const char *id);
 
-/* XXX split this file ? */
-
-TAILQ_HEAD(ec_parsed_list, ec_parsed);
-
-/*
-  node == NULL + empty children list means "no match"
-*/
-struct ec_parsed {
-       TAILQ_ENTRY(ec_parsed) next;
-       struct ec_parsed_list children;
-       const struct ec_node *node;
-       struct ec_strvec *strvec;
-};
-
-struct ec_parsed *ec_parsed(void);
-void ec_parsed_free(struct ec_parsed *parsed);
-struct ec_node *ec_node_clone(struct ec_node *node);
-void ec_parsed_free_children(struct ec_parsed *parsed);
-
-const struct ec_strvec *ec_parsed_strvec(
-       const struct ec_parsed *parsed);
-
-void ec_parsed_set_match(struct ec_parsed *parsed,
-       const struct ec_node *node, struct ec_strvec *strvec);
-
-/* XXX we could use a cache to store possible completions or match: the
- * cache would be per-node, and would be reset for each call to parse()
- * or complete() ? */
-/* a NULL return value is an error, with errno set
-  ENOTSUP: no ->parse() operation
-*/
-struct ec_parsed *ec_node_parse(struct ec_node *node, const char *str);
-
-/* mostly internal to nodes */
-/* XXX it should not reset cache
- * ... not sure... it is used by tests */
-struct ec_parsed *ec_node_parse_strvec(struct ec_node *node,
-       const struct ec_strvec *strvec);
-
-void ec_parsed_add_child(struct ec_parsed *parsed,
-       struct ec_parsed *child);
-void ec_parsed_del_child(struct ec_parsed *parsed,
-       struct ec_parsed *child);
-void ec_parsed_dump(FILE *out, const struct ec_parsed *parsed);
-
-struct ec_parsed *ec_parsed_find_first(struct ec_parsed *parsed,
-       const char *id);
-
-const char *ec_parsed_to_string(const struct ec_parsed *parsed);
-size_t ec_parsed_len(const struct ec_parsed *parsed);
-size_t ec_parsed_matches(const struct ec_parsed *parsed);
-
-struct ec_completed_elt {
-       TAILQ_ENTRY(ec_completed_elt) next;
-       const struct ec_node *node;
-       char *add;
-};
-
-TAILQ_HEAD(ec_completed_elt_list, ec_completed_elt);
-
-
-struct ec_completed {
-       struct ec_completed_elt_list elts;
-       unsigned count;
-       unsigned count_match;
-       char *smallest_start;
-};
-
-/*
- * return a completed object filled with elts
- * return NULL on error (nomem?)
- */
-struct ec_completed *ec_node_complete(struct ec_node *node,
-       const char *str);
-struct ec_completed *ec_node_complete_strvec(struct ec_node *node,
-       const struct ec_strvec *strvec);
-struct ec_completed *ec_completed(void);
-struct ec_completed_elt *ec_completed_elt(const struct ec_node *node,
-       const char *add);
-void ec_completed_add_elt(struct ec_completed *completed,
-       struct ec_completed_elt *elt);
-void ec_completed_elt_free(struct ec_completed_elt *elt);
-void ec_completed_merge(struct ec_completed *completed1,
-       struct ec_completed *completed2);
-void ec_completed_free(struct ec_completed *completed);
-void ec_completed_dump(FILE *out,
-       const struct ec_completed *completed);
-struct ec_completed *ec_node_default_complete(const struct ec_node *gen_node,
-       const struct ec_strvec *strvec);
-
-/* cannot return NULL */
-const char *ec_completed_smallest_start(
-       const struct ec_completed *completed);
-
-enum ec_completed_filter_flags {
-       EC_MATCH = 1,
-       EC_NO_MATCH = 2,
-};
-
-unsigned int ec_completed_count(
-       const struct ec_completed *completed,
-       enum ec_completed_filter_flags flags);
-
-struct ec_completed_iter {
-       enum ec_completed_filter_flags flags;
-       const struct ec_completed *completed;
-       const struct ec_completed_elt *cur;
-};
-
-struct ec_completed_iter *
-ec_completed_iter(struct ec_completed *completed,
-       enum ec_completed_filter_flags flags);
-
-const struct ec_completed_elt *ec_completed_iter_next(
-       struct ec_completed_iter *iter);
-
-void ec_completed_iter_free(struct ec_completed_iter *iter);
-
-
 #endif
index f6afbd2ccd9374fc48fa9109768ae6de8ef7ee7d..2753339f9609904e2965e02012b25f224cc5b03b 100644 (file)
@@ -38,6 +38,9 @@
 #include <ecoli_log.h>
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
+#include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_expr.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_or.h>
index c85d641712dabbc60559bcd14220dfdde9dacdca..e52956e07b5884c6970d3b817fae8ac1a981954f 100644 (file)
@@ -34,6 +34,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_empty.h>
 
 struct ec_node_empty {
index 8d2f69885758913c346fa399d64b3378fe459806..672b62ee19142924f492f2e3a7bb89ab0e5137a0 100644 (file)
@@ -39,6 +39,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_seq.h>
 #include <ecoli_node_many.h>
 #include <ecoli_node_or.h>
index 2ce0669e7ae56939222af3e7e0a3a7efc1aad88d..ea8938b522c6fd38edff3c1b147572e7a6f0ec3d 100644 (file)
@@ -33,6 +33,8 @@
 #include <ecoli_malloc.h>
 #include <ecoli_strvec.h>
 #include <ecoli_test.h>
+#include <ecoli_node.h>
+#include <ecoli_parsed.h>
 #include <ecoli_node_int.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_re_lex.h>
index 8c7be7cb4c2b0814361d4c347c3e41be0809e2ec..bf73a133840285f12bc8546424951dd5094d5f10 100644 (file)
@@ -38,6 +38,8 @@
 #include <ecoli_malloc.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_int.h>
 #include <ecoli_test.h>
 
index 6142b323170f250159a18f75a8a217cf89c06484..b5dff927dd5d005ff42836f632c1802ad4a2dc19 100644 (file)
@@ -36,6 +36,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_option.h>
 #include <ecoli_node_many.h>
index 01665b47867cf7df6943c78c804ab8975143aa98..305734f2475bf9a84c5a9f7b1e0606706696934a 100644 (file)
@@ -35,6 +35,8 @@
 #include <ecoli_log.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_option.h>
 #include <ecoli_node_str.h>
 #include <ecoli_test.h>
index 932b01c131c8bed8425bf9893f1ad3b0d6e07926..a4df91fe0954aaaa90a625f74cd9fb519cd234ef 100644 (file)
@@ -36,6 +36,8 @@
 #include <ecoli_log.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_or.h>
 #include <ecoli_node_str.h>
 #include <ecoli_test.h>
index 00bd793e65af0eefe134f7078ada25a14120dd3d..3d2a0640a76547db0ed493ffc8f431471dc3b036 100644 (file)
@@ -36,6 +36,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_re.h>
 
 struct ec_node_re {
index e0e6d00ee122c157a7704d9d181f5e2d826f095b..e9e3ace41d44b88c11f8bcbd31ff675b6abe32eb 100644 (file)
@@ -10,6 +10,7 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
 #include <ecoli_node_many.h>
 #include <ecoli_node_or.h>
 #include <ecoli_node_str.h>
index 4a975ad4eed840009c64ac64a92a6d8d3a1504b7..cd103db1b5606887b3f1978f91eff613921e4545 100644 (file)
@@ -37,6 +37,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_option.h>
 #include <ecoli_node_seq.h>
index d0c5eb28ca903bf1f2d493cc1ac7945f76fa714b..b92af1f8d4d68cad113f537f72651cd80c941c98 100644 (file)
@@ -38,6 +38,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_seq.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_option.h>
index db3e9f54b2ad91e90ca35fd99cf199c3c67c1a77..be14348893331a88be5241be3a4edbafa57f8a9e 100644 (file)
@@ -35,6 +35,8 @@
 #include <ecoli_malloc.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_space.h>
 
 struct ec_node_space {
index 237f0fee06e7c2d5d6b5645a885ff1dcd0664469..fe8c7bb55419766d81ef52fffe85df7e5804c3ba 100644 (file)
@@ -35,6 +35,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_str.h>
 
 struct ec_node_str {
index 53790f621bdf4ab81c52fb30d850fb9e93869752..21506565452b5b07e1131dd2e0455baddad58344 100644 (file)
@@ -37,6 +37,8 @@
 #include <ecoli_log.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_subset.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_or.h>
index 73995624f53f83450bb00d627aed0efaf5ad5bba..603f02dbd3f5d60c1655939555c497763de850b7 100644 (file)
@@ -37,6 +37,8 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
 #include <ecoli_node_str.h>
 #include <ecoli_node_option.h>
 #include <ecoli_node_weakref.h>
diff --git a/lib/ecoli_parsed.c b/lib/ecoli_parsed.c
new file mode 100644 (file)
index 0000000..b26b123
--- /dev/null
@@ -0,0 +1,253 @@
+/*
+ * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in the
+ *       documentation and/or other materials provided with the distribution.
+ *     * Neither the name of the University of California, Berkeley nor the
+ *       names of its contributors may be used to endorse or promote products
+ *       derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <assert.h>
+#include <errno.h>
+
+#include <ecoli_malloc.h>
+#include <ecoli_strvec.h>
+#include <ecoli_keyval.h>
+#include <ecoli_log.h>
+#include <ecoli_node.h>
+#include <ecoli_parsed.h>
+
+struct ec_parsed *ec_node_parse(struct ec_node *node, const char *str)
+{
+       struct ec_strvec *strvec = NULL;
+       struct ec_parsed *parsed;
+
+       errno = ENOMEM;
+       strvec = ec_strvec();
+       if (strvec == NULL)
+               goto fail;
+
+       if (ec_strvec_add(strvec, str) < 0)
+               goto fail;
+
+       parsed = ec_node_parse_strvec(node, strvec);
+       if (parsed == NULL)
+               goto fail;
+
+       ec_strvec_free(strvec);
+       return parsed;
+
+ fail:
+       ec_strvec_free(strvec);
+       return NULL;
+}
+
+struct ec_parsed *ec_node_parse_strvec(struct ec_node *node,
+       const struct ec_strvec *strvec)
+{
+       struct ec_parsed *parsed;
+       int ret;
+
+       /* build the node if required */
+       if (node->type->build != NULL) {
+               if ((node->flags & EC_NODE_F_BUILT) == 0) {
+                       ret = node->type->build(node);
+                       if (ret < 0) {
+                               errno = -ret;
+                               return NULL;
+                       }
+               }
+       }
+       node->flags |= EC_NODE_F_BUILT;
+
+       if (node->type->parse == NULL) {
+               errno = ENOTSUP;
+               return NULL;
+       }
+
+       parsed = node->type->parse(node, strvec);
+
+       return parsed;
+}
+
+
+struct ec_parsed *ec_parsed(void)
+{
+       struct ec_parsed *parsed = NULL;
+
+       parsed = ec_calloc(1, sizeof(*parsed));
+       if (parsed == NULL)
+               goto fail;
+
+       TAILQ_INIT(&parsed->children);
+
+       return parsed;
+
+ fail:
+       return NULL;
+}
+
+void ec_parsed_set_match(struct ec_parsed *parsed,
+       const struct ec_node *node, struct ec_strvec *strvec)
+{
+       parsed->node = node;
+       parsed->strvec = strvec;
+}
+
+void ec_parsed_free_children(struct ec_parsed *parsed)
+{
+       struct ec_parsed *child;
+
+       if (parsed == NULL)
+               return;
+
+       while (!TAILQ_EMPTY(&parsed->children)) {
+               child = TAILQ_FIRST(&parsed->children);
+               TAILQ_REMOVE(&parsed->children, child, next);
+               ec_parsed_free(child);
+       }
+}
+
+void ec_parsed_free(struct ec_parsed *parsed)
+{
+       if (parsed == NULL)
+               return;
+
+       ec_parsed_free_children(parsed);
+       ec_strvec_free(parsed->strvec);
+       ec_free(parsed);
+}
+
+static void __ec_parsed_dump(FILE *out,
+       const struct ec_parsed *parsed, size_t indent)
+{
+       struct ec_parsed *child;
+       const struct ec_strvec *vec;
+       size_t i;
+       const char *id = "None", *typename = "None";
+
+       if (parsed->node != NULL) {
+               if (parsed->node->id != NULL)
+                       id = parsed->node->id;
+               typename = parsed->node->type->name;
+       }
+
+       /* XXX enhance */
+       for (i = 0; i < indent; i++) {
+               if (i % 2)
+                       fprintf(out, " ");
+               else
+                       fprintf(out, "|");
+       }
+
+       fprintf(out, "node_type=%s id=%s vec=[", typename, id);
+       vec = ec_parsed_strvec(parsed);
+       for (i = 0; i < ec_strvec_len(vec); i++)
+               fprintf(out, "%s<%s>",
+                       i == 0 ? "" : ",",
+                       ec_strvec_val(vec, i));
+       fprintf(out, "]\n");
+
+       TAILQ_FOREACH(child, &parsed->children, next)
+               __ec_parsed_dump(out, child, indent + 2);
+}
+
+void ec_parsed_dump(FILE *out, const struct ec_parsed *parsed)
+{
+       fprintf(out, "------------------- parsed dump:\n"); //XXX
+
+       if (parsed == NULL) {
+               fprintf(out, "parsed is NULL, error in parse\n");
+               return;
+       }
+       if (!ec_parsed_matches(parsed)) {
+               fprintf(out, "no match\n");
+               return;
+       }
+
+       __ec_parsed_dump(out, parsed, 0);
+}
+
+void ec_parsed_add_child(struct ec_parsed *parsed,
+       struct ec_parsed *child)
+{
+       TAILQ_INSERT_TAIL(&parsed->children, child, next);
+}
+
+void ec_parsed_del_child(struct ec_parsed *parsed,
+       struct ec_parsed *child)
+{
+       TAILQ_REMOVE(&parsed->children, child, next);
+}
+
+struct ec_parsed *ec_parsed_find_first(struct ec_parsed *parsed,
+       const char *id)
+{
+       struct ec_parsed *child, *ret;
+
+       if (parsed == NULL)
+               return NULL;
+
+       if (parsed->node != NULL &&
+                       parsed->node->id != NULL &&
+                       !strcmp(parsed->node->id, id))
+               return parsed;
+
+       TAILQ_FOREACH(child, &parsed->children, next) {
+               ret = ec_parsed_find_first(child, id);
+               if (ret != NULL)
+                       return ret;
+       }
+
+       return NULL;
+}
+
+const struct ec_strvec *ec_parsed_strvec(
+       const struct ec_parsed *parsed)
+{
+       if (parsed == NULL || parsed->strvec == NULL)
+               return NULL;
+
+       return parsed->strvec;
+}
+
+/* number of parsed strings in the vector */
+size_t ec_parsed_len(const struct ec_parsed *parsed)
+{
+       if (parsed == NULL || parsed->strvec == NULL)
+               return 0;
+
+       return ec_strvec_len(parsed->strvec);
+}
+
+size_t ec_parsed_matches(const struct ec_parsed *parsed)
+{
+       if (parsed == NULL)
+               return 0;
+
+       if (parsed->node == NULL && TAILQ_EMPTY(&parsed->children))
+               return 0;
+
+       return 1;
+}
diff --git a/lib/ecoli_parsed.h b/lib/ecoli_parsed.h
new file mode 100644 (file)
index 0000000..83ace08
--- /dev/null
@@ -0,0 +1,86 @@
+/*
+ * Copyright (c) 2016, Olivier MATZ <zer0@droids-corp.org>
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ *
+ *     * Redistributions of source code must retain the above copyright
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in the
+ *       documentation and/or other materials provided with the distribution.
+ *     * Neither the name of the University of California, Berkeley nor the
+ *       names of its contributors may be used to endorse or promote products
+ *       derived from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
+ * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ */
+
+#ifndef ECOLI_PARSED_
+#define ECOLI_PARSED_
+
+#include <sys/queue.h>
+#include <sys/types.h>
+#include <stdio.h>
+
+struct ec_node;
+
+TAILQ_HEAD(ec_parsed_list, ec_parsed);
+
+/*
+  node == NULL + empty children list means "no match"
+*/
+struct ec_parsed {
+       TAILQ_ENTRY(ec_parsed) next;
+       struct ec_parsed_list children;
+       const struct ec_node *node;
+       struct ec_strvec *strvec;
+};
+
+struct ec_parsed *ec_parsed(void);
+void ec_parsed_free(struct ec_parsed *parsed);
+void ec_parsed_free_children(struct ec_parsed *parsed);
+
+const struct ec_strvec *ec_parsed_strvec(
+       const struct ec_parsed *parsed);
+
+void ec_parsed_set_match(struct ec_parsed *parsed,
+       const struct ec_node *node, struct ec_strvec *strvec);
+
+/* XXX we could use a cache to store possible completions or match: the
+ * cache would be per-node, and would be reset for each call to parse()
+ * or complete() ? */
+/* a NULL return value is an error, with errno set
+  ENOTSUP: no ->parse() operation
+*/
+struct ec_parsed *ec_node_parse(struct ec_node *node, const char *str);
+
+/* mostly internal to nodes */
+/* XXX it should not reset cache
+ * ... not sure... it is used by tests */
+struct ec_parsed *ec_node_parse_strvec(struct ec_node *node,
+       const struct ec_strvec *strvec);
+
+void ec_parsed_add_child(struct ec_parsed *parsed,
+       struct ec_parsed *child);
+void ec_parsed_del_child(struct ec_parsed *parsed,
+       struct ec_parsed *child);
+void ec_parsed_dump(FILE *out, const struct ec_parsed *parsed);
+
+struct ec_parsed *ec_parsed_find_first(struct ec_parsed *parsed,
+       const char *id);
+
+const char *ec_parsed_to_string(const struct ec_parsed *parsed);
+size_t ec_parsed_len(const struct ec_parsed *parsed);
+size_t ec_parsed_matches(const struct ec_parsed *parsed);
+
+#endif
index 134fefaec6e912c528a46fd9dc9d7a8ad529dd26..6b002b89c8d7bf6ca954412bb628df4602c7283b 100644 (file)
@@ -35,6 +35,9 @@
 #include <ecoli_test.h>
 #include <ecoli_strvec.h>
 #include <ecoli_node.h>
+#include <ecoli_parsed.h>
+#include <ecoli_completed.h>
+#include <ecoli_parsed.h>
 
 static struct ec_test_list test_list = TAILQ_HEAD_INITIALIZER(test_list);
 
index 0fe06729d0cce79de7c7ec3c5b1dfa94ae83fe2e..73df238f8f23e6d1eb1ef469ce9671fce91e4f5a 100644 (file)
@@ -34,8 +34,9 @@
 #include <readline/history.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>
index 7ed4ab30af0d1a95c1bd35104b58fff69e52ab8d..a29054c46ddcd09572eb2829a742228f81c722f9 100644 (file)
@@ -45,6 +45,8 @@ yaml
 ====
 
 X register nodes by name
+- interface to add attributes: all nodes must be configurable through a
+  generic api
 - yaml interface to create nodes
 - example