blob: aeae9cc5d51049c314e8a0c6f2330f8fd78402f0 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento264af772021-02-09 21:48:24 -05002/*
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -05003 * Copyright (c) 2014-2024, Regents of the University of California,
Junxiao Shicde37ad2015-12-24 01:02:05 -07004 * 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.
Wentao Shang53df1632014-04-21 12:01:32 -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 Shicde37ad2015-12-24 01:02:05 -070024 */
Wentao Shang53df1632014-04-21 12:01:32 -070025
26#ifndef NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP
27#define NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP
28
29#include "channel.hpp"
Yukai Tu2d6d5632015-10-26 11:06:02 -070030#include "websocketpp.hpp"
Wentao Shang53df1632014-04-21 12:01:32 -070031
Davide Pesavento2c9d2ca2024-01-27 16:36:51 -050032#include <map>
33
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034namespace nfd::websocket {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040035using Endpoint = boost::asio::ip::tcp::endpoint;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040036} // namespace nfd::websocket
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020037
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040038namespace nfd::face {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040039
Wentao Shang53df1632014-04-21 12:01:32 -070040/**
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040041 * \brief Class implementing a WebSocket-based channel to create faces.
Wentao Shang53df1632014-04-21 12:01:32 -070042 */
Davide Pesavento3db98072021-03-09 23:03:27 -050043class WebSocketChannel final : public Channel
Wentao Shang53df1632014-04-21 12:01:32 -070044{
45public:
46 /**
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040047 * \brief Create a WebSocket channel for the given \p localEndpoint.
Wentao Shang53df1632014-04-21 12:01:32 -070048 *
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040049 * To enable the creation of faces upon incoming connections, one needs to
50 * explicitly call listen(). The created channel is bound to \p localEndpoint.
Wentao Shang53df1632014-04-21 12:01:32 -070051 */
52 explicit
53 WebSocketChannel(const websocket::Endpoint& localEndpoint);
54
Davide Pesaventoc19408d2017-04-08 00:42:55 -040055 bool
Davide Pesavento3db98072021-03-09 23:03:27 -050056 isListening() const final
Davide Pesaventoc19408d2017-04-08 00:42:55 -040057 {
58 return m_server.is_listening();
59 }
60
61 size_t
Davide Pesavento3db98072021-03-09 23:03:27 -050062 size() const final
Davide Pesaventoc19408d2017-04-08 00:42:55 -040063 {
64 return m_channelFaces.size();
65 }
66
Wentao Shang53df1632014-04-21 12:01:32 -070067 /**
68 * \brief Enable listening on the local endpoint, accept connections,
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040069 * and create faces when remote host makes a connection.
Wentao Shang53df1632014-04-21 12:01:32 -070070 *
Yukai Tu2d6d5632015-10-26 11:06:02 -070071 * \param onFaceCreated Callback to notify successful creation of a face
Wentao Shang53df1632014-04-21 12:01:32 -070072 */
73 void
74 listen(const FaceCreatedCallback& onFaceCreated);
75
Davide Pesavento264af772021-02-09 21:48:24 -050076NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040077 /**
78 * \pre listen() has not been invoked.
Yukai Tu2d6d5632015-10-26 11:06:02 -070079 */
Wentao Shang98733142014-09-17 12:13:57 -070080 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +010081 setPingInterval(time::milliseconds interval);
Wentao Shang98733142014-09-17 12:13:57 -070082
Davide Pesavento9bf64cc2023-10-05 02:12:02 -040083 /**
84 * \pre listen() has not been invoked.
Yukai Tu2d6d5632015-10-26 11:06:02 -070085 */
Wentao Shang98733142014-09-17 12:13:57 -070086 void
87 setPongTimeout(time::milliseconds timeout);
88
Yukai Tu2d6d5632015-10-26 11:06:02 -070089 void
90 handlePong(websocketpp::connection_hdl hdl);
91
92 void
93 handlePongTimeout(websocketpp::connection_hdl hdl);
94
Wentao Shang53df1632014-04-21 12:01:32 -070095private:
96 void
Yukai Tu2d6d5632015-10-26 11:06:02 -070097 handleMessage(websocketpp::connection_hdl hdl,
98 websocket::Server::message_ptr msg);
Wentao Shang53df1632014-04-21 12:01:32 -070099
100 void
101 handleOpen(websocketpp::connection_hdl hdl);
102
103 void
104 handleClose(websocketpp::connection_hdl hdl);
105
106private:
Davide Pesavento77911cc2017-04-08 22:12:30 -0400107 const websocket::Endpoint m_localEndpoint;
Wentao Shang53df1632014-04-21 12:01:32 -0700108 websocket::Server m_server;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700109 std::map<websocketpp::connection_hdl, shared_ptr<Face>,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100110 std::owner_less<websocketpp::connection_hdl>> m_channelFaces;
Wentao Shang53df1632014-04-21 12:01:32 -0700111 FaceCreatedCallback m_onFaceCreatedCallback;
Wentao Shang98733142014-09-17 12:13:57 -0700112 time::milliseconds m_pingInterval;
Wentao Shang53df1632014-04-21 12:01:32 -0700113};
114
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400115} // namespace nfd::face
Wentao Shang53df1632014-04-21 12:01:32 -0700116
117#endif // NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP