blob: 0779cc1d226ff2c50ce23e01611df60d47ca7654 [file] [log] [blame]
Junxiao Shi2d9bdc82014-03-02 20:55:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi8d843142016-07-11 22:42:42 +00003 * Copyright (c) 2014-2016, Regents of the University of California,
Junxiao Shifaf3eb02015-02-16 10:50:36 -07004 * 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.
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
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/>.
Junxiao Shie93d6a32014-09-07 16:13:22 -070024 */
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070025
26#include "client-control-strategy.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070028
29namespace nfd {
30namespace fw {
31
32NFD_LOG_INIT("ClientControlStrategy");
33
Junxiao Shie93d6a32014-09-07 16:13:22 -070034const Name
35ClientControlStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/client-control/%FD%01");
Junxiao Shifaf3eb02015-02-16 10:50:36 -070036NFD_REGISTER_STRATEGY(ClientControlStrategy);
Junxiao Shif3c07812014-03-11 21:48:49 -070037
38ClientControlStrategy::ClientControlStrategy(Forwarder& forwarder, const Name& name)
39 : BestRouteStrategy(forwarder, name)
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070040{
41}
42
43ClientControlStrategy::~ClientControlStrategy()
44{
45}
46
47void
48ClientControlStrategy::afterReceiveInterest(const Face& inFace,
49 const Interest& interest,
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070050 shared_ptr<pit::Entry> pitEntry)
51{
Junxiao Shi0de23a22015-12-03 20:07:02 +000052 shared_ptr<lp::NextHopFaceIdTag> tag = interest.getTag<lp::NextHopFaceIdTag>();
53 if (tag == nullptr) {
Junxiao Shi8d843142016-07-11 22:42:42 +000054 this->BestRouteStrategy::afterReceiveInterest(inFace, interest, pitEntry);
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070055 return;
56 }
57
Junxiao Shi0de23a22015-12-03 20:07:02 +000058 FaceId outFaceId = static_cast<FaceId>(*tag);
Junxiao Shi5b43f9a2016-07-19 13:15:56 +000059 Face* outFace = this->getFace(outFaceId);
Junxiao Shicde37ad2015-12-24 01:02:05 -070060 if (outFace == nullptr) {
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070061 // If outFace doesn't exist, it's better to reject the Interest
62 // than to use BestRouteStrategy.
63 NFD_LOG_WARN("Interest " << interest.getName() <<
64 " NextHopFaceId=" << outFaceId << " non-existent face");
65 this->rejectPendingInterest(pitEntry);
66 return;
67 }
68
Junxiao Shia6de4292016-07-12 02:08:10 +000069 this->sendInterest(pitEntry, *outFace);
Junxiao Shi2d9bdc82014-03-02 20:55:42 -070070}
71
72} // namespace fw
73} // namespace nfd