blob: 855dd9994393c64a41c351295d8e1c109ffa3e22 [file] [log] [blame]
Wentao Shang53df1632014-04-21 12:01:32 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shi1e46be32015-01-08 20:18: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 Shia1937bf2014-11-06 11:43:40 -070024 */
Wentao Shang53df1632014-04-21 12:01:32 -070025
26#include "websocket-channel.hpp"
Davide Pesavento6ad890a2015-03-09 03:43:17 +010027#include "core/global-io.hpp"
28#include "core/scheduler.hpp"
Wentao Shang53df1632014-04-21 12:01:32 -070029
Wentao Shang98733142014-09-17 12:13:57 -070030#include <boost/date_time/posix_time/posix_time.hpp>
31
Wentao Shang53df1632014-04-21 12:01:32 -070032namespace nfd {
33
34NFD_LOG_INIT("WebSocketChannel");
35
Wentao Shang53df1632014-04-21 12:01:32 -070036WebSocketChannel::WebSocketChannel(const websocket::Endpoint& localEndpoint)
37 : m_localEndpoint(localEndpoint)
38 , m_isListening(false)
Wentao Shang98733142014-09-17 12:13:57 -070039 , m_pingInterval(10000)
Wentao Shang53df1632014-04-21 12:01:32 -070040{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010041 setUri(FaceUri(m_localEndpoint, "ws"));
42
Wentao Shang53df1632014-04-21 12:01:32 -070043 // Setup WebSocket server
44 m_server.clear_access_channels(websocketpp::log::alevel::all);
45 m_server.clear_error_channels(websocketpp::log::alevel::all);
46
47 m_server.set_message_handler(bind(&WebSocketChannel::handleMessage, this, _1, _2));
48 m_server.set_open_handler(bind(&WebSocketChannel::handleOpen, this, _1));
49 m_server.set_close_handler(bind(&WebSocketChannel::handleClose, this, _1));
50 m_server.init_asio(&getGlobalIoService());
Davide Pesavento6ad890a2015-03-09 03:43:17 +010051
52 // Detect disconnections using ping-pong messages
53 m_server.set_pong_handler(bind(&WebSocketChannel::handlePong, this, _1, _2));
54 m_server.set_pong_timeout_handler(bind(&WebSocketChannel::handlePongTimeout, this, _1, _2));
55
Wentao Shang93ef6c92014-06-19 11:59:17 -040056 // Always set SO_REUSEADDR flag
57 m_server.set_reuse_addr(true);
Wentao Shang53df1632014-04-21 12:01:32 -070058}
59
Davide Pesavento6ad890a2015-03-09 03:43:17 +010060void
61WebSocketChannel::setPingInterval(time::milliseconds interval)
Wentao Shang53df1632014-04-21 12:01:32 -070062{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010063 m_pingInterval = interval;
Wentao Shang53df1632014-04-21 12:01:32 -070064}
65
66void
Wentao Shang98733142014-09-17 12:13:57 -070067WebSocketChannel::setPongTimeout(time::milliseconds timeout)
68{
69 m_server.set_pong_timeout(static_cast<long>(timeout.count()));
70}
71
72void
73WebSocketChannel::handlePongTimeout(websocketpp::connection_hdl hdl, std::string msg)
74{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010075 auto it = m_channelFaces.find(hdl);
76 if (it != m_channelFaces.end()) {
77 NFD_LOG_TRACE(__func__ << ": " << it->second->getRemoteUri());
78 it->second->close();
79 m_channelFaces.erase(it);
80 }
Wentao Shang98733142014-09-17 12:13:57 -070081}
82
83void
84WebSocketChannel::handlePong(websocketpp::connection_hdl hdl, std::string msg)
85{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010086 auto it = m_channelFaces.find(hdl);
87 if (it != m_channelFaces.end()) {
88 NFD_LOG_TRACE("Pong from " << it->second->getRemoteUri());
89 }
Wentao Shang98733142014-09-17 12:13:57 -070090}
91
92void
Wentao Shang53df1632014-04-21 12:01:32 -070093WebSocketChannel::handleMessage(websocketpp::connection_hdl hdl,
94 websocket::Server::message_ptr msg)
95{
Davide Pesavento6ad890a2015-03-09 03:43:17 +010096 auto it = m_channelFaces.find(hdl);
97 if (it != m_channelFaces.end()) {
98 it->second->handleReceive(msg->get_payload());
99 }
Wentao Shang53df1632014-04-21 12:01:32 -0700100}
101
102void
103WebSocketChannel::handleOpen(websocketpp::connection_hdl hdl)
104{
105 std::string remote;
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100106 try {
107 remote = "wsclient://" + m_server.get_con_from_hdl(hdl)->get_remote_endpoint();
108 }
109 catch (const websocketpp::lib::error_code& e) {
110 NFD_LOG_WARN("Cannot get remote URI");
111 websocketpp::lib::error_code error;
112 m_server.close(hdl, websocketpp::close::status::normal, "closed by channel", error);
113 return;
114 }
115
116 auto face = make_shared<WebSocketFace>(FaceUri(remote), this->getUri(),
117 hdl, ref(m_server));
Wentao Shang53df1632014-04-21 12:01:32 -0700118 m_onFaceCreatedCallback(face);
119 m_channelFaces[hdl] = face;
Wentao Shang98733142014-09-17 12:13:57 -0700120
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100121 // Schedule ping message
Junxiao Shi1e46be32015-01-08 20:18:05 -0700122 scheduler::EventId pingEvent = scheduler::schedule(m_pingInterval,
123 bind(&WebSocketChannel::sendPing, this, hdl));
Wentao Shang98733142014-09-17 12:13:57 -0700124 face->setPingEventId(pingEvent);
125}
126
127void
128WebSocketChannel::sendPing(websocketpp::connection_hdl hdl)
129{
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100130 auto it = m_channelFaces.find(hdl);
131 if (it != m_channelFaces.end()) {
132 NFD_LOG_TRACE("Sending ping to " << it->second->getRemoteUri());
Wentao Shang98733142014-09-17 12:13:57 -0700133
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100134 try {
135 m_server.ping(hdl, "NFD-WebSocket");
Wentao Shang98733142014-09-17 12:13:57 -0700136 }
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100137 catch (const websocketpp::lib::error_code& e) {
138 NFD_LOG_WARN("Failed to ping " << it->second->getRemoteUri());
139 it->second->close();
140 m_channelFaces.erase(it);
141 return;
142 }
143
144 // Schedule next ping message
145 scheduler::EventId pingEvent = scheduler::schedule(m_pingInterval,
146 bind(&WebSocketChannel::sendPing, this, hdl));
147 it->second->setPingEventId(pingEvent);
148 }
Wentao Shang53df1632014-04-21 12:01:32 -0700149}
150
151void
152WebSocketChannel::handleClose(websocketpp::connection_hdl hdl)
153{
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100154 auto it = m_channelFaces.find(hdl);
155 if (it != m_channelFaces.end()) {
156 NFD_LOG_TRACE(__func__ << ": " << it->second->getRemoteUri());
157 it->second->close();
158 m_channelFaces.erase(it);
159 }
Wentao Shang53df1632014-04-21 12:01:32 -0700160}
161
Wentao Shang53df1632014-04-21 12:01:32 -0700162void
163WebSocketChannel::listen(const FaceCreatedCallback& onFaceCreated)
164{
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100165 if (isListening()) {
166 NFD_LOG_WARN("[" << m_localEndpoint << "] Already listening");
167 return;
168 }
Wentao Shang53df1632014-04-21 12:01:32 -0700169 m_isListening = true;
170
171 m_onFaceCreatedCallback = onFaceCreated;
Davide Pesavento6ad890a2015-03-09 03:43:17 +0100172 m_server.listen(m_localEndpoint);
Wentao Shang53df1632014-04-21 12:01:32 -0700173 m_server.start_accept();
174}
175
176size_t
177WebSocketChannel::size() const
178{
179 return m_channelFaces.size();
180}
181
182} // namespace nfd