blob: 2f7e03fd95266f705295ed289dace39bf9ff50f0 [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/*
3 * Copyright (c) 2014-2017, 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
27int
28main(int argc, char* argv[])
29{
30 using std::string;
31 using namespace ndn;
32 using namespace ndns;
33
34 ndn::ndns::log::init();
35 string zoneStr;
36 string db;
37 string rrLabelStr;
38 string rrTypeStr;
39 try {
40 namespace po = boost::program_options;
41 po::variables_map vm;
42
43 po::options_description options("Generic Options");
44 options.add_options()
45 ("help,h", "print help message")
46 ("db,b", po::value<std::string>(&db), "Set the path of NDNS server database. "
47 "Default: " DEFAULT_DATABASE_PATH "/ndns.db")
48 ;
49
50 po::options_description hidden("Hidden Options");
51 hidden.add_options()
52 ("zone", po::value<string>(&zoneStr), "host zone name")
53 ("label", po::value<string>(&rrLabelStr), "label of the resource record.")
54 ("type", po::value<string>(&rrTypeStr), "type of the resource record.")
55 ;
56
57 po::positional_options_description postion;
58 postion.add("zone", 1);
59 postion.add("label", 1);
60 postion.add("type", 1);
61
62 po::options_description cmdline_options;
63 cmdline_options.add(options).add(hidden);
64
65 po::parsed_options parsed =
66 po::command_line_parser(argc, argv).options(cmdline_options).positional(postion).run();
67
68 po::store(parsed, vm);
69 po::notify(vm);
70
71 if (vm.count("help")) {
72 std::cout << "Usage: ndns-get-rr zone label type [-b db]" << std::endl;
73 std::cout << options << std::endl;
74 return 0;
75 }
76
77 if (vm.count("zone") == 0) {
78 std::cerr << "Error: zone must be specified" << std::endl;
79 return 1;
80 }
81
82 if (vm.count("label") == 0) {
83 std::cerr << "Error: label must be specified" << std::endl;
84 return 1;
85 }
86
87 if (vm.count("type") == 0) {
88 std::cerr << "Error: type must be specified" << std::endl;
89 return 1;
90 }
91 }
92 catch (const std::exception& ex) {
93 std::cerr << "Parameter Error: " << ex.what() << std::endl;
94 return 1;
95 }
96
97 try {
98 Name zoneName(zoneStr);
99 Name label(rrLabelStr);
100 name::Component type(rrTypeStr);
101
Yumin Xia2c509c22017-02-09 14:37:36 -0800102 KeyChain keyChain;
Alexander Afanasyevd6b3bda2014-11-25 17:33:58 -0800103 ndn::ndns::ManagementTool tool(db, keyChain);
Jiewen Tan870b29b2014-11-17 19:09:49 -0800104 tool.getRrSet(zoneName, label, type, std::cout);
105 }
106 catch (const std::exception& ex) {
107 std::cerr << "Error: " << ex.what() << std::endl;
108 return 1;
109 }
110}