blob: 2d8a716840400298400ba0189d0b37dc136ded41 [file] [log] [blame]
Junxiao Shi737c43c2016-09-14 02:51:44 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi88a062d2017-01-26 03:10:05 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Junxiao Shi737c43c2016-09-14 02:51:44 +00004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
26#ifndef NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP
27#define NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP
28
29#include "command-arguments.hpp"
30#include <ndn-cxx/face.hpp>
Junxiao Shi1d7fef52017-02-02 05:33:14 +000031#include <ndn-cxx/mgmt/nfd/command-options.hpp>
Junxiao Shi1f481fa2017-01-26 15:14:43 +000032#include <ndn-cxx/mgmt/nfd/controller.hpp>
Junxiao Shi1d7fef52017-02-02 05:33:14 +000033#include <ndn-cxx/mgmt/nfd/control-command.hpp>
34#include <ndn-cxx/mgmt/nfd/control-parameters.hpp>
35#include <ndn-cxx/mgmt/nfd/control-response.hpp>
36#include <ndn-cxx/mgmt/nfd/status-dataset.hpp>
Junxiao Shi737c43c2016-09-14 02:51:44 +000037#include <ndn-cxx/security/key-chain.hpp>
38
39namespace nfd {
40namespace tools {
41namespace nfdc {
42
43using ndn::Face;
44using ndn::KeyChain;
Junxiao Shi1d7fef52017-02-02 05:33:14 +000045using ndn::nfd::ControlParameters;
Yanbiao Li58ba3f92017-02-15 14:27:18 +000046using ndn::nfd::ControlResponse;
Junxiao Shi1f481fa2017-01-26 15:14:43 +000047using ndn::nfd::Controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000048
49/** \brief context for command execution
50 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000051class ExecuteContext
Junxiao Shi737c43c2016-09-14 02:51:44 +000052{
Junxiao Shi1f481fa2017-01-26 15:14:43 +000053public:
Junxiao Shi1d7fef52017-02-02 05:33:14 +000054 /** \return timeout for each step
55 */
56 time::nanoseconds
57 getTimeout() const;
58
59 ndn::nfd::CommandOptions
60 makeCommandOptions() const;
61
62 /** \return handler for command execution failure
63 * \param commandName command name used in error message (present continuous tense)
64 */
65 Controller::CommandFailCallback
66 makeCommandFailureHandler(const std::string& commandName);
67
68 /** \return handler for dataset retrieval failure
69 * \param datasetName dataset name used in error message (noun phrase)
Junxiao Shi1f481fa2017-01-26 15:14:43 +000070 */
71 Controller::DatasetFailCallback
72 makeDatasetFailureHandler(const std::string& datasetName);
73
74public:
Junxiao Shi737c43c2016-09-14 02:51:44 +000075 const std::string& noun;
76 const std::string& verb;
77 const CommandArguments& args;
78
Junxiao Shi88a062d2017-01-26 03:10:05 +000079 int exitCode; ///< program exit code
80 std::ostream& out; ///< output stream
81 std::ostream& err; ///< error stream
82
Junxiao Shi737c43c2016-09-14 02:51:44 +000083 Face& face;
84 KeyChain& keyChain;
85 ///\todo validator
Junxiao Shi1f481fa2017-01-26 15:14:43 +000086 Controller& controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000087};
88
89/** \brief a function to execute a command
Junxiao Shi737c43c2016-09-14 02:51:44 +000090 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000091using ExecuteCommand = std::function<void(ExecuteContext& ctx)>;
Junxiao Shi737c43c2016-09-14 02:51:44 +000092
93} // namespace nfdc
94} // namespace tools
95} // namespace nfd
96
97#endif // NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP