blob: d40bc70d0f77d8a03d2fc432b54d3800a60c5285 [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 Pesaventob7bfcb92022-05-22 23:55:23 -04003 * Copyright (c) 2014-2022, 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 Pesaventoe422f9e2022-06-03 01:30:23 -040032namespace nfd::websocket {
Davide Pesaventob7bfcb92022-05-22 23:55:23 -040033using Endpoint = boost::asio::ip::tcp::endpoint;
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040034} // namespace nfd::websocket
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020035
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040036namespace nfd::face {
Davide Pesavento8fd15e62017-04-06 19:58:54 -040037
Wentao Shang53df1632014-04-21 12:01:32 -070038/**
39 * \brief Class implementing WebSocket-based channel to create faces
Wentao Shang53df1632014-04-21 12:01:32 -070040 */
Davide Pesavento3db98072021-03-09 23:03:27 -050041class WebSocketChannel final : public Channel
Wentao Shang53df1632014-04-21 12:01:32 -070042{
43public:
44 /**
Wentao Shang53df1632014-04-21 12:01:32 -070045 * \brief Create WebSocket channel for the local endpoint
46 *
47 * To enable creation of faces upon incoming connections,
48 * one needs to explicitly call WebSocketChannel::listen method.
Yukai Tu2d6d5632015-10-26 11:06:02 -070049 * The created channel is bound to the localEndpoint.
Wentao Shang53df1632014-04-21 12:01:32 -070050 */
51 explicit
52 WebSocketChannel(const websocket::Endpoint& localEndpoint);
53
Davide Pesaventoc19408d2017-04-08 00:42:55 -040054 bool
Davide Pesavento3db98072021-03-09 23:03:27 -050055 isListening() const final
Davide Pesaventoc19408d2017-04-08 00:42:55 -040056 {
57 return m_server.is_listening();
58 }
59
60 size_t
Davide Pesavento3db98072021-03-09 23:03:27 -050061 size() const final
Davide Pesaventoc19408d2017-04-08 00:42:55 -040062 {
63 return m_channelFaces.size();
64 }
65
Wentao Shang53df1632014-04-21 12:01:32 -070066 /**
67 * \brief Enable listening on the local endpoint, accept connections,
68 * and create faces when remote host makes a connection
Wentao Shang53df1632014-04-21 12:01:32 -070069 *
Yukai Tu2d6d5632015-10-26 11:06:02 -070070 * \param onFaceCreated Callback to notify successful creation of a face
Wentao Shang53df1632014-04-21 12:01:32 -070071 */
72 void
73 listen(const FaceCreatedCallback& onFaceCreated);
74
Davide Pesavento264af772021-02-09 21:48:24 -050075NFD_PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Yukai Tu2d6d5632015-10-26 11:06:02 -070076 /** \pre listen hasn't been invoked
77 */
Wentao Shang98733142014-09-17 12:13:57 -070078 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +010079 setPingInterval(time::milliseconds interval);
Wentao Shang98733142014-09-17 12:13:57 -070080
Yukai Tu2d6d5632015-10-26 11:06:02 -070081 /** \pre listen hasn't been invoked
82 */
Wentao Shang98733142014-09-17 12:13:57 -070083 void
84 setPongTimeout(time::milliseconds timeout);
85
Yukai Tu2d6d5632015-10-26 11:06:02 -070086 void
87 handlePong(websocketpp::connection_hdl hdl);
88
89 void
90 handlePongTimeout(websocketpp::connection_hdl hdl);
91
Wentao Shang53df1632014-04-21 12:01:32 -070092private:
93 void
Yukai Tu2d6d5632015-10-26 11:06:02 -070094 handleMessage(websocketpp::connection_hdl hdl,
95 websocket::Server::message_ptr msg);
Wentao Shang53df1632014-04-21 12:01:32 -070096
97 void
98 handleOpen(websocketpp::connection_hdl hdl);
99
100 void
101 handleClose(websocketpp::connection_hdl hdl);
102
103private:
Davide Pesavento77911cc2017-04-08 22:12:30 -0400104 const websocket::Endpoint m_localEndpoint;
Wentao Shang53df1632014-04-21 12:01:32 -0700105 websocket::Server m_server;
Junxiao Shicde37ad2015-12-24 01:02:05 -0700106 std::map<websocketpp::connection_hdl, shared_ptr<Face>,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100107 std::owner_less<websocketpp::connection_hdl>> m_channelFaces;
Wentao Shang53df1632014-04-21 12:01:32 -0700108 FaceCreatedCallback m_onFaceCreatedCallback;
Wentao Shang98733142014-09-17 12:13:57 -0700109 time::milliseconds m_pingInterval;
Wentao Shang53df1632014-04-21 12:01:32 -0700110};
111
Davide Pesaventoe422f9e2022-06-03 01:30:23 -0400112} // namespace nfd::face
Wentao Shang53df1632014-04-21 12:01:32 -0700113
114#endif // NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP