28#ifndef WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
29#define WEBSOCKETPP_TRANSPORT_IOSTREAM_CON_HPP
59template <
typename config>
60class connection :
public lib::enable_shared_from_this< connection<config> > {
65 typedef lib::shared_ptr<type>
ptr;
76 typedef typename concurrency_type::mutex_type
mutex_type;
81 : m_output_stream(NULL)
83 , m_is_server(is_server)
87 , m_remote_endpoint(
"iostream transport")
94 return type::shared_from_this();
169 return this->read_some_impl(
buf,
len);
192 size_t total_read = 0;
193 size_t temp_read = 0;
196 temp_read = this->read_some_impl(
buf+total_read,
len-total_read);
197 total_read += temp_read;
198 }
while (temp_read != 0 && total_read <
len);
290 m_remote_endpoint =
value;
306 return m_remote_endpoint;
314 return m_connection_hdl;
381 m_vector_write_handler = h;
401 m_shutdown_handler = h;
412 handler(lib::error_code());
443 s <<
"iostream_con async_read_at_least: " << num_bytes;
446 if (num_bytes >
len) {
451 if (m_reading ==
true) {
456 if (num_bytes == 0 ||
len == 0) {
457 handler(lib::error_code(),
size_t(0));
463 m_bytes_needed = num_bytes;
464 m_read_handler = handler;
495 if (m_output_stream) {
496 m_output_stream->write(
buf,
len);
498 if (m_output_stream->bad()) {
501 }
else if (m_write_handler) {
502 ec = m_write_handler(m_connection_hdl,
buf,
len);
535 if (m_output_stream) {
536 std::vector<buffer>::const_iterator it;
537 for (it = bufs.begin(); it != bufs.end(); it++) {
538 m_output_stream->write((*it).buf,(*it).len);
540 if (m_output_stream->bad()) {
545 }
else if (m_vector_write_handler) {
546 ec = m_vector_write_handler(m_connection_hdl, bufs);
547 }
else if (m_write_handler) {
548 std::vector<buffer>::const_iterator it;
549 for (it = bufs.begin(); it != bufs.end(); it++) {
550 ec = m_write_handler(m_connection_hdl, (*it).buf, (*it).len);
566 m_connection_hdl = hdl;
582 return lib::error_code();
596 if (m_shutdown_handler) {
597 ec = m_shutdown_handler(m_connection_hdl);
603 void read(std::istream &in) {
612 in.read(m_buf+m_cursor,
static_cast<std::streamsize
>(m_len-m_cursor));
614 if (in.gcount() == 0) {
619 m_cursor +=
static_cast<size_t>(in.gcount());
627 if (m_cursor >= m_bytes_needed) {
629 complete_read(lib::error_code());
634 size_t read_some_impl(
char const *
buf,
size_t len) {
642 size_t bytes_to_copy = (std::min)(
len,m_len-m_cursor);
644 std::copy(
buf,
buf+bytes_to_copy,m_buf+m_cursor);
646 m_cursor += bytes_to_copy;
648 if (m_cursor >= m_bytes_needed) {
649 complete_read(lib::error_code());
652 return bytes_to_copy;
671 void complete_read(lib::error_code
const & ec) {
677 handler(ec,m_cursor);
683 size_t m_bytes_needed;
688 std::ostream * m_output_stream;
695 bool const m_is_server;
699 std::string m_remote_endpoint;
connection_hdl get_handle() const
Get the connection handle.
lib::error_code dispatch(dispatch_handler handler)
Call given handler back within the transport's event system (if present)
void set_uri(uri_ptr)
Set uri hook.
config::concurrency_type concurrency_type
transport concurrency policy
void async_shutdown(transport::shutdown_handler handler)
Perform cleanup on socket shutdown_handler.
void set_write_handler(write_handler h)
Sets the write handler.
void set_secure(bool value)
Set whether or not this connection is secure.
void set_shutdown_handler(shutdown_handler h)
Sets the shutdown handler.
void fatal_error()
Signal transport error.
size_t read_some(char const *buf, size_t len)
Manual input supply (read some)
size_t read_all(char const *buf, size_t len)
Manual input supply (read all)
config::elog_type elog_type
Type of this transport's error logging policy.
concurrency_type::mutex_type mutex_type
lib::shared_ptr< type > ptr
Type of a shared pointer to this connection transport component.
config::alog_type alog_type
Type of this transport's access logging policy.
void async_write(char const *buf, size_t len, transport::write_handler handler)
Asyncronous Transport Write.
size_t readsome(char const *buf, size_t len)
Manual input supply (DEPRECATED)
connection(bool is_server, alog_type &alog, elog_type &elog)
void init(init_handler handler)
Initialize the connection transport.
timer_ptr set_timer(long, timer_handler)
Call back a function after a period of time.
void set_remote_endpoint(std::string value)
Set human readable remote endpoint address.
friend std::istream & operator>>(std::istream &in, type &t)
Overloaded stream input operator.
void set_vector_write_handler(vector_write_handler h)
Sets the vectored write handler.
lib::shared_ptr< timer > timer_ptr
bool is_secure() const
Tests whether or not the underlying transport is secure.
std::string get_remote_endpoint() const
Get human readable remote endpoint address.
void set_handle(connection_hdl hdl)
Set Connection Handle.
void register_ostream(std::ostream *o)
Register a std::ostream with the transport for writing output.
void async_read_at_least(size_t num_bytes, char *buf, size_t len, read_handler handler)
Initiate an async_read for at least num_bytes bytes into buf.
void async_write(std::vector< buffer > const &bufs, transport::write_handler handler)
Asyncronous Transport Write (scatter-gather)
concurrency_type::scoped_lock_type scoped_lock_type
ptr get_shared()
Get a shared pointer to this component.
connection< config > type
Type of this connection transport component.
@ pass_through
underlying transport pass through
@ invalid_num_bytes
async_read_at_least call requested more bytes than buffer can store
@ double_read
async_read called while another async_read was in progress
lib::function< lib::error_code(connection_hdl, std::vector< transport::buffer > const &bufs)> vector_write_handler
lib::function< lib::error_code(connection_hdl)> shutdown_handler
lib::function< lib::error_code(connection_hdl, char const *, size_t)> write_handler
The type and signature of the callback used by iostream transport to write.
lib::function< void(lib::error_code const &, size_t)> read_handler
The type and signature of the callback passed to the read method.
lib::function< void()> dispatch_handler
The type and signature of the callback passed to the dispatch method.
lib::function< void(lib::error_code const &)> timer_handler
The type and signature of the callback passed to the read method.
lib::function< void(lib::error_code const &)> write_handler
The type and signature of the callback passed to the write method.
lib::function< void(lib::error_code const &)> init_handler
The type and signature of the callback passed to the init hook.
lib::function< void(lib::error_code const &)> shutdown_handler
The type and signature of the callback passed to the shutdown method.
Namespace for the WebSocket++ project.
lib::weak_ptr< void > connection_hdl
A handle to uniquely identify a connection.
lib::shared_ptr< uri > uri_ptr
Pointer to a URI.
static level const devel
Development messages (warning: very chatty)
static level const devel
Low level debugging information (warning: very chatty)