blob: 58fe362f5f6d50c80733685e6735488c87f2a747 [file] [log] [blame]
Junxiao Shif2bfb442018-01-05 12:34:57 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/*
Davide Pesaventoae430302023-05-11 01:42:46 -04003 * Copyright (c) 2014-2023, 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 Pesavento3db98072021-03-09 23:03:27 -050043class CsManager final : 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
Davide Pesaventoae430302023-05-11 01:42:46 -040065 serveInfo(ndn::mgmt::StatusDatasetContext& context) const;
Junxiao Shif2bfb442018-01-05 12:34:57 +000066
Junxiao Shibd724312018-04-17 02:23:48 +000067public:
68 static constexpr size_t ERASE_LIMIT = 256;
69
Junxiao Shif2bfb442018-01-05 12:34:57 +000070private:
Davide Pesavento78ddcab2019-02-28 22:00:03 -050071 cs::Cs& m_cs;
72 const ForwarderCounters& m_fwCounters;
Junxiao Shif2bfb442018-01-05 12:34:57 +000073};
74
75} // namespace nfd
76
77#endif // NFD_DAEMON_MGMT_CS_MANAGER_HPP