blob: 204d2b67084369c079a38bde083e5be82e8c3e98 [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_READVERTISE_DESTINATION_HPP
27#define NFD_RIB_READVERTISE_READVERTISE_DESTINATION_HPP
28
29#include "readvertised-route.hpp"
30
31#include <ndn-cxx/mgmt/nfd/controller.hpp>
32
33namespace nfd {
34namespace rib {
35
36/** \brief a destination to readvertise into
37 */
38class ReadvertiseDestination : noncopyable
39{
40public:
41 virtual
42 ~ReadvertiseDestination() = default;
43
44 virtual void
45 advertise(nfd::rib::ReadvertisedRoute& rr,
46 std::function<void()> successCb,
47 std::function<void(const std::string&)> failureCb) = 0;
48
49 virtual void
50 withdraw(nfd::rib::ReadvertisedRoute& rr,
51 std::function<void()> successCb,
52 std::function<void(const std::string&)> failureCb) = 0;
Nick Gordon04262d92017-01-31 12:27:06 -060053
54 bool
55 isAvailable() const
56 {
57 return m_isAvailable;
58 };
59
60protected:
61 void
62 setAvailability(bool isAvailable);
63
64public:
65 /** \brief signals when the destination becomes available or unavailable
66 */
67 ndn::util::signal::Signal<ReadvertiseDestination, bool>
68 afterAvailabilityChange;
69
70private:
71 bool m_isAvailable = false;
Nick Gordon94719252016-10-20 20:48:01 +000072};
73
74} // namespace rib
75} // namespace nfd
76
77#endif // NFD_RIB_READVERTISE_READVERTISE_DESTINATION_HPP