Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 1 | /* -*- 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" |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 30 | #include "lp-face-wrapper.hpp" |
| 31 | #include "websocketpp.hpp" |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 32 | |
| 33 | namespace nfd { |
| 34 | |
Davide Pesavento | 1d7e7af | 2015-10-10 23:54:08 +0200 | [diff] [blame] | 35 | namespace websocket { |
| 36 | typedef boost::asio::ip::tcp::endpoint Endpoint; |
| 37 | } // namespace websocket |
| 38 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 39 | /** |
| 40 | * \brief Class implementing WebSocket-based channel to create faces |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 41 | */ |
| 42 | class WebSocketChannel : public Channel |
| 43 | { |
| 44 | public: |
| 45 | /** |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 46 | * \brief Create WebSocket channel for the local endpoint |
| 47 | * |
| 48 | * To enable creation of faces upon incoming connections, |
| 49 | * one needs to explicitly call WebSocketChannel::listen method. |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 50 | * The created channel is bound to the localEndpoint. |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 51 | */ |
| 52 | explicit |
| 53 | WebSocketChannel(const websocket::Endpoint& localEndpoint); |
| 54 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 55 | /** |
| 56 | * \brief Enable listening on the local endpoint, accept connections, |
| 57 | * and create faces when remote host makes a connection |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 58 | * |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 59 | * \param onFaceCreated Callback to notify successful creation of a face |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 60 | */ |
| 61 | void |
| 62 | listen(const FaceCreatedCallback& onFaceCreated); |
| 63 | |
| 64 | /** |
| 65 | * \brief Get number of faces in the channel |
| 66 | */ |
| 67 | size_t |
| 68 | size() const; |
| 69 | |
Wentao Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame] | 70 | bool |
| 71 | isListening() const; |
| 72 | |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 73 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 74 | /** \pre listen hasn't been invoked |
| 75 | */ |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 76 | void |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 77 | setPingInterval(time::milliseconds interval); |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 78 | |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 79 | /** \pre listen hasn't been invoked |
| 80 | */ |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 81 | void |
| 82 | setPongTimeout(time::milliseconds timeout); |
| 83 | |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 84 | void |
| 85 | handlePong(websocketpp::connection_hdl hdl); |
| 86 | |
| 87 | void |
| 88 | handlePongTimeout(websocketpp::connection_hdl hdl); |
| 89 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 90 | private: |
| 91 | void |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 92 | handleMessage(websocketpp::connection_hdl hdl, |
| 93 | websocket::Server::message_ptr msg); |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 94 | |
| 95 | void |
| 96 | handleOpen(websocketpp::connection_hdl hdl); |
| 97 | |
| 98 | void |
| 99 | handleClose(websocketpp::connection_hdl hdl); |
| 100 | |
| 101 | private: |
| 102 | websocket::Endpoint m_localEndpoint; |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 103 | websocket::Server m_server; |
| 104 | |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 105 | std::map<websocketpp::connection_hdl, shared_ptr<face::LpFaceWrapper>, |
Davide Pesavento | 6ad890a | 2015-03-09 03:43:17 +0100 | [diff] [blame] | 106 | std::owner_less<websocketpp::connection_hdl>> m_channelFaces; |
| 107 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 108 | FaceCreatedCallback m_onFaceCreatedCallback; |
Wentao Shang | 9873314 | 2014-09-17 12:13:57 -0700 | [diff] [blame] | 109 | time::milliseconds m_pingInterval; |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 110 | }; |
| 111 | |
Wentao Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame] | 112 | inline bool |
| 113 | WebSocketChannel::isListening() const |
| 114 | { |
Yukai Tu | 2d6d563 | 2015-10-26 11:06:02 -0700 | [diff] [blame] | 115 | return m_server.is_listening(); |
Wentao Shang | 93ef6c9 | 2014-06-19 11:59:17 -0400 | [diff] [blame] | 116 | } |
| 117 | |
Wentao Shang | 53df163 | 2014-04-21 12:01:32 -0700 | [diff] [blame] | 118 | } // namespace nfd |
| 119 | |
| 120 | #endif // NFD_DAEMON_FACE_WEBSOCKET_CHANNEL_HPP |