blob: ae3c5831ebaac87aa623fad95461f12cbfdb128c [file] [log] [blame]
Junxiao Shi61e3cc52014-03-03 20:40:28 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi38b24c72017-01-05 02:59:31 +00003 * Copyright (c) 2014-2017, Regents of the University of California,
Davide Pesavento47ab0292015-11-02 18:45:39 +01004 * 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/>.
Davide Pesavento47ab0292015-11-02 18:45:39 +010024 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070025
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070026#ifndef NFD_DAEMON_FACE_CHANNEL_HPP
27#define NFD_DAEMON_FACE_CHANNEL_HPP
Junxiao Shi61e3cc52014-03-03 20:40:28 -070028
Junxiao Shicde37ad2015-12-24 01:02:05 -070029#include "face.hpp"
Junxiao Shi61e3cc52014-03-03 20:40:28 -070030
31namespace nfd {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040032namespace face {
Junxiao Shi61e3cc52014-03-03 20:40:28 -070033
Davide Pesaventoc19408d2017-04-08 00:42:55 -040034class Face;
35
36/** \brief Prototype for the callback that is invoked when a face is created
37 * (in response to an incoming connection or after a connection is established)
Davide Pesavento47ab0292015-11-02 18:45:39 +010038 */
39typedef function<void(const shared_ptr<Face>& newFace)> FaceCreatedCallback;
40
Davide Pesaventoc19408d2017-04-08 00:42:55 -040041/** \brief Prototype for the callback that is invoked when a face fails to be created
Davide Pesavento47ab0292015-11-02 18:45:39 +010042 */
Eric Newberry42602412016-08-27 09:33:18 -070043typedef function<void(uint32_t status, const std::string& reason)> FaceCreationFailedCallback;
Davide Pesavento47ab0292015-11-02 18:45:39 +010044
Junxiao Shi38b24c72017-01-05 02:59:31 +000045/** \brief represent a channel that communicates on a local endpoint
46 * \sa FaceSystem
47 *
48 * A channel can listen on a local endpoint and initiate outgoing connection from a local endpoint.
49 * A channel creates Face objects and retains shared ownership of them.
50 */
Junxiao Shi61e3cc52014-03-03 20:40:28 -070051class Channel : noncopyable
52{
53public:
Junxiao Shi61e3cc52014-03-03 20:40:28 -070054 virtual
55 ~Channel();
56
57 const FaceUri&
Davide Pesaventoc19408d2017-04-08 00:42:55 -040058 getUri() const
59 {
60 return m_uri;
61 }
62
63 /** \brief Returns whether the channel is listening
64 */
65 virtual bool
66 isListening() const = 0;
67
68 /** \brief Returns the number of faces in the channel
69 */
70 virtual size_t
71 size() const = 0;
Junxiao Shi61e3cc52014-03-03 20:40:28 -070072
73protected:
74 void
75 setUri(const FaceUri& uri);
76
77private:
78 FaceUri m_uri;
79};
80
Junxiao Shicde37ad2015-12-24 01:02:05 -070081/** \brief invokes a callback when the face is closed
82 * \param face the face
83 * \param f the callback to be invoked when the face enters CLOSED state
84 *
85 * This function connects a callback to the afterStateChange signal on the \p face,
86 * and invokes \p f when the state becomes CLOSED.
87 */
88void
89connectFaceClosedSignal(Face& face, const std::function<void()>& f);
90
Davide Pesavento8fd15e62017-04-06 19:58:54 -040091} // namespace face
Junxiao Shi61e3cc52014-03-03 20:40:28 -070092} // namespace nfd
93
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070094#endif // NFD_DAEMON_FACE_CHANNEL_HPP