X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=ovsdb%2Fovsdb.c;h=5bbaddbd3810a99a0320af3253027ba40ed397d1;hb=76f105d9be03588c2d5ec0b94ff769a1d269f2e4;hp=2b5bdc32ec0c96dc97bcd6c855076904f8d1b0a8;hpb=c69ee87c10818267f991236201150b1fa51ae519;p=openvswitch diff --git a/ovsdb/ovsdb.c b/ovsdb/ovsdb.c index 2b5bdc32..5bbaddbd 100644 --- a/ovsdb/ovsdb.c +++ b/ovsdb/ovsdb.c @@ -26,18 +26,33 @@ #include "transaction.h" struct ovsdb_schema * -ovsdb_schema_create(const char *name, const char *comment) +ovsdb_schema_create(const char *name) { struct ovsdb_schema *schema; schema = xzalloc(sizeof *schema); schema->name = xstrdup(name); - schema->comment = comment ? xstrdup(comment) : NULL; shash_init(&schema->tables); return schema; } +struct ovsdb_schema * +ovsdb_schema_clone(const struct ovsdb_schema *old) +{ + struct ovsdb_schema *new; + struct shash_node *node; + + new = ovsdb_schema_create(old->name); + SHASH_FOR_EACH (node, &old->tables) { + const struct ovsdb_table_schema *ts = node->data; + + shash_add(&new->tables, node->name, ovsdb_table_schema_clone(ts)); + } + return new; +} + + void ovsdb_schema_destroy(struct ovsdb_schema *schema) { @@ -47,7 +62,6 @@ ovsdb_schema_destroy(struct ovsdb_schema *schema) ovsdb_table_schema_destroy(node->data); } shash_destroy(&schema->tables); - free(schema->comment); free(schema->name); free(schema); } @@ -102,7 +116,7 @@ struct ovsdb_error * ovsdb_schema_from_json(struct json *json, struct ovsdb_schema **schemap) { struct ovsdb_schema *schema; - const struct json *name, *comment, *tables; + const struct json *name, *tables; struct ovsdb_error *error; struct shash_node *node; struct ovsdb_parser parser; @@ -111,15 +125,13 @@ ovsdb_schema_from_json(struct json *json, struct ovsdb_schema **schemap) ovsdb_parser_init(&parser, json, "database schema"); name = ovsdb_parser_member(&parser, "name", OP_ID); - comment = ovsdb_parser_member(&parser, "comment", OP_STRING | OP_OPTIONAL); tables = ovsdb_parser_member(&parser, "tables", OP_OBJECT); error = ovsdb_parser_finish(&parser); if (error) { return error; } - schema = ovsdb_schema_create(json_string(name), - comment ? json_string(comment) : NULL); + schema = ovsdb_schema_create(json_string(name)); SHASH_FOR_EACH (node, json_object(tables)) { struct ovsdb_table_schema *table; @@ -174,9 +186,6 @@ ovsdb_schema_to_json(const struct ovsdb_schema *schema) json = json_object_create(); json_object_put_string(json, "name", schema->name); - if (schema->comment) { - json_object_put_string(json, "comment", schema->comment); - } tables = json_object_create();