Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 1 | #pragma once |
Ed Tanous | 3ccb3ad | 2023-01-13 17:40:03 -0800 | [diff] [blame] | 2 | #include "async_resp.hpp" |
Ed Tanous | 04e438c | 2020-10-03 08:06:26 -0700 | [diff] [blame] | 3 | #include "http_request.hpp" |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 4 | |
Ed Tanous | 609145a | 2018-09-05 16:27:36 -0700 | [diff] [blame] | 5 | #include <boost/asio/buffer.hpp> |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 6 | #include <boost/beast/core/multi_buffer.hpp> |
Ed Tanous | 1b0044b | 2018-08-03 14:30:05 -0700 | [diff] [blame] | 7 | #include <boost/beast/websocket.hpp> |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 8 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 9 | #include <array> |
| 10 | #include <functional> |
Ed Tanous | 1b0044b | 2018-08-03 14:30:05 -0700 | [diff] [blame] | 11 | |
| 12 | #ifdef BMCWEB_ENABLE_SSL |
| 13 | #include <boost/beast/websocket/ssl.hpp> |
| 14 | #endif |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 15 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 16 | namespace crow |
| 17 | { |
| 18 | namespace websocket |
| 19 | { |
Iwona Klimaszewska | c0a1c8a | 2019-07-12 18:26:38 +0200 | [diff] [blame] | 20 | |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 21 | enum class MessageType |
| 22 | { |
| 23 | Binary, |
| 24 | Text, |
| 25 | }; |
| 26 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 27 | struct Connection : std::enable_shared_from_this<Connection> |
| 28 | { |
| 29 | public: |
Patrick Williams | 89492a1 | 2023-05-10 07:51:34 -0500 | [diff] [blame] | 30 | explicit Connection(const crow::Request& reqIn) : req(reqIn.req) {} |
Przemyslaw Czarnowski | 250b0eb | 2020-02-24 10:23:56 +0100 | [diff] [blame] | 31 | |
Ed Tanous | ecd6a3a | 2022-01-07 09:18:40 -0800 | [diff] [blame] | 32 | Connection(const Connection&) = delete; |
| 33 | Connection(Connection&&) = delete; |
| 34 | Connection& operator=(const Connection&) = delete; |
| 35 | Connection& operator=(const Connection&&) = delete; |
| 36 | |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 37 | virtual void sendBinary(std::string_view msg) = 0; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 38 | virtual void sendBinary(std::string&& msg) = 0; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 39 | virtual void sendEx(MessageType type, std::string_view msg, |
| 40 | std::function<void()>&& onDone) = 0; |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 41 | virtual void sendText(std::string_view msg) = 0; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 42 | virtual void sendText(std::string&& msg) = 0; |
Ed Tanous | 9eb808c | 2022-01-25 10:19:23 -0800 | [diff] [blame] | 43 | virtual void close(std::string_view msg = "quit") = 0; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 44 | virtual void deferRead() = 0; |
| 45 | virtual void resumeRead() = 0; |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 46 | virtual boost::asio::io_context& getIoContext() = 0; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 47 | virtual ~Connection() = default; |
Ninad Palsule | 052bcbf | 2023-05-30 11:10:58 -0500 | [diff] [blame] | 48 | virtual boost::urls::url_view url() = 0; |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 49 | boost::beast::http::request<boost::beast::http::string_body> req; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 50 | }; |
| 51 | |
Gunnar Mills | 1214b7e | 2020-06-04 10:11:30 -0500 | [diff] [blame] | 52 | template <typename Adaptor> |
| 53 | class ConnectionImpl : public Connection |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 54 | { |
| 55 | public: |
| 56 | ConnectionImpl( |
Ninad Palsule | 052bcbf | 2023-05-30 11:10:58 -0500 | [diff] [blame] | 57 | const crow::Request& reqIn, boost::urls::url_view urlViewIn, |
| 58 | Adaptor adaptorIn, std::function<void(Connection&)> openHandlerIn, |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 59 | std::function<void(Connection&, const std::string&, bool)> |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 60 | messageHandlerIn, |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 61 | std::function<void(crow::websocket::Connection&, std::string_view, |
| 62 | crow::websocket::MessageType type, |
| 63 | std::function<void()>&& whenComplete)> |
| 64 | messageExHandlerIn, |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 65 | std::function<void(Connection&, const std::string&)> closeHandlerIn, |
| 66 | std::function<void(Connection&)> errorHandlerIn) : |
Ed Tanous | e551b5f | 2023-02-27 14:19:07 -0800 | [diff] [blame] | 67 | Connection(reqIn), |
Ninad Palsule | 052bcbf | 2023-05-30 11:10:58 -0500 | [diff] [blame] | 68 | uri(urlViewIn), ws(std::move(adaptorIn)), inBuffer(inString, 131088), |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 69 | openHandler(std::move(openHandlerIn)), |
| 70 | messageHandler(std::move(messageHandlerIn)), |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 71 | messageExHandler(std::move(messageExHandlerIn)), |
Ed Tanous | 8a59281 | 2022-06-04 09:06:59 -0700 | [diff] [blame] | 72 | closeHandler(std::move(closeHandlerIn)), |
| 73 | errorHandler(std::move(errorHandlerIn)), session(reqIn.session) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 74 | { |
dhineskumare | 02bdd96 | 2021-07-08 16:06:49 +0530 | [diff] [blame] | 75 | /* Turn on the timeouts on websocket stream to server role */ |
| 76 | ws.set_option(boost::beast::websocket::stream_base::timeout::suggested( |
| 77 | boost::beast::role_type::server)); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 78 | BMCWEB_LOG_DEBUG << "Creating new connection " << this; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 79 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 80 | |
Ed Tanous | 2c70f80 | 2020-09-28 14:29:23 -0700 | [diff] [blame] | 81 | boost::asio::io_context& getIoContext() override |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 82 | { |
Ed Tanous | 271584a | 2019-07-09 16:24:22 -0700 | [diff] [blame] | 83 | return static_cast<boost::asio::io_context&>( |
| 84 | ws.get_executor().context()); |
Ed Tanous | 911ac31 | 2017-08-15 09:37:42 -0700 | [diff] [blame] | 85 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 86 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 87 | void start() |
| 88 | { |
| 89 | BMCWEB_LOG_DEBUG << "starting connection " << this; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 90 | |
Ed Tanous | fe5b216 | 2019-05-22 14:28:16 -0700 | [diff] [blame] | 91 | using bf = boost::beast::http::field; |
| 92 | |
Jan Sowinski | ee52ae1 | 2020-01-09 16:28:32 +0000 | [diff] [blame] | 93 | std::string_view protocol = req[bf::sec_websocket_protocol]; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 94 | |
Ed Tanous | d4d77e3 | 2020-08-18 00:07:28 -0700 | [diff] [blame] | 95 | ws.set_option(boost::beast::websocket::stream_base::decorator( |
James Feist | f8aa3d2 | 2020-04-08 18:32:33 -0700 | [diff] [blame] | 96 | [session{session}, protocol{std::string(protocol)}]( |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 97 | boost::beast::websocket::response_type& m) { |
James Feist | f8aa3d2 | 2020-04-08 18:32:33 -0700 | [diff] [blame] | 98 | |
| 99 | #ifndef BMCWEB_INSECURE_DISABLE_CSRF_PREVENTION |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 100 | if (session != nullptr) |
| 101 | { |
| 102 | // use protocol for csrf checking |
Gunnar Mills | e628df8 | 2023-04-04 10:15:42 -0500 | [diff] [blame] | 103 | if (!crow::utility::constantTimeStringCompare( |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 104 | protocol, session->csrfToken)) |
James Feist | f8aa3d2 | 2020-04-08 18:32:33 -0700 | [diff] [blame] | 105 | { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 106 | BMCWEB_LOG_ERROR << "Websocket CSRF error"; |
| 107 | m.result(boost::beast::http::status::unauthorized); |
| 108 | return; |
James Feist | f8aa3d2 | 2020-04-08 18:32:33 -0700 | [diff] [blame] | 109 | } |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 110 | } |
James Feist | f8aa3d2 | 2020-04-08 18:32:33 -0700 | [diff] [blame] | 111 | #endif |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 112 | if (!protocol.empty()) |
| 113 | { |
| 114 | m.insert(bf::sec_websocket_protocol, protocol); |
| 115 | } |
Ed Tanous | fe5b216 | 2019-05-22 14:28:16 -0700 | [diff] [blame] | 116 | |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 117 | m.insert(bf::strict_transport_security, "max-age=31536000; " |
| 118 | "includeSubdomains; " |
| 119 | "preload"); |
| 120 | m.insert(bf::pragma, "no-cache"); |
| 121 | m.insert(bf::cache_control, "no-Store,no-Cache"); |
| 122 | m.insert("Content-Security-Policy", "default-src 'self'"); |
| 123 | m.insert("X-XSS-Protection", "1; " |
| 124 | "mode=block"); |
| 125 | m.insert("X-Content-Type-Options", "nosniff"); |
| 126 | })); |
Ed Tanous | d4d77e3 | 2020-08-18 00:07:28 -0700 | [diff] [blame] | 127 | |
| 128 | // Perform the websocket upgrade |
| 129 | ws.async_accept(req, [this, self(shared_from_this())]( |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 130 | const boost::system::error_code& ec) { |
Ed Tanous | d4d77e3 | 2020-08-18 00:07:28 -0700 | [diff] [blame] | 131 | if (ec) |
| 132 | { |
| 133 | BMCWEB_LOG_ERROR << "Error in ws.async_accept " << ec; |
| 134 | return; |
| 135 | } |
| 136 | acceptDone(); |
| 137 | }); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 138 | } |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 139 | |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 140 | void sendBinary(std::string_view msg) override |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 141 | { |
| 142 | ws.binary(true); |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 143 | outBuffer.commit(boost::asio::buffer_copy(outBuffer.prepare(msg.size()), |
| 144 | boost::asio::buffer(msg))); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 145 | doWrite(); |
| 146 | } |
| 147 | |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 148 | void sendEx(MessageType type, std::string_view msg, |
| 149 | std::function<void()>&& onDone) override |
| 150 | { |
| 151 | if (doingWrite) |
| 152 | { |
| 153 | BMCWEB_LOG_CRITICAL |
| 154 | << "Cannot mix sendEx usage with sendBinary or sendText"; |
| 155 | onDone(); |
| 156 | return; |
| 157 | } |
| 158 | ws.binary(type == MessageType::Binary); |
| 159 | |
| 160 | ws.async_write(boost::asio::buffer(msg), |
| 161 | [weak(weak_from_this()), onDone{std::move(onDone)}]( |
| 162 | const boost::beast::error_code& ec, size_t) { |
| 163 | std::shared_ptr<Connection> self = weak.lock(); |
| 164 | |
| 165 | // Call the done handler regardless of whether we |
| 166 | // errored, but before we close things out |
| 167 | onDone(); |
| 168 | |
| 169 | if (ec) |
| 170 | { |
| 171 | BMCWEB_LOG_ERROR << "Error in ws.async_write " << ec; |
| 172 | self->close("write error"); |
| 173 | } |
| 174 | }); |
| 175 | } |
| 176 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 177 | void sendBinary(std::string&& msg) override |
| 178 | { |
| 179 | ws.binary(true); |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 180 | outBuffer.commit(boost::asio::buffer_copy(outBuffer.prepare(msg.size()), |
| 181 | boost::asio::buffer(msg))); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 182 | doWrite(); |
| 183 | } |
| 184 | |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 185 | void sendText(std::string_view msg) override |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 186 | { |
| 187 | ws.text(true); |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 188 | outBuffer.commit(boost::asio::buffer_copy(outBuffer.prepare(msg.size()), |
| 189 | boost::asio::buffer(msg))); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 190 | doWrite(); |
| 191 | } |
| 192 | |
| 193 | void sendText(std::string&& msg) override |
| 194 | { |
| 195 | ws.text(true); |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 196 | outBuffer.commit(boost::asio::buffer_copy(outBuffer.prepare(msg.size()), |
| 197 | boost::asio::buffer(msg))); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 198 | doWrite(); |
| 199 | } |
| 200 | |
Ed Tanous | 26ccae3 | 2023-02-16 10:28:44 -0800 | [diff] [blame] | 201 | void close(std::string_view msg) override |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 202 | { |
| 203 | ws.async_close( |
Wludzik, Jozef | f6a0d63 | 2020-07-16 15:16:02 +0200 | [diff] [blame] | 204 | {boost::beast::websocket::close_code::normal, msg}, |
Ed Tanous | 5e7e2dc | 2023-02-16 10:37:01 -0800 | [diff] [blame] | 205 | [self(shared_from_this())](const boost::system::error_code& ec) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 206 | if (ec == boost::asio::error::operation_aborted) |
| 207 | { |
| 208 | return; |
| 209 | } |
| 210 | if (ec) |
| 211 | { |
| 212 | BMCWEB_LOG_ERROR << "Error closing websocket " << ec; |
| 213 | return; |
| 214 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 215 | }); |
| 216 | } |
| 217 | |
Ninad Palsule | 052bcbf | 2023-05-30 11:10:58 -0500 | [diff] [blame] | 218 | boost::urls::url_view url() override |
| 219 | { |
| 220 | return uri; |
| 221 | } |
| 222 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 223 | void acceptDone() |
| 224 | { |
| 225 | BMCWEB_LOG_DEBUG << "Websocket accepted connection"; |
| 226 | |
| 227 | if (openHandler) |
| 228 | { |
zhanghch05 | 7772638 | 2021-10-21 14:07:57 +0800 | [diff] [blame] | 229 | openHandler(*this); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 230 | } |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 231 | doRead(); |
| 232 | } |
| 233 | |
| 234 | void deferRead() override |
| 235 | { |
| 236 | readingDefered = true; |
| 237 | |
| 238 | // If we're not actively reading, we need to take ownership of |
| 239 | // ourselves for a small portion of time, do that, and clear when we |
| 240 | // resume. |
| 241 | selfOwned = shared_from_this(); |
| 242 | } |
| 243 | |
| 244 | void resumeRead() override |
| 245 | { |
| 246 | readingDefered = false; |
| 247 | doRead(); |
| 248 | |
| 249 | // No longer need to keep ourselves alive now that read is active. |
| 250 | selfOwned.reset(); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 251 | } |
| 252 | |
| 253 | void doRead() |
| 254 | { |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 255 | if (readingDefered) |
| 256 | { |
| 257 | return; |
| 258 | } |
| 259 | ws.async_read(inBuffer, [this, self(shared_from_this())]( |
| 260 | const boost::beast::error_code& ec, |
| 261 | size_t bytesRead) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 262 | if (ec) |
| 263 | { |
| 264 | if (ec != boost::beast::websocket::error::closed) |
| 265 | { |
| 266 | BMCWEB_LOG_ERROR << "doRead error " << ec; |
| 267 | } |
| 268 | if (closeHandler) |
| 269 | { |
Ed Tanous | 079360a | 2022-06-29 10:05:19 -0700 | [diff] [blame] | 270 | std::string reason{ws.reason().reason.c_str()}; |
| 271 | closeHandler(*this, reason); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 272 | } |
| 273 | return; |
| 274 | } |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 275 | |
| 276 | handleMessage(bytesRead); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 277 | }); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 278 | } |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 279 | void doWrite() |
| 280 | { |
| 281 | // If we're already doing a write, ignore the request, it will be picked |
| 282 | // up when the current write is complete |
| 283 | if (doingWrite) |
| 284 | { |
| 285 | return; |
| 286 | } |
| 287 | |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 288 | if (outBuffer.size() == 0) |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 289 | { |
| 290 | // Done for now |
| 291 | return; |
| 292 | } |
| 293 | doingWrite = true; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 294 | ws.async_write(outBuffer.data(), [this, self(shared_from_this())]( |
| 295 | const boost::beast::error_code& ec, |
| 296 | size_t bytesSent) { |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 297 | doingWrite = false; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 298 | outBuffer.consume(bytesSent); |
Ed Tanous | 002d39b | 2022-05-31 08:59:27 -0700 | [diff] [blame] | 299 | if (ec == boost::beast::websocket::error::closed) |
| 300 | { |
| 301 | // Do nothing here. doRead handler will call the |
| 302 | // closeHandler. |
| 303 | close("Write error"); |
| 304 | return; |
| 305 | } |
| 306 | if (ec) |
| 307 | { |
| 308 | BMCWEB_LOG_ERROR << "Error in ws.async_write " << ec; |
| 309 | return; |
| 310 | } |
| 311 | doWrite(); |
| 312 | }); |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 313 | } |
| 314 | |
| 315 | private: |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 316 | void handleMessage(size_t bytesRead) |
| 317 | { |
| 318 | if (messageExHandler) |
| 319 | { |
| 320 | // Note, because of the interactions with the read buffers, |
| 321 | // this message handler overrides the normal message handler |
| 322 | messageExHandler(*this, inString, MessageType::Binary, |
| 323 | [this, self(shared_from_this()), bytesRead]() { |
| 324 | if (self == nullptr) |
| 325 | { |
| 326 | return; |
| 327 | } |
| 328 | |
| 329 | inBuffer.consume(bytesRead); |
| 330 | inString.clear(); |
| 331 | |
| 332 | doRead(); |
| 333 | }); |
| 334 | return; |
| 335 | } |
| 336 | |
| 337 | if (messageHandler) |
| 338 | { |
| 339 | messageHandler(*this, inString, ws.got_text()); |
| 340 | } |
| 341 | inBuffer.consume(bytesRead); |
| 342 | inString.clear(); |
| 343 | doRead(); |
| 344 | } |
| 345 | |
Ninad Palsule | 052bcbf | 2023-05-30 11:10:58 -0500 | [diff] [blame] | 346 | boost::urls::url uri; |
| 347 | |
Ed Tanous | 2aee6ca | 2021-02-01 09:52:17 -0800 | [diff] [blame] | 348 | boost::beast::websocket::stream<Adaptor, false> ws; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 349 | |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 350 | bool readingDefered = false; |
Ed Tanous | 609145a | 2018-09-05 16:27:36 -0700 | [diff] [blame] | 351 | std::string inString; |
| 352 | boost::asio::dynamic_string_buffer<std::string::value_type, |
| 353 | std::string::traits_type, |
| 354 | std::string::allocator_type> |
| 355 | inBuffer; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 356 | |
| 357 | boost::beast::multi_buffer outBuffer; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 358 | bool doingWrite = false; |
| 359 | |
zhanghch05 | 7772638 | 2021-10-21 14:07:57 +0800 | [diff] [blame] | 360 | std::function<void(Connection&)> openHandler; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 361 | std::function<void(Connection&, const std::string&, bool)> messageHandler; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 362 | std::function<void(crow::websocket::Connection&, std::string_view, |
| 363 | crow::websocket::MessageType type, |
| 364 | std::function<void()>&& whenComplete)> |
| 365 | messageExHandler; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 366 | std::function<void(Connection&, const std::string&)> closeHandler; |
| 367 | std::function<void(Connection&)> errorHandler; |
Ed Tanous | 52cc112 | 2020-07-18 13:51:21 -0700 | [diff] [blame] | 368 | std::shared_ptr<persistent_data::UserSession> session; |
Ed Tanous | 863c1c2 | 2022-02-21 21:33:06 -0800 | [diff] [blame] | 369 | |
| 370 | std::shared_ptr<Connection> selfOwned; |
Ed Tanous | 7045c8d | 2017-04-03 10:04:37 -0700 | [diff] [blame] | 371 | }; |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 372 | } // namespace websocket |
| 373 | } // namespace crow |