X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=lib%2Fecoli_node.c;h=0c5890f89c252f67f6e28861bf8efa4931becfa6;hb=be399018140cd20c8da9361c00f6095e2cd48940;hp=eb12ff21b581f767766319af5b0d6044af31ae03;hpb=3e3a8cd1d91a60f04d876afd4e4867be610b94a5;p=protos%2Flibecoli.git diff --git a/lib/ecoli_node.c b/lib/ecoli_node.c index eb12ff2..0c5890f 100644 --- a/lib/ecoli_node.c +++ b/lib/ecoli_node.c @@ -20,6 +20,8 @@ #include #include +#include +#include EC_LOG_TYPE_REGISTER(node); @@ -62,7 +64,7 @@ void ec_node_type_dump(FILE *out) fprintf(out, "%s\n", type->name); } -struct ec_node *__ec_node(const struct ec_node_type *type, const char *id) +struct ec_node *ec_node_from_type(const struct ec_node_type *type, const char *id) { struct ec_node *node = NULL; @@ -109,6 +111,18 @@ struct ec_node *__ec_node(const struct ec_node_type *type, const char *id) return NULL; } +const struct ec_config_schema * +ec_node_type_schema(const struct ec_node_type *type) +{ + return type->schema; +} + +const char * +ec_node_type_name(const struct ec_node_type *type) +{ + return type->name; +} + struct ec_node *ec_node(const char *typename, const char *id) { const struct ec_node_type *type; @@ -120,62 +134,120 @@ struct ec_node *ec_node(const char *typename, const char *id) return NULL; } - return __ec_node(type, id); + return ec_node_from_type(type, id); } -static void traverse_tree1(const struct ec_node *node) +static void count_references(struct ec_node *node, unsigned int refs) { - const struct ec_node *child; + struct ec_node *child; size_t i, n; + int ret; - if (node->free.state == 1) { - node->free.refcnt++; + if (node->free.state == EC_NODE_FREE_STATE_TRAVERSED) { + node->free.refcnt += refs; return; } - node->free.refcnt = 1; - node->free.state = 1; // traversed - n = node->n_children; + node->free.refcnt = refs; + node->free.state = EC_NODE_FREE_STATE_TRAVERSED; + n = ec_node_get_children_count(node); for (i = 0; i < n; i++) { - child = node->children[i]; - traverse_tree1(child); + ret = ec_node_get_child(node, i, &child, &refs); + assert(ret == 0); + count_references(child, refs); } } -void ec_node_free(struct ec_node *node) +static void mark_freeable(struct ec_node *node, enum ec_node_free_state mark) { struct ec_node *child; - bool free_it = false; + unsigned int refs; size_t i, n; + int ret; - if (node == NULL) + if (mark == node->free.state) return; - assert(node->refcnt > 0); + if (node->refcnt > node->free.refcnt) + mark = EC_NODE_FREE_STATE_NOT_FREEABLE; + assert(node->refcnt >= node->free.refcnt); + node->free.state = mark; - // calc free refcnt - if (node->free.state == 0) - traverse_tree1(node); + n = ec_node_get_children_count(node); + for (i = 0; i < n; i++) { + ret = ec_node_get_child(node, i, &child, &refs); + assert(ret == 0); + mark_freeable(child, mark); + } +} - node->refcnt--; - if (node->free.state == 2) +static void reset_mark(struct ec_node *node) +{ + struct ec_node *child; + unsigned int refs; + size_t i, n; + int ret; + + if (node->free.state == EC_NODE_FREE_STATE_NONE) + return; + + node->free.state = EC_NODE_FREE_STATE_NONE; + node->free.refcnt = 0; + + n = ec_node_get_children_count(node); + for (i = 0; i < n; i++) { + ret = ec_node_get_child(node, i, &child, &refs); + assert(ret == 0); + reset_mark(child); + } +} + +/* free a node, taking care of loops in the node graph */ +void ec_node_free(struct ec_node *node) +{ + size_t n; + + if (node == NULL) return; - node->free.state = 2; // beeing freed - if (node->refcnt < node->free.refcnt) { - for (i = 0; i < n; i++) { - child = node->children[i]; - ec_node_free(child); + assert(node->refcnt > 0); + + if (node->free.state == EC_NODE_FREE_STATE_NONE && + node->refcnt != 1) { + + /* Traverse the node tree starting from this node, and for each + * node, count the number of reachable references. Then, all + * nodes whose reachable references == total reference are + * marked as freeable, and other are marked as unfreeable. Any + * node reachable from an unfreeable node is also marked as + * unfreeable. */ + if (node->free.state == EC_NODE_FREE_STATE_NONE) { + count_references(node, 1); + mark_freeable(node, EC_NODE_FREE_STATE_FREEABLE); } } - if (node->refcnt > 0) { - node->free.refcnt = 0; - node->free.state = 0; + if (node->free.state == EC_NODE_FREE_STATE_NOT_FREEABLE) { + node->refcnt--; + reset_mark(node); return; } - if (node->type != NULL && node->type->free_priv != NULL) - node->type->free_priv(node); + if (node->free.state != EC_NODE_FREE_STATE_FREEING) { + node->free.state = EC_NODE_FREE_STATE_FREEING; + n = ec_node_get_children_count(node); + /* children should be freed by free_priv() */ + assert(n == 0 || node->type->free_priv != NULL); + if (node->type->free_priv != NULL) + node->type->free_priv(node); + } + + node->refcnt--; + if (node->refcnt != 0) + return; + + node->free.state = EC_NODE_FREE_STATE_NONE; + node->free.refcnt = 0; + ec_free(node->id); ec_free(node->desc); ec_keyval_free(node->attrs); @@ -197,12 +269,15 @@ size_t ec_node_get_children_count(const struct ec_node *node) return node->type->get_children_count(node); } -struct ec_node * -ec_node_get_child(const struct ec_node *node, size_t i) +int +ec_node_get_child(const struct ec_node *node, size_t i, + struct ec_node **child, unsigned int *refs) { + *child = NULL; + *refs = 0; if (node->type->get_child == NULL) - return NULL; - return node->type->get_child(node, i); + return -1; + return node->type->get_child(node, i, child, refs); } int @@ -212,8 +287,7 @@ ec_node_set_config(struct ec_node *node, struct ec_config *config) errno = EINVAL; goto fail; } - if (ec_config_validate(config, node->type->schema, - node->type->schema_len) < 0) + if (ec_config_validate(config, node->type->schema) < 0) goto fail; if (node->type->set_config != NULL) { if (node->type->set_config(node, config) < 0) @@ -237,19 +311,22 @@ const struct ec_config *ec_node_get_config(struct ec_node *node) struct ec_node *ec_node_find(struct ec_node *node, const char *id) { - struct ec_node *child, *ret; + struct ec_node *child, *retnode; const char *node_id = ec_node_id(node); + unsigned int refs; size_t i, n; + int ret; if (id != NULL && node_id != NULL && !strcmp(node_id, id)) return node; n = ec_node_get_children_count(node); for (i = 0; i < n; i++) { - child = ec_node_get_child(node, i); - ret = ec_node_find(child, id); - if (ret != NULL) - return ret; + ret = ec_node_get_child(node, i, &child, &refs); + assert(ret == 0); + retnode = ec_node_find(child, id); + if (retnode != NULL) + return retnode; } return NULL; @@ -271,27 +348,42 @@ const char *ec_node_id(const struct ec_node *node) } static void __ec_node_dump(FILE *out, - const struct ec_node *node, size_t indent) + const struct ec_node *node, size_t indent, struct ec_keyval *dict) { const char *id, *typename; struct ec_node *child; + unsigned int refs; + char buf[32]; size_t i, n; + int ret; id = ec_node_id(node); typename = node->type->name; - fprintf(out, "%*s" "type=%s id=%s %p free=(%d,%d)\n", - (int)indent * 4, "", typename, id, node, + snprintf(buf, sizeof(buf), "%p", node); + if (ec_keyval_has_key(dict, buf)) { + fprintf(out, "%*s" "type=%s id=%s %p... (loop)\n", + (int)indent * 4, "", typename, id, node); + return; + } + + ec_keyval_set(dict, buf, NULL, NULL); + fprintf(out, "%*s" "type=%s id=%s %p refs=%u free_state=%d free_refs=%d\n", + (int)indent * 4, "", typename, id, node, node->refcnt, node->free.state, node->free.refcnt); + n = ec_node_get_children_count(node); for (i = 0; i < n; i++) { - child = ec_node_get_child(node, i); - __ec_node_dump(out, child, indent + 1); + ret = ec_node_get_child(node, i, &child, &refs); + assert(ret == 0); + __ec_node_dump(out, child, indent + 1, dict); } } void ec_node_dump(FILE *out, const struct ec_node *node) { + struct ec_keyval *dict = NULL; + fprintf(out, "------------------- node dump:\n"); if (node == NULL) { @@ -299,7 +391,18 @@ void ec_node_dump(FILE *out, const struct ec_node *node) return; } - __ec_node_dump(out, node, 0); + dict = ec_keyval(); + if (dict == NULL) + goto fail; + + __ec_node_dump(out, node, 0, dict); + + ec_keyval_free(dict); + return; + +fail: + ec_keyval_free(dict); + EC_LOG(EC_LOG_ERR, "failed to dump node\n"); } const char *ec_node_desc(const struct ec_node *node) @@ -324,9 +427,11 @@ int ec_node_check_type(const struct ec_node *node, /* LCOV_EXCL_START */ static int ec_node_testcase(void) { - struct ec_node *node = NULL; - const struct ec_node *child; + struct ec_node *node = NULL, *expr = NULL; + struct ec_node *expr2 = NULL, *val = NULL, *op = NULL, *seq = NULL; const struct ec_node_type *type; + struct ec_node *child; + unsigned int refs; FILE *f = NULL; char *buf = NULL; size_t buflen = 0; @@ -370,17 +475,21 @@ static int ec_node_testcase(void) testres |= EC_TEST_CHECK( ec_node_get_children_count(node) == 2, "bad children count\n"); - child = ec_node_get_child(node, 0); - testres |= EC_TEST_CHECK(child != NULL && + ret = ec_node_get_child(node, 0, &child, &refs); + testres |= EC_TEST_CHECK(ret == 0 && + child != NULL && !strcmp(ec_node_type(child)->name, "str") && !strcmp(ec_node_id(child), "id_x"), "bad child 0"); - child = ec_node_get_child(node, 1); - testres |= EC_TEST_CHECK(child != NULL && + ret = ec_node_get_child(node, 1, &child, &refs); + testres |= EC_TEST_CHECK(ret == 0 && + child != NULL && !strcmp(ec_node_type(child)->name, "str") && !strcmp(ec_node_id(child), "id_y"), "bad child 1"); - child = ec_node_get_child(node, 2); + ret = ec_node_get_child(node, 2, &child, &refs); + testres |= EC_TEST_CHECK(ret != 0, + "ret should be != 0"); testres |= EC_TEST_CHECK(child == NULL, "child 2 should be NULL"); @@ -414,9 +523,69 @@ static int ec_node_testcase(void) testres |= EC_TEST_CHECK(node == NULL, "should not be able to create node\n"); + /* test loop */ + expr = ec_node("or", EC_NO_ID); + val = ec_node_int(EC_NO_ID, 0, 10, 0); + op = ec_node_str(EC_NO_ID, "!"); + seq = EC_NODE_SEQ(EC_NO_ID, + op, + ec_node_clone(expr)); + op = NULL; + if (expr == NULL || val == NULL || seq == NULL) + goto fail; + if (ec_node_or_add(expr, ec_node_clone(seq)) < 0) + goto fail; + ec_node_free(seq); + seq = NULL; + if (ec_node_or_add(expr, ec_node_clone(val)) < 0) + goto fail; + ec_node_free(val); + val = NULL; + + testres |= EC_TEST_CHECK_PARSE(expr, 1, "1"); + testres |= EC_TEST_CHECK_PARSE(expr, 3, "!", "!", "1"); + testres |= EC_TEST_CHECK_PARSE(expr, -1, "!", "!", "!"); + + ec_node_free(expr); + expr = NULL; + + /* same loop test, but keep some refs (released later) */ + expr = ec_node("or", EC_NO_ID); + ec_node_clone(expr); + expr2 = expr; + val = ec_node_int(EC_NO_ID, 0, 10, 0); + op = ec_node_str(EC_NO_ID, "!"); + seq = EC_NODE_SEQ(EC_NO_ID, + op, + ec_node_clone(expr)); + op = NULL; + if (expr == NULL || val == NULL || seq == NULL) + goto fail; + if (ec_node_or_add(expr, ec_node_clone(seq)) < 0) + goto fail; + ec_node_free(seq); + seq = NULL; + if (ec_node_or_add(expr, ec_node_clone(val)) < 0) + goto fail; + + testres |= EC_TEST_CHECK_PARSE(expr, 1, "1"); + testres |= EC_TEST_CHECK_PARSE(expr, 3, "!", "!", "1"); + testres |= EC_TEST_CHECK_PARSE(expr, -1, "!", "!", "!"); + + ec_node_free(expr2); + expr2 = NULL; + ec_node_free(val); + val = NULL; + ec_node_free(expr); + expr = NULL; + return testres; fail: + ec_node_free(expr); + ec_node_free(expr2); + ec_node_free(val); + ec_node_free(seq); ec_node_free(node); if (f != NULL) fclose(f);