Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Yumin Xia | 2c509c2 | 2017-02-09 14:37:36 -0800 | [diff] [blame] | 2 | /* |
Davide Pesavento | 948c50c | 2020-12-26 21:30:45 -0500 | [diff] [blame] | 3 | * Copyright (c) 2014-2020, Regents of the University of California. |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 4 | * |
| 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 | |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 20 | #include "logger.hpp" |
Davide Pesavento | d01c1a4 | 2019-01-21 21:42:45 -0500 | [diff] [blame] | 21 | #include "ndns-label.hpp" |
| 22 | #include "mgmt/management-tool.hpp" |
| 23 | #include "util/util.hpp" |
| 24 | |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 25 | #include <boost/program_options.hpp> |
Davide Pesavento | 948c50c | 2020-12-26 21:30:45 -0500 | [diff] [blame] | 26 | |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 27 | #include <iostream> |
| 28 | |
| 29 | int |
| 30 | main(int argc, char* argv[]) |
| 31 | { |
| 32 | using std::string; |
| 33 | using namespace ndn; |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 34 | |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 35 | string zoneStr; |
Davide Pesavento | d01c1a4 | 2019-01-21 21:42:45 -0500 | [diff] [blame] | 36 | string db = ndns::getDefaultDatabaseFile(); |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 37 | try { |
| 38 | namespace po = boost::program_options; |
| 39 | po::variables_map vm; |
| 40 | |
| 41 | po::options_description options("Generic Options"); |
| 42 | options.add_options() |
Davide Pesavento | d01c1a4 | 2019-01-21 21:42:45 -0500 | [diff] [blame] | 43 | ("help,h", "print this help message and exit") |
| 44 | ("db,b", po::value<std::string>(&db)->default_value(db), "path to NDNS database file") |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 45 | ; |
| 46 | |
| 47 | po::positional_options_description postion; |
| 48 | postion.add("zone", 1); |
| 49 | |
| 50 | po::options_description cmdline_options; |
| 51 | cmdline_options.add(options); |
| 52 | |
| 53 | po::parsed_options parsed = |
| 54 | po::command_line_parser(argc, argv).options(cmdline_options).positional(postion).run(); |
| 55 | |
| 56 | po::store(parsed, vm); |
| 57 | po::notify(vm); |
| 58 | |
| 59 | if (vm.count("help")) { |
| 60 | std::cout << "Usage: ndns-list-all-zones [-b db]" << std::endl; |
| 61 | std::cout << options << std::endl; |
| 62 | return 0; |
| 63 | } |
| 64 | } |
| 65 | catch (const std::exception& ex) { |
| 66 | std::cerr << "Parameter Error: " << ex.what() << std::endl; |
| 67 | return 1; |
| 68 | } |
| 69 | |
| 70 | try { |
Yumin Xia | 2c509c2 | 2017-02-09 14:37:36 -0800 | [diff] [blame] | 71 | KeyChain keyChain; |
Alexander Afanasyev | d6b3bda | 2014-11-25 17:33:58 -0800 | [diff] [blame] | 72 | ndn::ndns::ManagementTool tool(db, keyChain); |
Jiewen Tan | 870b29b | 2014-11-17 19:09:49 -0800 | [diff] [blame] | 73 | tool.listAllZones(std::cout); |
| 74 | } |
| 75 | catch (const std::exception& ex) { |
| 76 | std::cerr << "Error: " << ex.what() << std::endl; |
| 77 | return 1; |
| 78 | } |
| 79 | } |