blob: 83db017902d89c8b3c9f6157a79e130fc8a77093 [file] [log] [blame]
Junxiao Shif2bfb442018-01-05 12:34:57 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesavento78ddcab2019-02-28 22:00:03 -05003 * Copyright (c) 2014-2019, Regents of the University of California,
Junxiao Shif2bfb442018-01-05 12:34:57 +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_DAEMON_MGMT_CS_MANAGER_HPP
27#define NFD_DAEMON_MGMT_CS_MANAGER_HPP
28
Davide Pesavento78ddcab2019-02-28 22:00:03 -050029#include "manager-base.hpp"
Junxiao Shif2bfb442018-01-05 12:34:57 +000030
31namespace nfd {
32
Davide Pesavento78ddcab2019-02-28 22:00:03 -050033namespace cs {
34class Cs;
35} // namespace cs
36
37class ForwarderCounters;
38
39/**
40 * \brief Implements the CS Management of NFD Management Protocol.
41 * \sa https://redmine.named-data.net/projects/nfd/wiki/CsMgmt
Junxiao Shif2bfb442018-01-05 12:34:57 +000042 */
Davide Pesavento78ddcab2019-02-28 22:00:03 -050043class CsManager : public ManagerBase
Junxiao Shif2bfb442018-01-05 12:34:57 +000044{
45public:
Davide Pesavento78ddcab2019-02-28 22:00:03 -050046 CsManager(cs::Cs& cs, const ForwarderCounters& fwCounters,
Junxiao Shif2bfb442018-01-05 12:34:57 +000047 Dispatcher& dispatcher, CommandAuthenticator& authenticator);
48
49private:
Junxiao Shibd724312018-04-17 02:23:48 +000050 /** \brief Process cs/config command.
51 */
Junxiao Shic9b5e012018-02-07 15:04:18 +000052 void
53 changeConfig(const ControlParameters& parameters,
54 const ndn::mgmt::CommandContinuation& done);
55
Junxiao Shibd724312018-04-17 02:23:48 +000056 /** \brief Process cs/erase command.
57 */
58 void
59 erase(const ControlParameters& parameters,
60 const ndn::mgmt::CommandContinuation& done);
61
62 /** \brief Serve CS information dataset.
Junxiao Shif2bfb442018-01-05 12:34:57 +000063 */
64 void
65 serveInfo(const Name& topPrefix, const Interest& interest,
66 ndn::mgmt::StatusDatasetContext& context) const;
67
Junxiao Shibd724312018-04-17 02:23:48 +000068public:
69 static constexpr size_t ERASE_LIMIT = 256;
70
Junxiao Shif2bfb442018-01-05 12:34:57 +000071private:
Davide Pesavento78ddcab2019-02-28 22:00:03 -050072 cs::Cs& m_cs;
73 const ForwarderCounters& m_fwCounters;
Junxiao Shif2bfb442018-01-05 12:34:57 +000074};
75
76} // namespace nfd
77
78#endif // NFD_DAEMON_MGMT_CS_MANAGER_HPP