blob: 4bf69702e46efe03e9c7300156dd02d45a23e246 [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/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, 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>
Junxiao Shi737c43c2016-09-14 02:51:44 +000037#include <ndn-cxx/security/key-chain.hpp>
38
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050039#include <functional>
40#include <iosfwd>
41
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040042namespace nfd::tools::nfdc {
Junxiao Shi737c43c2016-09-14 02:51:44 +000043
Junxiao Shi1d7fef52017-02-02 05:33:14 +000044using ndn::nfd::ControlParameters;
Yanbiao Li58ba3f92017-02-15 14:27:18 +000045using ndn::nfd::ControlResponse;
Junxiao Shi737c43c2016-09-14 02:51:44 +000046
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040047/**
Davide Pesavento63b3ae82023-03-24 23:53:24 -040048 * \brief Context for command execution.
Junxiao Shi737c43c2016-09-14 02:51:44 +000049 */
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 */
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050055 ndn::time::nanoseconds
Junxiao Shi1d7fef52017-02-02 05:33:14 +000056 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 */
Davide Pesavento63b3ae82023-03-24 23:53:24 -040064 ndn::nfd::CommandFailureCallback
Junxiao Shi1d7fef52017-02-02 05:33:14 +000065 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 */
Davide Pesavento63b3ae82023-03-24 23:53:24 -040070 ndn::nfd::DatasetFailureCallback
Junxiao Shi1f481fa2017-01-26 15:14:43 +000071 makeDatasetFailureHandler(const std::string& datasetName);
72
73public:
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040074 std::string_view noun;
75 std::string_view verb;
Junxiao Shi737c43c2016-09-14 02:51:44 +000076 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
Davide Pesavento63b3ae82023-03-24 23:53:24 -040082 ndn::Face& face;
83 ndn::KeyChain& keyChain;
84 ndn::nfd::Controller& controller;
Junxiao Shi737c43c2016-09-14 02:51:44 +000085};
86
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040087/**
Davide Pesavento63b3ae82023-03-24 23:53:24 -040088 * \brief A function to execute a command.
Junxiao Shi737c43c2016-09-14 02:51:44 +000089 */
Davide Pesaventoa3a7a4e2022-05-29 16:06:22 -040090using ExecuteCommand = std::function<void(ExecuteContext&)>;
Junxiao Shi737c43c2016-09-14 02:51:44 +000091
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040092} // namespace nfd::tools::nfdc
Junxiao Shi737c43c2016-09-14 02:51:44 +000093
94#endif // NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP