Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 2 | /* |
Davide Pesavento | 4064127 | 2023-03-16 13:31:12 -0400 | [diff] [blame] | 3 | * Copyright (c) 2014-2023, Regents of the University of California, |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 4 | * 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 Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 30 | |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 31 | #include <ndn-cxx/face.hpp> |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 32 | #include <ndn-cxx/mgmt/nfd/command-options.hpp> |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 33 | #include <ndn-cxx/mgmt/nfd/controller.hpp> |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 34 | #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 Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 37 | #include <ndn-cxx/security/key-chain.hpp> |
| 38 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 39 | namespace nfd::tools::nfdc { |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 40 | |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 41 | using ndn::nfd::ControlParameters; |
Yanbiao Li | 58ba3f9 | 2017-02-15 14:27:18 +0000 | [diff] [blame] | 42 | using ndn::nfd::ControlResponse; |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 43 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 44 | /** |
Davide Pesavento | 63b3ae8 | 2023-03-24 23:53:24 -0400 | [diff] [blame^] | 45 | * \brief Context for command execution. |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 46 | */ |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 47 | class ExecuteContext |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 48 | { |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 49 | public: |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 50 | /** \return timeout for each step |
| 51 | */ |
| 52 | time::nanoseconds |
| 53 | getTimeout() const; |
| 54 | |
| 55 | ndn::nfd::CommandOptions |
| 56 | makeCommandOptions() const; |
| 57 | |
| 58 | /** \return handler for command execution failure |
| 59 | * \param commandName command name used in error message (present continuous tense) |
| 60 | */ |
Davide Pesavento | 63b3ae8 | 2023-03-24 23:53:24 -0400 | [diff] [blame^] | 61 | ndn::nfd::CommandFailureCallback |
Junxiao Shi | 1d7fef5 | 2017-02-02 05:33:14 +0000 | [diff] [blame] | 62 | makeCommandFailureHandler(const std::string& commandName); |
| 63 | |
| 64 | /** \return handler for dataset retrieval failure |
| 65 | * \param datasetName dataset name used in error message (noun phrase) |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 66 | */ |
Davide Pesavento | 63b3ae8 | 2023-03-24 23:53:24 -0400 | [diff] [blame^] | 67 | ndn::nfd::DatasetFailureCallback |
Junxiao Shi | 1f481fa | 2017-01-26 15:14:43 +0000 | [diff] [blame] | 68 | makeDatasetFailureHandler(const std::string& datasetName); |
| 69 | |
| 70 | public: |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 71 | std::string_view noun; |
| 72 | std::string_view verb; |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 73 | const CommandArguments& args; |
| 74 | |
Junxiao Shi | 88a062d | 2017-01-26 03:10:05 +0000 | [diff] [blame] | 75 | int exitCode; ///< program exit code |
| 76 | std::ostream& out; ///< output stream |
| 77 | std::ostream& err; ///< error stream |
| 78 | |
Davide Pesavento | 63b3ae8 | 2023-03-24 23:53:24 -0400 | [diff] [blame^] | 79 | ndn::Face& face; |
| 80 | ndn::KeyChain& keyChain; |
| 81 | ndn::nfd::Controller& controller; |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 82 | }; |
| 83 | |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 84 | /** |
Davide Pesavento | 63b3ae8 | 2023-03-24 23:53:24 -0400 | [diff] [blame^] | 85 | * \brief A function to execute a command. |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 86 | */ |
Davide Pesavento | a3a7a4e | 2022-05-29 16:06:22 -0400 | [diff] [blame] | 87 | using ExecuteCommand = std::function<void(ExecuteContext&)>; |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 88 | |
Davide Pesavento | e422f9e | 2022-06-03 01:30:23 -0400 | [diff] [blame] | 89 | } // namespace nfd::tools::nfdc |
Junxiao Shi | 737c43c | 2016-09-14 02:51:44 +0000 | [diff] [blame] | 90 | |
| 91 | #endif // NFD_TOOLS_NFDC_EXECUTE_COMMAND_HPP |