blob: 0458fb1e271ccf55c509594e90b876f1d5173f50 [file] [log] [blame]
Junxiao Shi737c43c2016-09-14 02:51:44 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -04002/*
3 * Copyright (c) 2014-2022, 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"
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040030
Junxiao Shi737c43c2016-09-14 02:51:44 +000031#include <ndn-cxx/face.hpp>
Junxiao Shi1d7fef52017-02-02 05:33:14 +000032#include <ndn-cxx/mgmt/nfd/command-options.hpp>
Junxiao Shi1f481fa2017-01-26 15:14:43 +000033#include <ndn-cxx/mgmt/nfd/controller.hpp>
Junxiao Shi1d7fef52017-02-02 05:33:14 +000034#include <ndn-cxx/mgmt/nfd/control-command.hpp>
35#include <ndn-cxx/mgmt/nfd/control-parameters.hpp>
36#include <ndn-cxx/mgmt/nfd/control-response.hpp>
37#include <ndn-cxx/mgmt/nfd/status-dataset.hpp>
Junxiao Shi737c43c2016-09-14 02:51:44 +000038#include <ndn-cxx/security/key-chain.hpp>
39
40namespace nfd {
41namespace tools {
42namespace nfdc {
43
44using ndn::Face;
45using ndn::KeyChain;
Junxiao Shi1d7fef52017-02-02 05:33:14 +000046using ndn::nfd::ControlParameters;
Yanbiao Li58ba3f92017-02-15 14:27:18 +000047using ndn::nfd::ControlResponse;
Junxiao Shi1f481fa2017-01-26 15:14:43 +000048using ndn::nfd::Controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000049
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040050/**
51 * \brief Context for command execution
Junxiao Shi737c43c2016-09-14 02:51:44 +000052 */
Junxiao Shi1f481fa2017-01-26 15:14:43 +000053class ExecuteContext
Junxiao Shi737c43c2016-09-14 02:51:44 +000054{
Junxiao Shi1f481fa2017-01-26 15:14:43 +000055public:
Junxiao Shi1d7fef52017-02-02 05:33:14 +000056 /** \return timeout for each step
57 */
58 time::nanoseconds
59 getTimeout() const;
60
61 ndn::nfd::CommandOptions
62 makeCommandOptions() const;
63
64 /** \return handler for command execution failure
65 * \param commandName command name used in error message (present continuous tense)
66 */
67 Controller::CommandFailCallback
68 makeCommandFailureHandler(const std::string& commandName);
69
70 /** \return handler for dataset retrieval failure
71 * \param datasetName dataset name used in error message (noun phrase)
Junxiao Shi1f481fa2017-01-26 15:14:43 +000072 */
73 Controller::DatasetFailCallback
74 makeDatasetFailureHandler(const std::string& datasetName);
75
76public:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040077 std::string_view noun;
78 std::string_view verb;
Junxiao Shi737c43c2016-09-14 02:51:44 +000079 const CommandArguments& args;
80
Junxiao Shi88a062d2017-01-26 03:10:05 +000081 int exitCode; ///< program exit code
82 std::ostream& out; ///< output stream
83 std::ostream& err; ///< error stream
84
Junxiao Shi737c43c2016-09-14 02:51:44 +000085 Face& face;
86 KeyChain& keyChain;
Junxiao Shi1f481fa2017-01-26 15:14:43 +000087 Controller& controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000088};
89
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040090/**
91 * \brief A function to execute a command
Junxiao Shi737c43c2016-09-14 02:51:44 +000092 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040093using ExecuteCommand = std::function<void(ExecuteContext&)>;
Junxiao Shi737c43c2016-09-14 02:51:44 +000094
95} // namespace nfdc
96} // namespace tools
97} // namespace nfd
98
99#endif // NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP