WebSocket++ 0.8.3-dev
C++ websocket client/server library
Loading...
Searching...
No Matches
endpoint.hpp
1/*
2 * Copyright (c) 2014, 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_STUB_HPP
29#define WEBSOCKETPP_TRANSPORT_STUB_HPP
30
31#include <websocketpp/common/memory.hpp>
32#include <websocketpp/logger/levels.hpp>
33
34#include <websocketpp/transport/base/endpoint.hpp>
35#include <websocketpp/transport/stub/connection.hpp>
36
37namespace websocketpp {
38namespace transport {
39namespace stub {
40
41template <typename config>
42class endpoint {
43public:
44 /// Type of this endpoint transport component
45 typedef endpoint type;
46 /// Type of a pointer to this endpoint transport component
47 typedef lib::shared_ptr<type> ptr;
48
49 /// Type of this endpoint's concurrency policy
50 typedef typename config::concurrency_type concurrency_type;
51 /// Type of this endpoint's error logging policy
52 typedef typename config::elog_type elog_type;
53 /// Type of this endpoint's access logging policy
54 typedef typename config::alog_type alog_type;
55
56 /// Type of this endpoint transport component's associated connection
57 /// transport component.
59 /// Type of a shared pointer to this endpoint transport component's
60 /// associated connection transport component
62
63 // generate and manage our own io_context
64 explicit endpoint()
65 {
66 //std::cout << "transport::iostream::endpoint constructor" << std::endl;
67 }
68
69 /// Set whether or not endpoint can create secure connections
70 /**
71 * TODO: docs
72 *
73 * Setting this value only indicates whether or not the endpoint is capable
74 * of producing and managing secure connections. Connections produced by
75 * this endpoint must also be individually flagged as secure if they are.
76 *
77 * @since 0.3.0-alpha4
78 *
79 * @param value Whether or not the endpoint can create secure connections.
80 */
81 void set_secure(bool value) {}
82
83 /// Tests whether or not the underlying transport is secure
84 /**
85 * TODO: docs
86 *
87 * @return Whether or not the underlying transport is secure
88 */
89 bool is_secure() const {
90 return false;
91 }
92
93 /// Tests whether or not the transport is currently listening for new connections
94 /**
95 * Server roles only
96 */
97 bool is_listening() const {
98 return false;
99 }
100protected:
101 /// Initialize logging
102 /**
103 * The loggers are located in the main endpoint class. As such, the
104 * transport doesn't have direct access to them. This method is called
105 * by the endpoint constructor to allow shared logging from the transport
106 * component. These are raw pointers to member variables of the endpoint.
107 * In particular, they cannot be used in the transport constructor as they
108 * haven't been constructed yet, and cannot be used in the transport
109 * destructor as they will have been destroyed by then.
110 *
111 * @param a A pointer to the access logger to use.
112 * @param e A pointer to the error logger to use.
113 */
114 void init_logging(lib::shared_ptr<alog_type>, lib::shared_ptr<elog_type>) {}
115
116 /// Initiate a new connection
117 /**
118 * @param tcon A pointer to the transport connection component of the
119 * connection to connect.
120 * @param u A URI pointer to the URI to connect to.
121 * @param cb The function to call back with the results when complete.
122 */
126
127 /// Accept a new connection
128 /**
129 * Server roles only
130 */
131 void async_accept(transport_con_ptr tcon, accept_handler cb, std::error_code & ec) {
133 }
134
135 /// Initialize a connection
136 /**
137 * Init is called by an endpoint once for each newly created connection.
138 * It's purpose is to give the transport policy the chance to perform any
139 * transport specific initialization that couldn't be done via the default
140 * constructor.
141 *
142 * @param tcon A pointer to the transport portion of the connection.
143 * @return A status code indicating the success or failure of the operation
144 */
145 lib::error_code init(transport_con_ptr tcon) {
147 }
148private:
149
150};
151
152} // namespace stub
153} // namespace transport
154} // namespace websocketpp
155
156#endif // WEBSOCKETPP_TRANSPORT_STUB_HPP
lib::shared_ptr< type > ptr
Type of a pointer to this endpoint transport component.
Definition endpoint.hpp:47
void async_accept(transport_con_ptr tcon, accept_handler cb, std::error_code &ec)
Accept a new connection.
Definition endpoint.hpp:131
config::concurrency_type concurrency_type
Type of this endpoint's concurrency policy.
Definition endpoint.hpp:50
bool is_listening() const
Tests whether or not the transport is currently listening for new connections.
Definition endpoint.hpp:97
bool is_secure() const
Tests whether or not the underlying transport is secure.
Definition endpoint.hpp:89
void set_secure(bool value)
Set whether or not endpoint can create secure connections.
Definition endpoint.hpp:81
stub::connection< config > transport_con_type
Definition endpoint.hpp:58
config::elog_type elog_type
Type of this endpoint's error logging policy.
Definition endpoint.hpp:52
lib::error_code init(transport_con_ptr tcon)
Initialize a connection.
Definition endpoint.hpp:145
config::alog_type alog_type
Type of this endpoint's access logging policy.
Definition endpoint.hpp:54
void async_connect(transport_con_ptr tcon, uri_ptr u, connect_handler cb)
Initiate a new connection.
Definition endpoint.hpp:123
void init_logging(lib::shared_ptr< alog_type >, lib::shared_ptr< elog_type >)
Initialize logging.
Definition endpoint.hpp:114
transport_con_type::ptr transport_con_ptr
Definition endpoint.hpp:61
endpoint type
Type of this endpoint transport component.
Definition endpoint.hpp:45
stub transport errors
Definition base.hpp:42
lib::error_code make_error_code(error::value e)
Get an error code with the given value and the stub transport category.
Definition base.hpp:80
@ not_implemented
not implemented
Definition base.hpp:49
Stub transport policy that has no input or output.
Definition base.hpp:39
Transport policies provide network connectivity and timers.
Definition endpoint.hpp:45
lib::function< void(lib::error_code const &)> accept_handler
The type and signature of the callback passed to the accept method.
Definition endpoint.hpp:80
lib::function< void(lib::error_code const &)> connect_handler
The type and signature of the callback passed to the connect method.
Definition endpoint.hpp:83
Namespace for the WebSocket++ project.