blob: 1d567314a158acab1d024e0d7bc752e60526a802 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shicde37ad2015-12-24 01:02:05 -07003 * 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.
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
32namespace nfd {
33
Davide Pesavento1d7e7af2015-10-10 23:54:08 +020034namespace websocket {
35typedef boost::asio::ip::tcp::endpoint Endpoint;
36} // namespace websocket
37
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 */
41class WebSocketChannel : public Channel
42{
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
Wentao Shang53df1632014-04-21 12:01:32 -070054 /**
55 * \brief Enable listening on the local endpoint, accept connections,
56 * and create faces when remote host makes a connection
Wentao Shang53df1632014-04-21 12:01:32 -070057 *
Yukai Tu2d6d5632015-10-26 11:06:02 -070058 * \param onFaceCreated Callback to notify successful creation of a face
Wentao Shang53df1632014-04-21 12:01:32 -070059 */
60 void
61 listen(const FaceCreatedCallback& onFaceCreated);
62
63 /**
64 * \brief Get number of faces in the channel
65 */
66 size_t
67 size() const;
68
Wentao Shang93ef6c92014-06-19 11:59:17 -040069 bool
70 isListening() const;
71
Davide Pesavento6ad890a2015-03-09 03:43:17 +010072PUBLIC_WITH_TESTS_ELSE_PRIVATE:
Yukai Tu2d6d5632015-10-26 11:06:02 -070073 /** \pre listen hasn't been invoked
74 */
Wentao Shang98733142014-09-17 12:13:57 -070075 void
Davide Pesavento6ad890a2015-03-09 03:43:17 +010076 setPingInterval(time::milliseconds interval);
Wentao Shang98733142014-09-17 12:13:57 -070077
Yukai Tu2d6d5632015-10-26 11:06:02 -070078 /** \pre listen hasn't been invoked
79 */
Wentao Shang98733142014-09-17 12:13:57 -070080 void
81 setPongTimeout(time::milliseconds timeout);
82
Yukai Tu2d6d5632015-10-26 11:06:02 -070083 void
84 handlePong(websocketpp::connection_hdl hdl);
85
86 void
87 handlePongTimeout(websocketpp::connection_hdl hdl);
88
Wentao Shang53df1632014-04-21 12:01:32 -070089private:
90 void
Yukai Tu2d6d5632015-10-26 11:06:02 -070091 handleMessage(websocketpp::connection_hdl hdl,
92 websocket::Server::message_ptr msg);
Wentao Shang53df1632014-04-21 12:01:32 -070093
94 void
95 handleOpen(websocketpp::connection_hdl hdl);
96
97 void
98 handleClose(websocketpp::connection_hdl hdl);
99
100private:
101 websocket::Endpoint m_localEndpoint;
Wentao Shang53df1632014-04-21 12:01:32 -0700102 websocket::Server m_server;
103
Junxiao Shicde37ad2015-12-24 01:02:05 -0700104 std::map<websocketpp::connection_hdl, shared_ptr<Face>,
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100105 std::owner_less<websocketpp::connection_hdl>> m_channelFaces;
106
Wentao Shang53df1632014-04-21 12:01:32 -0700107 FaceCreatedCallback m_onFaceCreatedCallback;
Wentao Shang98733142014-09-17 12:13:57 -0700108 time::milliseconds m_pingInterval;
Wentao Shang53df1632014-04-21 12:01:32 -0700109};
110
Wentao Shang93ef6c92014-06-19 11:59:17 -0400111inline bool
112WebSocketChannel::isListening() const
113{
Yukai Tu2d6d5632015-10-26 11:06:02 -0700114 return m_server.is_listening();
Wentao Shang93ef6c92014-06-19 11:59:17 -0400115}
116
Wentao Shang53df1632014-04-21 12:01:32 -0700117} // namespace nfd
118
119#endif // NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP