2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2015-06-20 01:24:36 +02:00
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
#if !(defined GFLAGS) || defined(ROCKSDB_LITE)
|
|
|
|
|
2015-06-20 01:24:36 +02:00
|
|
|
#include <cstdio>
|
|
|
|
int main() {
|
2015-10-06 04:49:48 +02:00
|
|
|
#ifndef GFLAGS
|
2015-06-20 01:24:36 +02:00
|
|
|
fprintf(stderr, "Please install gflags to run rocksdb tools\n");
|
2015-10-06 04:49:48 +02:00
|
|
|
#endif
|
|
|
|
#ifdef ROCKSDB_LITE
|
|
|
|
fprintf(stderr, "DbDumpTool is not supported in ROCKSDB_LITE\n");
|
|
|
|
#endif
|
2015-06-20 01:24:36 +02:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
#else
|
2015-06-26 19:29:24 +02:00
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
#include "rocksdb/convenience.h"
|
|
|
|
#include "rocksdb/db_dump_tool.h"
|
2017-12-01 19:40:45 +01:00
|
|
|
#include "util/gflags_compat.h"
|
2015-06-20 01:24:36 +02:00
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
DEFINE_string(db_path, "", "Path to the db that will be dumped");
|
|
|
|
DEFINE_string(dump_location, "", "Path to where the dump file location");
|
|
|
|
DEFINE_bool(anonymous, false,
|
|
|
|
"Remove information like db path, creation time from dumped file");
|
|
|
|
DEFINE_string(db_options, "",
|
|
|
|
"Options string used to open the database that will be dumped");
|
2015-06-20 01:24:36 +02:00
|
|
|
|
|
|
|
int main(int argc, char** argv) {
|
2017-12-01 19:40:45 +01:00
|
|
|
GFLAGS_NAMESPACE::ParseCommandLineFlags(&argc, &argv, true);
|
2015-06-20 01:24:36 +02:00
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
if (FLAGS_db_path == "" || FLAGS_dump_location == "") {
|
|
|
|
fprintf(stderr, "Please set --db_path and --dump_location\n");
|
|
|
|
return 1;
|
2015-06-20 01:24:36 +02:00
|
|
|
}
|
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
rocksdb::DumpOptions dump_options;
|
|
|
|
dump_options.db_path = FLAGS_db_path;
|
|
|
|
dump_options.dump_location = FLAGS_dump_location;
|
|
|
|
dump_options.anonymous = FLAGS_anonymous;
|
2015-06-20 01:24:36 +02:00
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
rocksdb::Options db_options;
|
|
|
|
if (FLAGS_db_options != "") {
|
|
|
|
rocksdb::Options parsed_options;
|
|
|
|
rocksdb::Status s = rocksdb::GetOptionsFromString(
|
|
|
|
db_options, FLAGS_db_options, &parsed_options);
|
|
|
|
if (!s.ok()) {
|
|
|
|
fprintf(stderr, "Cannot parse provided db_options\n");
|
|
|
|
return 1;
|
2015-06-20 01:24:36 +02:00
|
|
|
}
|
2015-10-06 04:49:48 +02:00
|
|
|
db_options = parsed_options;
|
2015-06-20 01:24:36 +02:00
|
|
|
}
|
|
|
|
|
2015-10-06 04:49:48 +02:00
|
|
|
rocksdb::DbDumpTool tool;
|
|
|
|
if (!tool.Run(dump_options, db_options)) {
|
|
|
|
return 1;
|
|
|
|
}
|
2015-06-20 01:24:36 +02:00
|
|
|
return 0;
|
|
|
|
}
|
2015-10-06 04:49:48 +02:00
|
|
|
#endif // !(defined GFLAGS) || defined(ROCKSDB_LITE)
|