gecko-dev/security/nss/nss-tool/nss_tool.cc

44 строки
922 B
C++

/* 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;
std::cerr << " nss db [--path <directory>] <commands>" << std::endl;
}
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)) {
tool.Usage();
exit_code = 1;
}
PR_Cleanup();
return exit_code;
}