Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
none.hpp
Go to the documentation of this file.
1/*
2 * Copyright (c) 2015, Peter Thorson. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are met:
6 * * Redistributions of source code must retain the above copyright
7 * notice, this list of conditions and the following disclaimer.
8 * * Redistributions in binary form must reproduce the above copyright
9 * notice, this list of conditions and the following disclaimer in the
10 * documentation and/or other materials provided with the distribution.
11 * * Neither the name of the WebSocket++ Project nor the
12 * names of its contributors may be used to endorse or promote products
13 * derived from this software without specific prior written permission.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL PETER THORSON BE LIABLE FOR ANY
19 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
20 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
21 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
22 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
24 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 */
27
28#ifndef WEBSOCKETPP_TRANSPORT_SECURITY_NONE_HPP
29#define WEBSOCKETPP_TRANSPORT_SECURITY_NONE_HPP
30
31#include <websocketpp/uri.hpp>
32
35
38
39#include <sstream>
40#include <string>
41
42namespace websocketpp {
43namespace transport {
44namespace asio {
47namespace basic_socket {
48
50typedef lib::function<void(connection_hdl,lib::asio::ip::tcp::socket&)>
52
54
58class connection : public lib::enable_shared_from_this<connection> {
59public:
63 typedef lib::shared_ptr<type> ptr;
64
66 typedef lib::asio::io_service* io_service_ptr;
68 typedef lib::shared_ptr<lib::asio::io_service::strand> strand_ptr;
70 typedef lib::asio::ip::tcp::socket socket_type;
72 typedef lib::shared_ptr<socket_type> socket_ptr;
73
74 explicit connection() : m_state(UNINITIALIZED) {
75 //std::cout << "transport::asio::basic_socket::connection constructor"
76 // << std::endl;
77 }
78
81 return shared_from_this();
82 }
83
85
88 bool is_secure() const {
89 return false;
90 }
91
93
101 m_socket_init_handler = h;
102 }
103
105
108 lib::asio::ip::tcp::socket & get_socket() {
109 return *m_socket;
110 }
111
113
116 lib::asio::ip::tcp::socket & get_next_layer() {
117 return *m_socket;
118 }
119
121
124 lib::asio::ip::tcp::socket & get_raw_socket() {
125 return *m_socket;
126 }
127
129
138 std::string get_remote_endpoint(lib::error_code & ec) const {
139 std::stringstream s;
140
141 lib::asio::error_code aec;
142 lib::asio::ip::tcp::endpoint ep = m_socket->remote_endpoint(aec);
143
144 if (aec) {
145 ec = aec;
146 s << "Error getting remote endpoint: " << aec
147 << " (" << aec.message() << ")";
148 return s.str();
149 } else {
150 ec = lib::error_code();
151 s << ep;
152 return s.str();
153 }
154 }
155protected:
157
165 lib::error_code init_asio (io_service_ptr service, strand_ptr, bool)
166 {
167 if (m_state != UNINITIALIZED) {
169 }
170
171 m_socket = lib::make_shared<lib::asio::ip::tcp::socket>(*service);
172
173 m_state = READY;
174
175 return lib::error_code();
176 }
177
179
190
192
200 void pre_init(init_handler callback) {
201 if (m_state != READY) {
203 return;
204 }
205
206 if (m_socket_init_handler) {
207 m_socket_init_handler(m_hdl,*m_socket);
208 }
209
210 m_state = READING;
211
212 callback(lib::error_code());
213 }
214
216
223 void post_init(init_handler callback) {
224 callback(lib::error_code());
225 }
226
228
235 m_hdl = hdl;
236 }
237
239
247 lib::asio::error_code cancel_socket() {
248 lib::asio::error_code ec;
249 m_socket->cancel(ec);
250 return ec;
251 }
252
254 lib::asio::error_code ec;
255 m_socket->shutdown(lib::asio::ip::tcp::socket::shutdown_both, ec);
256 h(ec);
257 }
258
259 lib::error_code get_ec() const {
260 return lib::error_code();
261 }
262
264
281 template <typename ErrorCodeType>
282 lib::error_code translate_ec(ErrorCodeType) {
283 // We don't know any more information about this error so pass through
284 return make_error_code(transport::error::pass_through);
285 }
286
289 lib::error_code translate_ec(lib::error_code ec) {
290 // We don't know any more information about this error, but the error is
291 // the same type as the one we are translating to, so pass through
292 // untranslated.
293 return ec;
294 }
295private:
296 enum state {
297 UNINITIALIZED = 0,
298 READY = 1,
299 READING = 2
300 };
301
302 socket_ptr m_socket;
303 state m_state;
304
305 connection_hdl m_hdl;
306 socket_init_handler m_socket_init_handler;
307};
308
310
314class endpoint {
315public:
317 typedef endpoint type;
318
324
325 explicit endpoint() {}
326
328
331 bool is_secure() const {
332 return false;
333 }
334
336
344 m_socket_init_handler = h;
345 }
346protected:
348
356 lib::error_code init(socket_con_ptr scon) {
357 scon->set_socket_init_handler(m_socket_init_handler);
358 return lib::error_code();
359 }
360private:
361 socket_init_handler m_socket_init_handler;
362};
363
364} // namespace basic_socket
365} // namespace asio
366} // namespace transport
367} // namespace websocketpp
368
369#endif // WEBSOCKETPP_TRANSPORT_SECURITY_NONE_HPP
Basic Asio connection socket component.
Definition none.hpp:58
lib::asio::ip::tcp::socket socket_type
Type of the ASIO socket being used.
Definition none.hpp:70
lib::asio::ip::tcp::socket & get_raw_socket()
Retrieve a pointer to the underlying socket.
Definition none.hpp:124
void set_socket_init_handler(socket_init_handler h)
Set the socket initialization handler.
Definition none.hpp:100
lib::shared_ptr< lib::asio::io_service::strand > strand_ptr
Type of a pointer to the Asio io_service strand being used.
Definition none.hpp:68
lib::error_code translate_ec(ErrorCodeType)
Translate any security policy specific information about an error code.
Definition none.hpp:282
lib::asio::io_service * io_service_ptr
Type of a pointer to the Asio io_service being used.
Definition none.hpp:66
lib::asio::ip::tcp::socket & get_socket()
Retrieve a pointer to the underlying socket.
Definition none.hpp:108
bool is_secure() const
Check whether or not this connection is secure.
Definition none.hpp:88
connection type
Type of this connection socket component.
Definition none.hpp:61
lib::error_code translate_ec(lib::error_code ec)
Definition none.hpp:289
void set_handle(connection_hdl hdl)
Sets the connection handle.
Definition none.hpp:234
lib::asio::error_code cancel_socket()
Cancel all async operations on this socket.
Definition none.hpp:247
lib::shared_ptr< socket_type > socket_ptr
Type of a shared pointer to the socket being used.
Definition none.hpp:72
void pre_init(init_handler callback)
Pre-initialize security policy.
Definition none.hpp:200
std::string get_remote_endpoint(lib::error_code &ec) const
Get the remote endpoint address.
Definition none.hpp:138
void post_init(init_handler callback)
Post-initialize security policy.
Definition none.hpp:223
lib::error_code init_asio(io_service_ptr service, strand_ptr, bool)
Perform one time initializations.
Definition none.hpp:165
void async_shutdown(socket::shutdown_handler h)
Definition none.hpp:253
ptr get_shared()
Get a shared pointer to this component.
Definition none.hpp:80
lib::shared_ptr< type > ptr
Type of a shared pointer to this connection socket component.
Definition none.hpp:63
lib::asio::ip::tcp::socket & get_next_layer()
Retrieve a pointer to the underlying socket.
Definition none.hpp:116
Basic ASIO endpoint socket component.
Definition none.hpp:314
void set_socket_init_handler(socket_init_handler h)
Set socket init handler.
Definition none.hpp:343
endpoint type
The type of this endpoint socket component.
Definition none.hpp:317
lib::error_code init(socket_con_ptr scon)
Initialize a connection.
Definition none.hpp:356
connection socket_con_type
The type of the corresponding connection socket component.
Definition none.hpp:320
bool is_secure() const
Checks whether the endpoint creates secure connections.
Definition none.hpp:331
lib::function< void(connection_hdl, lib::asio::ip::tcp::socket &)> socket_init_handler
The signature of the socket init handler for this socket policy.
Definition none.hpp:51
@ invalid_state
A function was called in a state that it was illegal to do so.
Definition base.hpp:86
lib::function< void(lib::asio::error_code const &)> shutdown_handler
Definition base.hpp:67
lib::error_code make_error_code(error::value e)
Definition base.hpp:147
@ pass_through
underlying transport pass through
lib::function< void(lib::error_code const &)> init_handler
The type and signature of the callback passed to the init hook.
Namespace for the WebSocket++ project.
Definition base64.hpp:41
lib::weak_ptr< void > connection_hdl
A handle to uniquely identify a connection.
lib::shared_ptr< uri > uri_ptr
Pointer to a URI.
Definition uri.hpp:351
char * s