Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 2 | /* |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 4 | * 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 "link-service.hpp" |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 27 | #include "face.hpp" |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 28 | |
| 29 | namespace nfd { |
| 30 | namespace face { |
| 31 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame^] | 32 | NFD_LOG_INIT(LinkService); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 33 | |
| 34 | LinkService::LinkService() |
| 35 | : m_face(nullptr) |
| 36 | , m_transport(nullptr) |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 37 | { |
| 38 | } |
| 39 | |
| 40 | LinkService::~LinkService() |
| 41 | { |
| 42 | } |
| 43 | |
| 44 | void |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 45 | LinkService::setFaceAndTransport(Face& face, Transport& transport) |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 46 | { |
| 47 | BOOST_ASSERT(m_face == nullptr); |
| 48 | BOOST_ASSERT(m_transport == nullptr); |
| 49 | |
| 50 | m_face = &face; |
| 51 | m_transport = &transport; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | void |
| 55 | LinkService::sendInterest(const Interest& interest) |
| 56 | { |
| 57 | BOOST_ASSERT(m_transport != nullptr); |
| 58 | NFD_LOG_FACE_TRACE(__func__); |
| 59 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 60 | ++this->nOutInterests; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 61 | |
| 62 | doSendInterest(interest); |
| 63 | } |
| 64 | |
| 65 | void |
| 66 | LinkService::sendData(const Data& data) |
| 67 | { |
| 68 | BOOST_ASSERT(m_transport != nullptr); |
| 69 | NFD_LOG_FACE_TRACE(__func__); |
| 70 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 71 | ++this->nOutData; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 72 | |
| 73 | doSendData(data); |
| 74 | } |
| 75 | |
| 76 | void |
| 77 | LinkService::sendNack(const ndn::lp::Nack& nack) |
| 78 | { |
| 79 | BOOST_ASSERT(m_transport != nullptr); |
| 80 | NFD_LOG_FACE_TRACE(__func__); |
| 81 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 82 | ++this->nOutNacks; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 83 | |
| 84 | doSendNack(nack); |
| 85 | } |
| 86 | |
| 87 | void |
| 88 | LinkService::receiveInterest(const Interest& interest) |
| 89 | { |
| 90 | NFD_LOG_FACE_TRACE(__func__); |
| 91 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 92 | ++this->nInInterests; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 93 | |
| 94 | afterReceiveInterest(interest); |
| 95 | } |
| 96 | |
| 97 | void |
| 98 | LinkService::receiveData(const Data& data) |
| 99 | { |
| 100 | NFD_LOG_FACE_TRACE(__func__); |
| 101 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 102 | ++this->nInData; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 103 | |
| 104 | afterReceiveData(data); |
| 105 | } |
| 106 | |
| 107 | void |
| 108 | LinkService::receiveNack(const ndn::lp::Nack& nack) |
| 109 | { |
| 110 | NFD_LOG_FACE_TRACE(__func__); |
| 111 | |
Junxiao Shi | 57df288 | 2015-11-11 06:12:35 -0700 | [diff] [blame] | 112 | ++this->nInNacks; |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 113 | |
| 114 | afterReceiveNack(nack); |
| 115 | } |
| 116 | |
Eric Newberry | 41aba10 | 2017-11-01 16:42:13 -0700 | [diff] [blame] | 117 | void |
| 118 | LinkService::notifyDroppedInterest(const Interest& interest) |
| 119 | { |
| 120 | ++this->nDroppedInterests; |
| 121 | onDroppedInterest(interest); |
| 122 | } |
| 123 | |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 124 | std::ostream& |
| 125 | operator<<(std::ostream& os, const FaceLogHelper<LinkService>& flh) |
| 126 | { |
Junxiao Shi | cde37ad | 2015-12-24 01:02:05 -0700 | [diff] [blame] | 127 | const Face* face = flh.obj.getFace(); |
Eric Newberry | a98bf93 | 2015-09-21 00:58:47 -0700 | [diff] [blame] | 128 | if (face == nullptr) { |
| 129 | os << "[id=0,local=unknown,remote=unknown] "; |
| 130 | } |
| 131 | else { |
| 132 | os << "[id=" << face->getId() << ",local=" << face->getLocalUri() |
| 133 | << ",remote=" << face->getRemoteUri() << "] "; |
| 134 | } |
| 135 | return os; |
| 136 | } |
| 137 | |
| 138 | } // namespace face |
| 139 | } // namespace nfd |