blob: 0974cf218e7a1b21330f80534a416adced355fef [file] [log] [blame]
Junxiao Shi32bfeb32014-01-25 18:22:02 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev319f2c82015-01-07 14:56:53 -08003 * Copyright (c) 2014-2015, 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 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 Shi5dd26c32014-07-20 23:15:14 -070024 */
Junxiao Shi32bfeb32014-01-25 18:22:02 -070025
26#include "face.hpp"
27
Davide Pesaventobe40fb12015-02-23 21:09:34 +010028#include <ndn-cxx/management/nfd-face-event-notification.hpp>
29
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080030namespace nfd {
Junxiao Shi32bfeb32014-01-25 18:22:02 -070031
Davide Pesavento94279412015-02-27 01:29:32 +010032Face::Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal, bool isMultiAccess)
Junxiao Shi8c8d2182014-01-30 22:33:00 -070033 : m_id(INVALID_FACEID)
Junxiao Shi79494162014-04-02 18:25:11 -070034 , m_remoteUri(remoteUri)
35 , m_localUri(localUri)
Davide Pesavento94279412015-02-27 01:29:32 +010036 , m_isLocal(isLocal)
Alexander Afanasyev355c0662014-03-20 18:08:17 -070037 , m_isOnDemand(false)
Davide Pesavento94279412015-02-27 01:29:32 +010038 , m_isMultiAccess(isMultiAccess)
Junxiao Shi08d07a72014-06-09 23:17:57 -070039 , m_isFailed(false)
Junxiao Shi32bfeb32014-01-25 18:22:02 -070040{
Junxiao Shic099ddb2014-12-25 20:53:20 -070041 onReceiveInterest.connect([this] (const ndn::Interest&) { ++m_counters.getNInInterests(); });
42 onReceiveData .connect([this] (const ndn::Data&) { ++m_counters.getNInDatas(); });
43 onSendInterest .connect([this] (const ndn::Interest&) { ++m_counters.getNOutInterests(); });
44 onSendData .connect([this] (const ndn::Data&) { ++m_counters.getNOutDatas(); });
Junxiao Shi32bfeb32014-01-25 18:22:02 -070045}
46
47Face::~Face()
48{
49}
50
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080051bool
Davide Pesavento0ff10db2014-02-28 03:12:27 +010052Face::isUp() const
53{
54 return true;
55}
56
57bool
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080058Face::decodeAndDispatchInput(const Block& element)
Junxiao Shi32bfeb32014-01-25 18:22:02 -070059{
Alexander Afanasyev650028d2014-04-25 18:39:10 -070060 try {
61 /// \todo Ensure lazy field decoding process
Alexander Afanasyev355c0662014-03-20 18:08:17 -070062
Alexander Afanasyev650028d2014-04-25 18:39:10 -070063 if (element.type() == tlv::Interest)
64 {
65 shared_ptr<Interest> i = make_shared<Interest>();
66 i->wireDecode(element);
67 this->onReceiveInterest(*i);
68 }
69 else if (element.type() == tlv::Data)
70 {
71 shared_ptr<Data> d = make_shared<Data>();
72 d->wireDecode(element);
73 this->onReceiveData(*d);
74 }
75 else
76 return false;
77
78 return true;
79 }
Davide Pesavento66ff0982015-01-29 22:39:00 +010080 catch (const tlv::Error&) {
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080081 return false;
Alexander Afanasyev650028d2014-04-25 18:39:10 -070082 }
Junxiao Shi16b8bc92014-02-17 22:24:55 -070083}
Junxiao Shi32bfeb32014-01-25 18:22:02 -070084
Junxiao Shi08d07a72014-06-09 23:17:57 -070085void
86Face::fail(const std::string& reason)
87{
88 if (m_isFailed) {
89 return;
90 }
91
92 m_isFailed = true;
93 this->onFail(reason);
94}
95
Chengyu Fanf9c2bb12014-10-06 11:52:44 -060096template<typename FaceTraits>
97void
98Face::copyStatusTo(FaceTraits& traits) const
99{
100 traits.setFaceId(getId())
Davide Pesavento13b76f02015-02-26 03:59:54 +0100101 .setRemoteUri(getRemoteUri().toString())
102 .setLocalUri(getLocalUri().toString())
103 .setFaceScope(isLocal() ? ndn::nfd::FACE_SCOPE_LOCAL
104 : ndn::nfd::FACE_SCOPE_NON_LOCAL)
105 .setFacePersistency(isOnDemand() ? ndn::nfd::FACE_PERSISTENCY_ON_DEMAND
106 : ndn::nfd::FACE_PERSISTENCY_PERSISTENT)
107 .setLinkType(isMultiAccess() ? ndn::nfd::LINK_TYPE_MULTI_ACCESS
108 : ndn::nfd::LINK_TYPE_POINT_TO_POINT);
Chengyu Fanf9c2bb12014-10-06 11:52:44 -0600109}
110
111template void
112Face::copyStatusTo<ndn::nfd::FaceStatus>(ndn::nfd::FaceStatus&) const;
113
114template void
115Face::copyStatusTo<ndn::nfd::FaceEventNotification>(ndn::nfd::FaceEventNotification&) const;
116
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700117ndn::nfd::FaceStatus
118Face::getFaceStatus() const
119{
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700120 ndn::nfd::FaceStatus status;
Junxiao Shi632a6202014-07-20 01:14:30 -0700121
Davide Pesavento13b76f02015-02-26 03:59:54 +0100122 copyStatusTo(status);
Junxiao Shi632a6202014-07-20 01:14:30 -0700123 this->getCounters().copyTo(status);
Alexander Afanasyeve515f0a2014-06-30 15:28:10 -0700124
125 return status;
126}
127
Davide Pesavento13b76f02015-02-26 03:59:54 +0100128} // namespace nfd