X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=ovsdb%2Fovsdb-tool.c;fp=ovsdb%2Fovsdb-tool.c;h=130e73779d80b508ca50387a78962d4be3f0d0fb;hb=8159b984dced44851670bd48e204b4e854941a24;hp=5eeb28fa46a43436543464fa4b85f0a505fc60af;hpb=538c6dfab42ec72f916e80f916e858f988d1c48d;p=sliver-openvswitch.git diff --git a/ovsdb/ovsdb-tool.c b/ovsdb/ovsdb-tool.c index 5eeb28fa4..130e73779 100644 --- a/ovsdb/ovsdb-tool.c +++ b/ovsdb/ovsdb-tool.c @@ -110,6 +110,8 @@ usage(void) " create DB SCHEMA create DB with the given SCHEMA\n" " compact DB [DST] compact DB in-place (or to DST)\n" " convert DB SCHEMA [DST] convert DB to SCHEMA (to DST)\n" + " db-version DB report version of schema used by DB\n" + " schema-version SCHEMA report SCHEMA's schema version\n" " query DB TRNS execute read-only transaction on DB\n" " transact DB TRNS execute read/write transaction on DB\n" " show-log DB prints information about DB's log entries\n", @@ -239,6 +241,28 @@ do_convert(int argc OVS_UNUSED, char *argv[]) ovsdb_schema_destroy(new_schema); } +static void +do_db_version(int argc OVS_UNUSED, char *argv[]) +{ + const char *db_file_name = argv[1]; + struct ovsdb *db; + + check_ovsdb_error(ovsdb_file_open(db_file_name, true, &db, NULL)); + puts(db->schema->version); + ovsdb_destroy(db); +} + +static void +do_schema_version(int argc OVS_UNUSED, char *argv[]) +{ + const char *schema_file_name = argv[1]; + struct ovsdb_schema *schema; + + check_ovsdb_error(ovsdb_schema_from_file(schema_file_name, &schema)); + puts(schema->version); + ovsdb_schema_destroy(schema); +} + static void transact(bool read_only, const char *db_file_name, const char *transaction) { @@ -410,6 +434,8 @@ static const struct command all_commands[] = { { "create", 2, 2, do_create }, { "compact", 1, 2, do_compact }, { "convert", 2, 3, do_convert }, + { "db-version", 1, 1, do_db_version }, + { "schema-version", 1, 1, do_schema_version }, { "query", 2, 2, do_query }, { "transact", 2, 2, do_transact }, { "show-log", 1, 1, do_show_log },