1 /* Copyright (c) 2009, 2010, 2011 Nicira Networks
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
7 * http://www.apache.org/licenses/LICENSE-2.0
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
22 #include "ovsdb-error.h"
23 #include "ovsdb-parser.h"
24 #include "ovsdb-types.h"
26 #include "transaction.h"
29 ovsdb_schema_create(const char *name, const char *version, const char *cksum)
31 struct ovsdb_schema *schema;
33 schema = xzalloc(sizeof *schema);
34 schema->name = xstrdup(name);
35 schema->version = xstrdup(version);
36 schema->cksum = xstrdup(cksum);
37 shash_init(&schema->tables);
43 ovsdb_schema_clone(const struct ovsdb_schema *old)
45 struct ovsdb_schema *new;
46 struct shash_node *node;
48 new = ovsdb_schema_create(old->name, old->version, old->cksum);
49 SHASH_FOR_EACH (node, &old->tables) {
50 const struct ovsdb_table_schema *ts = node->data;
52 shash_add(&new->tables, node->name, ovsdb_table_schema_clone(ts));
58 ovsdb_schema_destroy(struct ovsdb_schema *schema)
60 struct shash_node *node;
66 SHASH_FOR_EACH (node, &schema->tables) {
67 ovsdb_table_schema_destroy(node->data);
69 shash_destroy(&schema->tables);
71 free(schema->version);
77 ovsdb_schema_from_file(const char *file_name, struct ovsdb_schema **schemap)
79 struct ovsdb_schema *schema;
80 struct ovsdb_error *error;
84 json = json_from_file(file_name);
85 if (json->type == JSON_STRING) {
86 error = ovsdb_error("failed to read schema",
87 "\"%s\" could not be read as JSON (%s)",
88 file_name, json_string(json));
93 error = ovsdb_schema_from_json(json, &schema);
96 return ovsdb_wrap_error(error,
97 "failed to parse \"%s\" as ovsdb schema",
105 static struct ovsdb_error * WARN_UNUSED_RESULT
106 ovsdb_schema_check_ref_table(const struct ovsdb_column *column,
107 const struct shash *tables,
108 const struct ovsdb_base_type *base,
109 const char *base_name)
111 if (base->type == OVSDB_TYPE_UUID && base->u.uuid.refTableName
112 && !shash_find(tables, base->u.uuid.refTableName)) {
113 return ovsdb_syntax_error(NULL, NULL,
114 "column %s %s refers to undefined table %s",
115 column->name, base_name,
116 base->u.uuid.refTableName);
123 is_valid_version(const char *s)
126 ignore(sscanf(s, "%*[0-9].%*[0-9].%*[0-9]%n", &n));
127 return n != -1 && s[n] == '\0';
131 ovsdb_schema_from_json(struct json *json, struct ovsdb_schema **schemap)
133 struct ovsdb_schema *schema;
134 const struct json *name, *tables, *version_json, *cksum;
135 struct ovsdb_error *error;
136 struct shash_node *node;
137 struct ovsdb_parser parser;
142 ovsdb_parser_init(&parser, json, "database schema");
143 name = ovsdb_parser_member(&parser, "name", OP_ID);
144 version_json = ovsdb_parser_member(&parser, "version",
145 OP_STRING | OP_OPTIONAL);
146 cksum = ovsdb_parser_member(&parser, "cksum", OP_STRING | OP_OPTIONAL);
147 tables = ovsdb_parser_member(&parser, "tables", OP_OBJECT);
148 error = ovsdb_parser_finish(&parser);
154 version = json_string(version_json);
155 if (!is_valid_version(version)) {
156 return ovsdb_syntax_error(json, NULL, "schema version \"%s\" not "
157 "in format x.y.z", version);
160 /* Backward compatibility with old databases. */
164 schema = ovsdb_schema_create(json_string(name), version,
165 cksum ? json_string(cksum) : "");
166 SHASH_FOR_EACH (node, json_object(tables)) {
167 struct ovsdb_table_schema *table;
169 if (node->name[0] == '_') {
170 error = ovsdb_syntax_error(json, NULL, "names beginning with "
171 "\"_\" are reserved");
172 } else if (!ovsdb_parser_is_id(node->name)) {
173 error = ovsdb_syntax_error(json, NULL, "name must be a valid id");
175 error = ovsdb_table_schema_from_json(node->data, node->name,
179 ovsdb_schema_destroy(schema);
183 shash_add(&schema->tables, table->name, table);
186 /* Validate that all refTables refer to the names of tables that exist. */
187 SHASH_FOR_EACH (node, &schema->tables) {
188 struct ovsdb_table_schema *table = node->data;
189 struct shash_node *node2;
191 SHASH_FOR_EACH (node2, &table->columns) {
192 struct ovsdb_column *column = node2->data;
194 error = ovsdb_schema_check_ref_table(column, &schema->tables,
195 &column->type.key, "key");
197 error = ovsdb_schema_check_ref_table(column, &schema->tables,
202 ovsdb_schema_destroy(schema);
213 ovsdb_schema_to_json(const struct ovsdb_schema *schema)
215 struct json *json, *tables;
216 struct shash_node *node;
218 json = json_object_create();
219 json_object_put_string(json, "name", schema->name);
220 if (schema->version[0]) {
221 json_object_put_string(json, "version", schema->version);
223 if (schema->cksum[0]) {
224 json_object_put_string(json, "cksum", schema->cksum);
227 tables = json_object_create();
229 SHASH_FOR_EACH (node, &schema->tables) {
230 struct ovsdb_table_schema *table = node->data;
231 json_object_put(tables, table->name,
232 ovsdb_table_schema_to_json(table));
234 json_object_put(json, "tables", tables);
239 /* Returns true if 'a' and 'b' specify equivalent schemas, false if they
242 ovsdb_schema_equal(const struct ovsdb_schema *a,
243 const struct ovsdb_schema *b)
245 /* This implementation is simple, stupid, and slow, but I doubt that it
246 * will ever require much maintenance. */
247 struct json *ja = ovsdb_schema_to_json(a);
248 struct json *jb = ovsdb_schema_to_json(b);
249 bool equals = json_equal(ja, jb);
257 ovsdb_set_ref_table(const struct shash *tables,
258 struct ovsdb_base_type *base)
260 if (base->type == OVSDB_TYPE_UUID && base->u.uuid.refTableName) {
261 struct ovsdb_table *table;
263 table = shash_find_data(tables, base->u.uuid.refTableName);
264 base->u.uuid.refTable = table;
269 ovsdb_create(struct ovsdb_schema *schema)
271 struct shash_node *node;
274 db = xmalloc(sizeof *db);
276 list_init(&db->replicas);
277 list_init(&db->triggers);
278 db->run_triggers = false;
280 shash_init(&db->tables);
281 SHASH_FOR_EACH (node, &schema->tables) {
282 struct ovsdb_table_schema *ts = node->data;
283 shash_add(&db->tables, node->name, ovsdb_table_create(ts));
286 /* Set all the refTables. */
287 SHASH_FOR_EACH (node, &schema->tables) {
288 struct ovsdb_table_schema *table = node->data;
289 struct shash_node *node2;
291 SHASH_FOR_EACH (node2, &table->columns) {
292 struct ovsdb_column *column = node2->data;
294 ovsdb_set_ref_table(&db->tables, &column->type.key);
295 ovsdb_set_ref_table(&db->tables, &column->type.value);
303 ovsdb_destroy(struct ovsdb *db)
306 struct shash_node *node;
308 /* Remove all the replicas. */
309 while (!list_is_empty(&db->replicas)) {
310 struct ovsdb_replica *r
311 = CONTAINER_OF(list_pop_back(&db->replicas),
312 struct ovsdb_replica, node);
313 ovsdb_remove_replica(db, r);
316 /* Delete all the tables. This also deletes their schemas. */
317 SHASH_FOR_EACH (node, &db->tables) {
318 struct ovsdb_table *table = node->data;
319 ovsdb_table_destroy(table);
321 shash_destroy(&db->tables);
323 /* The schemas, but not the table that points to them, were deleted in
324 * the previous step, so we need to clear out the table. We can't
325 * destroy the table, because ovsdb_schema_destroy() will do that. */
326 shash_clear(&db->schema->tables);
328 ovsdb_schema_destroy(db->schema);
334 ovsdb_get_table(const struct ovsdb *db, const char *name)
336 return shash_find_data(&db->tables, name);
340 ovsdb_replica_init(struct ovsdb_replica *r,
341 const struct ovsdb_replica_class *class)
347 ovsdb_add_replica(struct ovsdb *db, struct ovsdb_replica *r)
349 list_push_back(&db->replicas, &r->node);
353 ovsdb_remove_replica(struct ovsdb *db OVS_UNUSED, struct ovsdb_replica *r)
355 list_remove(&r->node);
356 (r->class->destroy)(r);