blob: b737d3ab10e3f17ebdd6a616813e0bef341cf938 [file] [log] [blame]
Nick Gordon94719252016-10-20 20:48:01 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordon04262d92017-01-31 12:27:06 -06003 * Copyright (c) 2014-2017, Regents of the University of California,
Nick Gordon94719252016-10-20 20:48:01 +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_RIB_READVERTISE_NFD_RIB_READVERTISE_DESTINATION_HPP
27#define NFD_RIB_READVERTISE_NFD_RIB_READVERTISE_DESTINATION_HPP
28
29#include "readvertised-route.hpp"
30#include "readvertise-destination.hpp"
31
32#include <ndn-cxx/mgmt/nfd/command-options.hpp>
33#include <ndn-cxx/mgmt/nfd/controller.hpp>
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>
37
38namespace nfd {
39namespace rib {
40
41/** \brief a readvertise destination using NFD RIB management protocol
42 */
43class NfdRibReadvertiseDestination : public ReadvertiseDestination
44{
45public:
46 NfdRibReadvertiseDestination(ndn::nfd::Controller& controller,
Nick Gordon04262d92017-01-31 12:27:06 -060047 const ndn::Name& commandPrefix,
48 Rib& rib);
Nick Gordon94719252016-10-20 20:48:01 +000049
50 /** \brief add a name prefix into NFD RIB
51 */
52 void
53 advertise(nfd::rib::ReadvertisedRoute& rr,
54 std::function<void()> successCb,
55 std::function<void(const std::string&)> failureCb) override;
56
57 /** \brief remove a name prefix from NFD RIB
58 */
59 void
60 withdraw(nfd::rib::ReadvertisedRoute& rr,
61 std::function<void()> successCb,
62 std::function<void(const std::string&)> failureCb) override;
63
64private:
Nick Gordon04262d92017-01-31 12:27:06 -060065 void
66 handleRibAdd(const ndn::Name& name);
67
68 void
69 handleRibRemove(const ndn::Name& name);
70
71private:
Nick Gordon94719252016-10-20 20:48:01 +000072 ndn::nfd::Controller& m_controller;
73 Name m_commandPrefix;
Nick Gordon04262d92017-01-31 12:27:06 -060074
75 signal::ScopedConnection m_ribAddConn;
76 signal::ScopedConnection m_ribRemoveConn;
Nick Gordon94719252016-10-20 20:48:01 +000077};
78
79} // namespace rib
80} // namespace nfd
81
82#endif // NFD_RIB_READVERTISE_NFD_RIB_READVERTISE_DESTINATION_HPP