Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | 1e46be3 | 2015-01-08 20:18:05 -0700 | [diff] [blame] | 3 | * 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 Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 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/>. |
Junxiao Shi | a1937bf | 2014-11-06 11:43:40 -0700 | [diff] [blame] | 24 | */ |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 25 | |
| 26 | #include "websocket-channel.hpp" |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 27 | #include "core/global-io.hpp" |
| 28 | #include "core/scheduler.hpp" |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 29 | |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 30 | #include <boost/date_time/posix_time/posix_time.hpp> |
| 31 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 32 | namespace nfd { |
| 33 | |
| 34 | NFD_LOG_INIT("WebSocketChannel"); |
| 35 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 36 | WebSocketChannel::WebSocketChannel(const websocket::Endpoint& localEndpoint) |
| 37 | : m_localEndpoint(localEndpoint) |
| 38 | , m_isListening(false) |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 39 | , m_pingInterval(10000) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 40 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 41 | setUri(FaceUri(m_localEndpoint, "ws")); |
| 42 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 43 | // 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 Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 51 | |
| 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 Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame] | 56 | // Always set SO_REUSEADDR flag |
| 57 | m_server.set_reuse_addr(true); |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 58 | } |
| 59 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 60 | void |
| 61 | WebSocketChannel::setPingInterval(time::milliseconds interval) |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 62 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 63 | m_pingInterval = interval; |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | void |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 67 | WebSocketChannel::setPongTimeout(time::milliseconds timeout) |
| 68 | { |
| 69 | m_server.set_pong_timeout(static_cast<long>(timeout.count())); |
| 70 | } |
| 71 | |
| 72 | void |
| 73 | WebSocketChannel::handlePongTimeout(websocketpp::connection_hdl hdl, std::string msg) |
| 74 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 75 | 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 Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 81 | } |
| 82 | |
| 83 | void |
| 84 | WebSocketChannel::handlePong(websocketpp::connection_hdl hdl, std::string msg) |
| 85 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 86 | auto it = m_channelFaces.find(hdl); |
| 87 | if (it != m_channelFaces.end()) { |
| 88 | NFD_LOG_TRACE("Pong from " << it->second->getRemoteUri()); |
| 89 | } |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 90 | } |
| 91 | |
| 92 | void |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 93 | WebSocketChannel::handleMessage(websocketpp::connection_hdl hdl, |
| 94 | websocket::Server::message_ptr msg) |
| 95 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 96 | auto it = m_channelFaces.find(hdl); |
| 97 | if (it != m_channelFaces.end()) { |
| 98 | it->second->handleReceive(msg->get_payload()); |
| 99 | } |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void |
| 103 | WebSocketChannel::handleOpen(websocketpp::connection_hdl hdl) |
| 104 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 105 | try { |
Wentao Shang | d397d77 | 2015-04-29 12:09:31 -0700 | [diff] [blame] | 106 | std::string remote = "wsclient://" + m_server.get_con_from_hdl(hdl)->get_remote_endpoint(); |
| 107 | auto face = make_shared<WebSocketFace>(FaceUri(remote), this->getUri(), |
| 108 | hdl, ref(m_server)); |
| 109 | m_onFaceCreatedCallback(face); |
| 110 | m_channelFaces[hdl] = face; |
| 111 | // Schedule ping message |
| 112 | scheduler::EventId pingEvent = scheduler::schedule(m_pingInterval, |
| 113 | bind(&WebSocketChannel::sendPing, |
| 114 | this, hdl)); |
| 115 | face->setPingEventId(pingEvent); |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 116 | } |
Wentao Shang | d397d77 | 2015-04-29 12:09:31 -0700 | [diff] [blame] | 117 | catch (const FaceUri::Error& e) { |
| 118 | NFD_LOG_WARN(e.what()); |
| 119 | websocketpp::lib::error_code ec; |
| 120 | m_server.close(hdl, websocketpp::close::status::normal, "closed by channel", ec); |
| 121 | // ignore error on close |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 122 | } |
Wentao Shang | d397d77 | 2015-04-29 12:09:31 -0700 | [diff] [blame] | 123 | catch (const websocketpp::exception& e) { |
| 124 | NFD_LOG_WARN("Cannot get remote connection: " << e.what()); |
| 125 | websocketpp::lib::error_code ec; |
| 126 | m_server.close(hdl, websocketpp::close::status::normal, "closed by channel", ec); |
| 127 | // ignore error on close |
| 128 | } |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 129 | } |
| 130 | |
| 131 | void |
| 132 | WebSocketChannel::sendPing(websocketpp::connection_hdl hdl) |
| 133 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 134 | auto it = m_channelFaces.find(hdl); |
| 135 | if (it != m_channelFaces.end()) { |
| 136 | NFD_LOG_TRACE("Sending ping to " << it->second->getRemoteUri()); |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 137 | |
Wentao Shang | d397d77 | 2015-04-29 12:09:31 -0700 | [diff] [blame] | 138 | websocketpp::lib::error_code ec; |
| 139 | m_server.ping(hdl, "NFD-WebSocket", ec); |
| 140 | if (ec) |
| 141 | { |
| 142 | NFD_LOG_WARN("Failed to ping " << it->second->getRemoteUri() << ": " << ec.message()); |
| 143 | it->second->close(); |
| 144 | m_channelFaces.erase(it); |
| 145 | return; |
| 146 | } |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 147 | |
| 148 | // Schedule next ping message |
| 149 | scheduler::EventId pingEvent = scheduler::schedule(m_pingInterval, |
Wentao Shang | d397d77 | 2015-04-29 12:09:31 -0700 | [diff] [blame] | 150 | bind(&WebSocketChannel::sendPing, |
| 151 | this, hdl)); |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 152 | it->second->setPingEventId(pingEvent); |
| 153 | } |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | void |
| 157 | WebSocketChannel::handleClose(websocketpp::connection_hdl hdl) |
| 158 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 159 | auto it = m_channelFaces.find(hdl); |
| 160 | if (it != m_channelFaces.end()) { |
| 161 | NFD_LOG_TRACE(__func__ << ": " << it->second->getRemoteUri()); |
| 162 | it->second->close(); |
| 163 | m_channelFaces.erase(it); |
| 164 | } |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 167 | void |
| 168 | WebSocketChannel::listen(const FaceCreatedCallback& onFaceCreated) |
| 169 | { |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 170 | if (isListening()) { |
| 171 | NFD_LOG_WARN("[" << m_localEndpoint << "] Already listening"); |
| 172 | return; |
| 173 | } |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 174 | m_isListening = true; |
| 175 | |
| 176 | m_onFaceCreatedCallback = onFaceCreated; |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 177 | m_server.listen(m_localEndpoint); |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 178 | m_server.start_accept(); |
| 179 | } |
| 180 | |
| 181 | size_t |
| 182 | WebSocketChannel::size() const |
| 183 | { |
| 184 | return m_channelFaces.size(); |
| 185 | } |
| 186 | |
| 187 | } // namespace nfd |