2a58815ee3
Change-Id: I0cd182c8635b15c8ffb750c913e14fa99e595d45 Refs: #4503
104 lines
3.2 KiB
C++
104 lines
3.2 KiB
C++
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
|
|
/*
|
|
* Copyright (c) 2014-2018, Regents of the University of California,
|
|
* Arizona Board of Regents,
|
|
* Colorado State University,
|
|
* University Pierre & Marie Curie, Sorbonne University,
|
|
* Washington University in St. Louis,
|
|
* Beijing Institute of Technology,
|
|
* The University of Memphis.
|
|
*
|
|
* This file is part of NFD (Named Data Networking Forwarding Daemon).
|
|
* See AUTHORS.md for complete list of NFD authors and contributors.
|
|
*
|
|
* NFD is free software: you can redistribute it and/or modify it under the terms
|
|
* of the GNU General Public License as published by the Free Software Foundation,
|
|
* either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include "help.hpp"
|
|
#include "format-helpers.hpp"
|
|
|
|
#include <ndn-cxx/util/logger.hpp>
|
|
|
|
#include <cerrno>
|
|
#include <cstring>
|
|
#include <unistd.h>
|
|
|
|
namespace nfd {
|
|
namespace tools {
|
|
namespace nfdc {
|
|
|
|
NDN_LOG_INIT(nfdc.Help);
|
|
|
|
const int LIST_COMMAND_NAME_COLUMN_WIDTH = 16;
|
|
|
|
void
|
|
helpList(std::ostream& os, const CommandParser& parser, ParseMode mode, const std::string& noun)
|
|
{
|
|
os << "nfdc [-h|--help] [-V|--version] <command> [<args>]\n\n";
|
|
if (noun.empty()) {
|
|
os << "All subcommands:\n";
|
|
}
|
|
else {
|
|
os << "Subcommands starting with " << noun << ":\n";
|
|
}
|
|
|
|
std::vector<const CommandDefinition*> commands = parser.listCommands(noun, mode);
|
|
if (commands.empty()) {
|
|
os << " (none)\n";
|
|
return;
|
|
}
|
|
|
|
for (auto def : commands) {
|
|
os << " " << def->getNoun() << ' ' << def->getVerb() << ' '
|
|
<< text::Spaces{static_cast<int>(LIST_COMMAND_NAME_COLUMN_WIDTH -
|
|
def->getNoun().size() - def->getVerb().size() - 2)}
|
|
<< def->getTitle() << '\n';
|
|
}
|
|
|
|
os << "\nSee 'nfdc help <command>' to read about a specific subcommand.\n";
|
|
}
|
|
|
|
static void
|
|
helpCommand(const std::string& noun, const std::string& verb)
|
|
{
|
|
std::string manpage = "nfdc-" + noun;
|
|
|
|
::execlp("man", "man", manpage.data(), nullptr);
|
|
NDN_LOG_FATAL("Error opening man page for " << manpage << ": " << std::strerror(errno));
|
|
}
|
|
|
|
int
|
|
help(std::ostream& os, const CommandParser& parser, std::vector<std::string> args)
|
|
{
|
|
const auto helpOpts = {"help", "--help", "-h"};
|
|
auto it = std::find_first_of(args.begin(), args.end(), helpOpts.begin(), helpOpts.end());
|
|
if (it == args.end())
|
|
return 2;
|
|
|
|
args.erase(it);
|
|
auto noun = args.size() > 0 ? args[0] : "";
|
|
auto verb = args.size() > 1 ? args[1] : "";
|
|
|
|
if (noun.empty()) {
|
|
helpList(os, parser);
|
|
return 0;
|
|
}
|
|
else {
|
|
helpCommand(noun, verb); // should not return
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
} // namespace nfdc
|
|
} // namespace tools
|
|
} // namespace nfd
|