Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 08d07a7 | 2014-06-09 23:17:57 -0700 | [diff] [blame] | 3 | * Copyright (c) 2014, Regents of the University of California, |
| 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 |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | 5dd26c3 | 2014-07-20 23:15:14 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 25 | |
| 26 | #include "face.hpp" |
Junxiao Shi | 16b8bc9 | 2014-02-17 22:24:55 -0700 | [diff] [blame] | 27 | #include "core/logger.hpp" |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 28 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 29 | namespace nfd { |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 30 | |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 31 | Face::Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal) |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 32 | : m_id(INVALID_FACEID) |
Davide Pesavento | 0ff10db | 2014-02-28 03:12:27 +0100 | [diff] [blame] | 33 | , m_isLocal(isLocal) |
Junxiao Shi | 7949416 | 2014-04-02 18:25:11 -0700 | [diff] [blame] | 34 | , m_remoteUri(remoteUri) |
| 35 | , m_localUri(localUri) |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 36 | , m_isOnDemand(false) |
Junxiao Shi | 08d07a7 | 2014-06-09 23:17:57 -0700 | [diff] [blame] | 37 | , m_isFailed(false) |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 38 | { |
Davide Pesavento | ab1e8f2 | 2014-10-21 22:45:33 +0200 | [diff] [blame] | 39 | onReceiveInterest += [this](const ndn::Interest&) { ++m_counters.getNInInterests(); }; |
| 40 | onReceiveData += [this](const ndn::Data&) { ++m_counters.getNInDatas(); }; |
| 41 | onSendInterest += [this](const ndn::Interest&) { ++m_counters.getNOutInterests(); }; |
| 42 | onSendData += [this](const ndn::Data&) { ++m_counters.getNOutDatas(); }; |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 43 | } |
| 44 | |
| 45 | Face::~Face() |
| 46 | { |
| 47 | } |
| 48 | |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 49 | FaceId |
| 50 | Face::getId() const |
| 51 | { |
| 52 | return m_id; |
| 53 | } |
| 54 | |
Junxiao Shi | 33152f1 | 2014-07-16 19:54:32 -0700 | [diff] [blame] | 55 | // this method is private and should be used only by the FaceTable |
Alexander Afanasyev | 46f6647 | 2014-01-31 16:50:58 -0800 | [diff] [blame] | 56 | void |
Junxiao Shi | 8c8d218 | 2014-01-30 22:33:00 -0700 | [diff] [blame] | 57 | Face::setId(FaceId faceId) |
| 58 | { |
| 59 | m_id = faceId; |
| 60 | } |
| 61 | |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 62 | void |
| 63 | Face::setDescription(const std::string& description) |
| 64 | { |
| 65 | m_description = description; |
| 66 | } |
| 67 | |
| 68 | const std::string& |
| 69 | Face::getDescription() const |
| 70 | { |
| 71 | return m_description; |
| 72 | } |
| 73 | |
| 74 | bool |
| 75 | Face::isMultiAccess() const |
| 76 | { |
| 77 | return false; |
| 78 | } |
| 79 | |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 80 | bool |
Davide Pesavento | 0ff10db | 2014-02-28 03:12:27 +0100 | [diff] [blame] | 81 | Face::isUp() const |
| 82 | { |
| 83 | return true; |
| 84 | } |
| 85 | |
| 86 | bool |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 87 | Face::decodeAndDispatchInput(const Block& element) |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 88 | { |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 89 | try { |
| 90 | /// \todo Ensure lazy field decoding process |
Alexander Afanasyev | 355c066 | 2014-03-20 18:08:17 -0700 | [diff] [blame] | 91 | |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 92 | if (element.type() == tlv::Interest) |
| 93 | { |
| 94 | shared_ptr<Interest> i = make_shared<Interest>(); |
| 95 | i->wireDecode(element); |
| 96 | this->onReceiveInterest(*i); |
| 97 | } |
| 98 | else if (element.type() == tlv::Data) |
| 99 | { |
| 100 | shared_ptr<Data> d = make_shared<Data>(); |
| 101 | d->wireDecode(element); |
| 102 | this->onReceiveData(*d); |
| 103 | } |
| 104 | else |
| 105 | return false; |
| 106 | |
| 107 | return true; |
| 108 | } |
| 109 | catch (tlv::Error&) { |
Alexander Afanasyev | bd220a0 | 2014-02-20 00:29:56 -0800 | [diff] [blame] | 110 | return false; |
Alexander Afanasyev | 650028d | 2014-04-25 18:39:10 -0700 | [diff] [blame] | 111 | } |
Junxiao Shi | 16b8bc9 | 2014-02-17 22:24:55 -0700 | [diff] [blame] | 112 | } |
Junxiao Shi | 32bfeb3 | 2014-01-25 18:22:02 -0700 | [diff] [blame] | 113 | |
Junxiao Shi | 08d07a7 | 2014-06-09 23:17:57 -0700 | [diff] [blame] | 114 | void |
| 115 | Face::fail(const std::string& reason) |
| 116 | { |
| 117 | if (m_isFailed) { |
| 118 | return; |
| 119 | } |
| 120 | |
| 121 | m_isFailed = true; |
| 122 | this->onFail(reason); |
Alexander Afanasyev | 583760b | 2014-06-30 19:27:37 -0700 | [diff] [blame] | 123 | |
| 124 | this->onFail.clear(); |
Junxiao Shi | 08d07a7 | 2014-06-09 23:17:57 -0700 | [diff] [blame] | 125 | } |
| 126 | |
Chengyu Fan | f9c2bb1 | 2014-10-06 11:52:44 -0600 | [diff] [blame] | 127 | template<typename FaceTraits> |
| 128 | void |
| 129 | Face::copyStatusTo(FaceTraits& traits) const |
| 130 | { |
| 131 | traits.setFaceId(getId()) |
| 132 | .setRemoteUri(getRemoteUri().toString()) |
| 133 | .setLocalUri(getLocalUri().toString()); |
| 134 | |
| 135 | if (isLocal()) { |
| 136 | traits.setFaceScope(ndn::nfd::FACE_SCOPE_LOCAL); |
| 137 | } |
| 138 | else { |
| 139 | traits.setFaceScope(ndn::nfd::FACE_SCOPE_NON_LOCAL); |
| 140 | } |
| 141 | |
| 142 | if (isOnDemand()) { |
| 143 | traits.setFacePersistency(ndn::nfd::FACE_PERSISTENCY_ON_DEMAND); |
| 144 | } |
| 145 | else { |
| 146 | traits.setFacePersistency(ndn::nfd::FACE_PERSISTENCY_PERSISTENT); |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | template void |
| 151 | Face::copyStatusTo<ndn::nfd::FaceStatus>(ndn::nfd::FaceStatus&) const; |
| 152 | |
| 153 | template void |
| 154 | Face::copyStatusTo<ndn::nfd::FaceEventNotification>(ndn::nfd::FaceEventNotification&) const; |
| 155 | |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 156 | ndn::nfd::FaceStatus |
| 157 | Face::getFaceStatus() const |
| 158 | { |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 159 | ndn::nfd::FaceStatus status; |
Chengyu Fan | f9c2bb1 | 2014-10-06 11:52:44 -0600 | [diff] [blame] | 160 | copyStatusTo(status); |
Junxiao Shi | 632a620 | 2014-07-20 01:14:30 -0700 | [diff] [blame] | 161 | |
| 162 | this->getCounters().copyTo(status); |
Alexander Afanasyev | e515f0a | 2014-06-30 15:28:10 -0700 | [diff] [blame] | 163 | |
| 164 | return status; |
| 165 | } |
| 166 | |
Alexander Afanasyev | 18bbf81 | 2014-01-29 01:40:23 -0800 | [diff] [blame] | 167 | } //namespace nfd |