blob: bd5604b3493c1f90a0db5936a04a8ea0a3545b09 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
3 * 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 * The University of Memphis
10 *
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/>.
24 **/
25
26#ifndef NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP
27#define NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP
28
29#include "channel.hpp"
30#include "core/global-io.hpp"
31#include "core/scheduler.hpp"
32#include "websocket-face.hpp"
33
34namespace nfd {
35
36/**
37 * \brief Class implementing WebSocket-based channel to create faces
38 *
39 *
40 */
41class WebSocketChannel : public Channel
42{
43public:
44 /**
45 * \brief Exception of WebSocketChannel
46 */
47 class Error : public std::runtime_error
48 {
49 public:
50 explicit
51 Error(const std::string& what)
52 : runtime_error(what)
53 {
54 }
55 };
56
57 /**
58 * \brief Create WebSocket channel for the local endpoint
59 *
60 * To enable creation of faces upon incoming connections,
61 * one needs to explicitly call WebSocketChannel::listen method.
62 * The created socket is bound to the localEndpoint.
63 *
64 * \throw WebSocketChannel::Error if bind on the socket fails
65 */
66 explicit
67 WebSocketChannel(const websocket::Endpoint& localEndpoint);
68
69 virtual
70 ~WebSocketChannel();
71
72 /**
73 * \brief Enable listening on the local endpoint, accept connections,
74 * and create faces when remote host makes a connection
75 * \param onFaceCreated Callback to notify successful creation of the face
76 *
77 * \throws WebSocketChannel::Error if called multiple times
78 */
79 void
80 listen(const FaceCreatedCallback& onFaceCreated);
81
82 /**
83 * \brief Get number of faces in the channel
84 */
85 size_t
86 size() const;
87
Wentao Shang93ef6c92014-06-19 11:59:17 -040088 bool
89 isListening() const;
90
Wentao Shang98733142014-09-17 12:13:57 -070091 void
92 setPingInterval(time::milliseconds interval)
93 {
94 m_pingInterval = interval;
95 }
96
97 void
98 setPongTimeout(time::milliseconds timeout);
99
Wentao Shang53df1632014-04-21 12:01:32 -0700100private:
101 void
Wentao Shang98733142014-09-17 12:13:57 -0700102 sendPing(websocketpp::connection_hdl hdl);
103
104 void
105 handlePong(websocketpp::connection_hdl hdl, std::string msg);
106
107 void
108 handlePongTimeout(websocketpp::connection_hdl hdl, std::string msg);
109
110 void
Wentao Shang53df1632014-04-21 12:01:32 -0700111 handleMessage(websocketpp::connection_hdl hdl, websocket::Server::message_ptr msg);
112
113 void
114 handleOpen(websocketpp::connection_hdl hdl);
115
116 void
117 handleClose(websocketpp::connection_hdl hdl);
118
119private:
120 websocket::Endpoint m_localEndpoint;
121
122 websocket::Server m_server;
123
124 /**
125 * Callbacks for face creation.
126 * New communications are detected using async_receive_from.
127 * Its handler has a fixed signature. No space for the face callback
128 */
129 FaceCreatedCallback m_onFaceCreatedCallback;
130
131 typedef std::map< websocketpp::connection_hdl, shared_ptr<WebSocketFace> > ChannelFaceMap;
132 ChannelFaceMap m_channelFaces;
133
134 /**
135 * \brief If true, it means the function listen has already been called
136 */
137 bool m_isListening;
138
Wentao Shang98733142014-09-17 12:13:57 -0700139 time::milliseconds m_pingInterval;
Wentao Shang53df1632014-04-21 12:01:32 -0700140};
141
Wentao Shang93ef6c92014-06-19 11:59:17 -0400142inline bool
143WebSocketChannel::isListening() const
144{
145 return m_isListening;
146}
147
Wentao Shang53df1632014-04-21 12:01:32 -0700148} // namespace nfd
149
150#endif // NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP