blob: d4d198fdac1ac60e24c195e148fcfe7e2ba5e0b1 [file] [log] [blame]
Junxiao Shi32bfeb32014-01-25 18:22:02 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * 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 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Junxiao Shi32bfeb32014-01-25 18:22:02 -070024
25#include "face.hpp"
Junxiao Shi16b8bc92014-02-17 22:24:55 -070026#include "core/logger.hpp"
Junxiao Shi32bfeb32014-01-25 18:22:02 -070027
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080028namespace nfd {
Junxiao Shi32bfeb32014-01-25 18:22:02 -070029
Davide Pesavento0ff10db2014-02-28 03:12:27 +010030NFD_LOG_INIT("Face")
Junxiao Shi16b8bc92014-02-17 22:24:55 -070031
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000032static inline void
Junxiao Shi79494162014-04-02 18:25:11 -070033increaseCounter(FaceCounter& counter)
Alexander Afanasyev7e698e62014-03-07 16:48:35 +000034{
35 ++counter;
36}
37
Junxiao Shi79494162014-04-02 18:25:11 -070038Face::Face(const FaceUri& remoteUri, const FaceUri& localUri, bool isLocal)
Junxiao Shi8c8d2182014-01-30 22:33:00 -070039 : m_id(INVALID_FACEID)
Davide Pesavento0ff10db2014-02-28 03:12:27 +010040 , m_isLocal(isLocal)
Junxiao Shi79494162014-04-02 18:25:11 -070041 , m_remoteUri(remoteUri)
42 , m_localUri(localUri)
Alexander Afanasyev355c0662014-03-20 18:08:17 -070043 , m_isOnDemand(false)
Junxiao Shi32bfeb32014-01-25 18:22:02 -070044{
Junxiao Shi6e694322014-04-03 10:27:13 -070045 onReceiveInterest += bind(&increaseCounter, boost::ref(m_counters.getNInInterests()));
46 onReceiveData += bind(&increaseCounter, boost::ref(m_counters.getNInDatas()));
47 onSendInterest += bind(&increaseCounter, boost::ref(m_counters.getNOutInterests()));
48 onSendData += bind(&increaseCounter, boost::ref(m_counters.getNOutDatas()));
Junxiao Shi32bfeb32014-01-25 18:22:02 -070049}
50
51Face::~Face()
52{
53}
54
Junxiao Shi8c8d2182014-01-30 22:33:00 -070055FaceId
56Face::getId() const
57{
58 return m_id;
59}
60
Alexander Afanasyev46f66472014-01-31 16:50:58 -080061// this method is private and should be used only by the Forwarder
62void
Junxiao Shi8c8d2182014-01-30 22:33:00 -070063Face::setId(FaceId faceId)
64{
65 m_id = faceId;
66}
67
Junxiao Shi32bfeb32014-01-25 18:22:02 -070068void
69Face::setDescription(const std::string& description)
70{
71 m_description = description;
72}
73
74const std::string&
75Face::getDescription() const
76{
77 return m_description;
78}
79
80bool
81Face::isMultiAccess() const
82{
83 return false;
84}
85
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080086bool
Davide Pesavento0ff10db2014-02-28 03:12:27 +010087Face::isUp() const
88{
89 return true;
90}
91
92bool
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080093Face::decodeAndDispatchInput(const Block& element)
Junxiao Shi32bfeb32014-01-25 18:22:02 -070094{
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080095 /// \todo Ensure lazy field decoding process
Alexander Afanasyev355c0662014-03-20 18:08:17 -070096
Alexander Afanasyevbd220a02014-02-20 00:29:56 -080097 if (element.type() == tlv::Interest)
98 {
99 shared_ptr<Interest> i = make_shared<Interest>();
100 i->wireDecode(element);
101 this->onReceiveInterest(*i);
102 }
103 else if (element.type() == tlv::Data)
104 {
105 shared_ptr<Data> d = make_shared<Data>();
106 d->wireDecode(element);
107 this->onReceiveData(*d);
108 }
109 else
110 return false;
Alexander Afanasyev355c0662014-03-20 18:08:17 -0700111
Alexander Afanasyevbd220a02014-02-20 00:29:56 -0800112 return true;
Junxiao Shi16b8bc92014-02-17 22:24:55 -0700113}
Junxiao Shi32bfeb32014-01-25 18:22:02 -0700114
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800115} //namespace nfd