X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=ovsdb%2Fovsdb-tool.c;h=130e73779d80b508ca50387a78962d4be3f0d0fb;hb=4951ece66d368a97d740eb1a4cedd1dc84e3e7a1;hp=1c9e9206a154afb130e976c0fa6e10c71b7d4d60;hpb=a0bc29a541fc7dc6e20137d5558e2094d614e6ab;p=openvswitch diff --git a/ovsdb/ovsdb-tool.c b/ovsdb/ovsdb-tool.c index 1c9e9206..130e7377 100644 --- a/ovsdb/ovsdb-tool.c +++ b/ovsdb/ovsdb-tool.c @@ -34,9 +34,9 @@ #include "table.h" #include "timeval.h" #include "util.h" - #include "vlog.h" -#define THIS_MODULE VLM_ovsdb_tool + +VLOG_DEFINE_THIS_MODULE(ovsdb_tool); /* -m, --more: Verbosity level for "show-log" command output. */ static int show_log_verbosity; @@ -50,8 +50,6 @@ int main(int argc, char *argv[]) { set_program_name(argv[0]); - time_init(); - vlog_init(); parse_options(argc, argv); signal(SIGPIPE, SIG_IGN); run_command(argc - optind, argv + optind, all_commands); @@ -112,7 +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" - " extract-schema DB print DB's schema on stdout\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", @@ -189,7 +188,7 @@ compact_or_convert(const char *src_name, const char *dst_name, /* Lock the source, if we will be replacing it. */ if (in_place) { - retval = lockfile_lock(src_name, INT_MAX, &src_lock); + retval = lockfile_lock(src_name, 0, &src_lock); if (retval) { ovs_fatal(retval, "%s: failed to lock lockfile", src_name); } @@ -199,7 +198,7 @@ compact_or_convert(const char *src_name, const char *dst_name, if (in_place) { dst_name = xasprintf("%s.tmp", src_name); } - retval = lockfile_lock(dst_name, INT_MAX, &dst_lock); + retval = lockfile_lock(dst_name, 0, &dst_lock); if (retval) { ovs_fatal(retval, "%s: failed to lock lockfile", dst_name); } @@ -242,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) { @@ -413,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 },