2017-01-21 16:23:56 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include <prinit.h>
|
|
|
|
|
|
|
|
#include "argparse.h"
|
|
|
|
#include "db/dbtool.h"
|
|
|
|
|
|
|
|
static void Usage() {
|
|
|
|
std::cerr << "Usage: nss <command> <subcommand> [options]" << std::endl;
|
2017-02-06 08:02:12 +03:00
|
|
|
std::cerr << " nss db [--path <directory>] <commands>" << std::endl;
|
2017-01-21 16:23:56 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
if (argc < 2) {
|
|
|
|
Usage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (std::string(argv[1]) != "db") {
|
|
|
|
Usage();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int exit_code = 0;
|
|
|
|
PR_Init(PR_SYSTEM_THREAD, PR_PRIORITY_NORMAL, 1);
|
|
|
|
|
|
|
|
std::vector<std::string> arguments(argv + 2, argv + argc);
|
|
|
|
DBTool tool;
|
|
|
|
if (!tool.Run(arguments)) {
|
|
|
|
exit_code = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
PR_Cleanup();
|
|
|
|
|
|
|
|
return exit_code;
|
|
|
|
}
|