blob: 09f28d51e147fbdff10489665f7b1257c826c928 [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;
Junxiao Shi1f481fa2017-01-26 15:14:43 +000046using ndn::nfd::Controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000047
48/** \brief context for command execution
49 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000050class ExecuteContext
Junxiao Shi737c43c2016-09-14 02:51:44 +000051{
Junxiao Shi1f481fa2017-01-26 15:14:43 +000052public:
Junxiao Shi1d7fef52017-02-02 05:33:14 +000053 /** \return timeout for each step
54 */
55 time::nanoseconds
56 getTimeout() const;
57
58 ndn::nfd::CommandOptions
59 makeCommandOptions() const;
60
61 /** \return handler for command execution failure
62 * \param commandName command name used in error message (present continuous tense)
63 */
64 Controller::CommandFailCallback
65 makeCommandFailureHandler(const std::string& commandName);
66
67 /** \return handler for dataset retrieval failure
68 * \param datasetName dataset name used in error message (noun phrase)
Junxiao Shi1f481fa2017-01-26 15:14:43 +000069 */
70 Controller::DatasetFailCallback
71 makeDatasetFailureHandler(const std::string& datasetName);
72
73public:
Junxiao Shi737c43c2016-09-14 02:51:44 +000074 const std::string& noun;
75 const std::string& verb;
76 const CommandArguments& args;
77
Junxiao Shi88a062d2017-01-26 03:10:05 +000078 int exitCode; ///< program exit code
79 std::ostream& out; ///< output stream
80 std::ostream& err; ///< error stream
81
Junxiao Shi737c43c2016-09-14 02:51:44 +000082 Face& face;
83 KeyChain& keyChain;
84 ///\todo validator
Junxiao Shi1f481fa2017-01-26 15:14:43 +000085 Controller& controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000086};
87
88/** \brief a function to execute a command
Junxiao Shi737c43c2016-09-14 02:51:44 +000089 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000090using ExecuteCommand = std::function<void(ExecuteContext& ctx)>;
Junxiao Shi737c43c2016-09-14 02:51:44 +000091
92} // namespace nfdc
93} // namespace tools
94} // namespace nfd
95
96#endif // NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP