blob: d6738f50c5bb28ce1d7c05071852cac8f34650d6 [file] [log] [blame]
Jiewen Tan870b29b2014-11-17 19:09:49 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yumin Xia2c509c22017-02-09 14:37:36 -08002/*
Alexander Afanasyev08d18742018-03-15 16:31:28 -04003 * Copyright (c) 2014-2018, Regents of the University of California.
Jiewen Tan870b29b2014-11-17 19:09:49 -08004 *
5 * This file is part of NDNS (Named Data Networking Domain Name Service).
6 * See AUTHORS.md for complete list of NDNS authors and contributors.
7 *
8 * NDNS is free software: you can redistribute it and/or modify it under the terms
9 * of the GNU General Public License as published by the Free Software Foundation,
10 * either version 3 of the License, or (at your option) any later version.
11 *
12 * NDNS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
13 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 * PURPOSE. See the GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License along with
17 * NDNS, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "mgmt/management-tool.hpp"
21#include "ndns-label.hpp"
22#include "logger.hpp"
23#include <boost/program_options.hpp>
24#include <boost/filesystem.hpp>
25#include <string>
26#include <iostream>
27
28int
29main(int argc, char* argv[])
30{
31 using std::string;
32 using namespace ndn;
33 using namespace ndns;
34
Jiewen Tan870b29b2014-11-17 19:09:49 -080035 string zoneStr;
36 string db;
37 bool printRaw = false;
38 try {
39 namespace po = boost::program_options;
40 po::variables_map vm;
41
42 po::options_description options("Generic Options");
43 options.add_options()
44 ("help,h", "print help message")
45 ("db,b", po::value<std::string>(&db), "Set the path of NDNS server database. "
46 "Default: " DEFAULT_DATABASE_PATH "/ndns.db");
47
48 po::options_description config("Output Options");
49 config.add_options()
50 ("printRaw,p", "Set to print raw data")
51 ;
52
53 options.add(config);
54
55 po::options_description hidden("Hidden Options");
56 hidden.add_options()
57 ("zone", po::value<string>(&zoneStr), "zone name to investigate")
58 ;
59
60 po::positional_options_description positional;
61 positional.add("zone", 1);
62
63 po::options_description cmdlineOptions;
64 cmdlineOptions.add(options).add(hidden);
65
66 // po::options_description config_file_options;
67 // config_file_options.add(config).add(hidden);
68
69 po::parsed_options parsed =
70 po::command_line_parser(argc, argv).options(cmdlineOptions).positional(positional).run();
71
72 po::store(parsed, vm);
73 po::notify(vm);
74
75 if (vm.count("help")) {
76 std::cout << "Usage: ndns-list-zone zone [-b db] [-p printRaw]" << std::endl
77 << std::endl;
78 std::cout << options << std::endl;
79 return 0;
80 }
81
82 if (vm.count("zone") == 0) {
83 std::cerr << "Error: zone must be specified" << std::endl;
84 return 1;
85 }
86
87 if (vm.count("printRaw") != 0) {
88 printRaw = true;
89 }
90 }
91 catch (const std::exception& ex) {
92 std::cerr << "Parameter Error: " << ex.what() << std::endl;
93 return 1;
94 }
95
96 try {
97 Name zoneName(zoneStr);
98
Yumin Xia2c509c22017-02-09 14:37:36 -080099 KeyChain keyChain;
Alexander Afanasyevd6b3bda2014-11-25 17:33:58 -0800100 ndn::ndns::ManagementTool tool(db, keyChain);
Jiewen Tan870b29b2014-11-17 19:09:49 -0800101 tool.listZone(zoneName, std::cout, printRaw);
102 }
103 catch (const std::exception& ex) {
104 std::cerr << "Error: " << ex.what() << std::endl;
105 return 1;
106 }
107}