blob: f0a04825ae7efe3fabef2fb8dafbebcd3569e343 [file] [log] [blame]
Nick Gordon94719252016-10-20 20:48:01 +00001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesaventoa3148082018-04-12 18:21:54 -04002/*
3 * Copyright (c) 2014-2018, 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#include "nfd-rib-readvertise-destination.hpp"
Junxiao Shi63b67e22017-03-06 19:46:02 +000027#include "core/logger.hpp"
28
Junxiao Shi63b67e22017-03-06 19:46:02 +000029#include <ndn-cxx/mgmt/nfd/control-command.hpp>
Junxiao Shi63b67e22017-03-06 19:46:02 +000030#include <ndn-cxx/mgmt/nfd/control-response.hpp>
Nick Gordon94719252016-10-20 20:48:01 +000031
32namespace nfd {
33namespace rib {
34
Davide Pesaventoa3148082018-04-12 18:21:54 -040035NFD_LOG_INIT(NfdRibReadvertiseDestination);
Junxiao Shi63b67e22017-03-06 19:46:02 +000036
Nick Gordon94719252016-10-20 20:48:01 +000037using ndn::nfd::ControlResponse;
38
39NfdRibReadvertiseDestination::NfdRibReadvertiseDestination(ndn::nfd::Controller& controller,
Yanbiao Lif48d0802018-06-01 03:00:02 -070040 Rib& rib,
41 const ndn::nfd::CommandOptions& options,
42 const ndn::nfd::ControlParameters& parameters)
Nick Gordon94719252016-10-20 20:48:01 +000043 : m_controller(controller)
Yanbiao Lif48d0802018-06-01 03:00:02 -070044 , m_commandOptions(options)
45 , m_controlParameters(parameters)
Nick Gordon94719252016-10-20 20:48:01 +000046{
Junxiao Shi63b67e22017-03-06 19:46:02 +000047 m_ribInsertConn = rib.afterInsertEntry.connect(
48 std::bind(&NfdRibReadvertiseDestination::handleRibInsert, this, _1));
49 m_ribEraseConn = rib.afterEraseEntry.connect(
50 std::bind(&NfdRibReadvertiseDestination::handleRibErase, this, _1));
Nick Gordon94719252016-10-20 20:48:01 +000051}
52
53void
Junxiao Shi63b67e22017-03-06 19:46:02 +000054NfdRibReadvertiseDestination::advertise(const nfd::rib::ReadvertisedRoute& rr,
Nick Gordon94719252016-10-20 20:48:01 +000055 std::function<void()> successCb,
56 std::function<void(const std::string&)> failureCb)
57{
Yanbiao Lif48d0802018-06-01 03:00:02 -070058 NFD_LOG_DEBUG("advertise " << rr.prefix << " on " << m_commandOptions.getPrefix());
Junxiao Shi63b67e22017-03-06 19:46:02 +000059
60 m_controller.start<ndn::nfd::RibRegisterCommand>(
Yanbiao Lif48d0802018-06-01 03:00:02 -070061 getControlParameters().setName(rr.prefix),
Nick Gordon94719252016-10-20 20:48:01 +000062 [=] (const ControlParameters& cp) { successCb(); },
Junxiao Shi63b67e22017-03-06 19:46:02 +000063 [=] (const ControlResponse& cr) { failureCb(cr.getText()); },
Yanbiao Lif48d0802018-06-01 03:00:02 -070064 getCommandOptions().setSigningInfo(rr.signer));
Nick Gordon94719252016-10-20 20:48:01 +000065}
66
67void
Junxiao Shi63b67e22017-03-06 19:46:02 +000068NfdRibReadvertiseDestination::withdraw(const nfd::rib::ReadvertisedRoute& rr,
Nick Gordon94719252016-10-20 20:48:01 +000069 std::function<void()> successCb,
70 std::function<void(const std::string&)> failureCb)
71{
Yanbiao Lif48d0802018-06-01 03:00:02 -070072 NFD_LOG_DEBUG("withdraw " << rr.prefix << " on " << m_commandOptions.getPrefix());
Junxiao Shi63b67e22017-03-06 19:46:02 +000073
74 m_controller.start<ndn::nfd::RibUnregisterCommand>(
Yanbiao Lif48d0802018-06-01 03:00:02 -070075 getControlParameters().setName(rr.prefix),
Nick Gordon94719252016-10-20 20:48:01 +000076 [=] (const ControlParameters& cp) { successCb(); },
Junxiao Shi63b67e22017-03-06 19:46:02 +000077 [=] (const ControlResponse& cr) { failureCb(cr.getText()); },
Yanbiao Lif48d0802018-06-01 03:00:02 -070078 getCommandOptions().setSigningInfo(rr.signer));
79}
80
81ndn::nfd::ControlParameters
82NfdRibReadvertiseDestination::getControlParameters()
83{
84 return m_controlParameters;
85}
86
87ndn::nfd::CommandOptions
88NfdRibReadvertiseDestination::getCommandOptions()
89{
90 return m_commandOptions;
Nick Gordon94719252016-10-20 20:48:01 +000091}
92
Nick Gordon04262d92017-01-31 12:27:06 -060093void
Junxiao Shi63b67e22017-03-06 19:46:02 +000094NfdRibReadvertiseDestination::handleRibInsert(const ndn::Name& name)
Nick Gordon04262d92017-01-31 12:27:06 -060095{
Yanbiao Lif48d0802018-06-01 03:00:02 -070096 if (name.isPrefixOf(m_commandOptions.getPrefix())) {
Nick Gordon04262d92017-01-31 12:27:06 -060097 setAvailability(true);
98 }
99}
100
101void
Junxiao Shi63b67e22017-03-06 19:46:02 +0000102NfdRibReadvertiseDestination::handleRibErase(const ndn::Name& name)
Nick Gordon04262d92017-01-31 12:27:06 -0600103{
Yanbiao Lif48d0802018-06-01 03:00:02 -0700104 if (name.isPrefixOf(m_commandOptions.getPrefix())) {
Nick Gordon04262d92017-01-31 12:27:06 -0600105 setAvailability(false);
106 }
107}
108
Nick Gordon94719252016-10-20 20:48:01 +0000109} // namespace rib
110} // namespace nfd