| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| /** |
| * Copyright (C) 2014 Named Data Networking Project |
| * See COPYING for copyright and distribution information. |
| */ |
| |
| #ifndef NFD_MGMT_MANAGER_BASE_HPP |
| #define NFD_MGMT_MANAGER_BASE_HPP |
| |
| #include "common.hpp" |
| #include <ndn-cpp-dev/management/nfd-control-response.hpp> |
| |
| namespace nfd { |
| |
| using ndn::nfd::ControlResponse; |
| |
| class AppFace; |
| |
| class ManagerBase |
| { |
| public: |
| struct Error : public std::runtime_error |
| { |
| Error(const std::string& what) : std::runtime_error(what) {} |
| }; |
| |
| ManagerBase(shared_ptr<AppFace> face); |
| |
| virtual |
| ~ManagerBase(); |
| |
| protected: |
| |
| void |
| setResponse(ControlResponse& response, |
| uint32_t code, |
| const std::string& text); |
| void |
| setResponse(ControlResponse& response, |
| uint32_t code, |
| const std::string& text, |
| const Block& body); |
| |
| void |
| sendResponse(const Name& name, |
| const ControlResponse& response); |
| |
| void |
| sendResponse(const Name& name, |
| uint32_t code, |
| const std::string& text); |
| |
| protected: |
| shared_ptr<AppFace> m_face; |
| }; |
| |
| inline void |
| ManagerBase::setResponse(ControlResponse& response, |
| uint32_t code, |
| const std::string& text) |
| { |
| response.setCode(code); |
| response.setText(text); |
| } |
| |
| inline void |
| ManagerBase::setResponse(ControlResponse& response, |
| uint32_t code, |
| const std::string& text, |
| const Block& body) |
| { |
| setResponse(response, code, text); |
| response.setBody(body); |
| } |
| |
| |
| } // namespace nfd |
| |
| #endif // NFD_MGMT_MANAGER_BASE_HPP |
| |