NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
websocketpp::transport::stub::connection< config > Class Template Reference

#include <connection.hpp>

Inheritance diagram for websocketpp::transport::stub::connection< config >:
Collaboration diagram for websocketpp::transport::stub::connection< config >:

Public Types

typedef connection< configtype
 Type of this connection transport component. More...
 
typedef lib::shared_ptr< typeptr
 Type of a shared pointer to this connection transport component. More...
 
typedef config::concurrency_type concurrency_type
 transport concurrency policy More...
 
typedef config::alog_type alog_type
 Type of this transport's access logging policy. More...
 
typedef config::elog_type elog_type
 Type of this transport's error logging policy. More...
 
typedef concurrency_type::scoped_lock_type scoped_lock_type
 
typedef concurrency_type::mutex_type mutex_type
 
typedef lib::shared_ptr< timertimer_ptr
 

Public Member Functions

 connection (bool is_server, alog_type &alog, elog_type &elog)
 
ptr get_shared ()
 Get a shared pointer to this component. More...
 
void set_secure (bool value)
 Set whether or not this connection is secure. More...
 
bool is_secure () const
 Tests whether or not the underlying transport is secure. More...
 
void set_uri (uri_ptr)
 Set uri hook. More...
 
void set_remote_endpoint (std::string value)
 Set human readable remote endpoint address. More...
 
std::string get_remote_endpoint () const
 Get human readable remote endpoint address. More...
 
connection_hdl get_handle () const
 Get the connection handle. More...
 
timer_ptr set_timer (long duration, timer_handler handler)
 Call back a function after a period of time. More...
 

Protected Member Functions

void init (init_handler handler)
 Initialize the connection transport. More...
 
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. More...
 
void async_write (char const *buf, size_t len, write_handler handler)
 Asyncronous Transport Write. More...
 
void async_write (std::vector< buffer > const &bufs, write_handler handler)
 Asyncronous Transport Write (scatter-gather) More...
 
void set_handle (connection_hdl hdl)
 Set Connection Handle. More...
 
lib::error_code dispatch (dispatch_handler handler)
 Call given handler back within the transport's event system (if present) More...
 
void async_shutdown (shutdown_handler handler)
 Perform cleanup on socket shutdown_handler. More...
 

Detailed Description

template<typename config>
class websocketpp::transport::stub::connection< config >

Definition at line 55 of file connection.hpp.

Member Typedef Documentation

template<typename config >
typedef connection<config> websocketpp::transport::stub::connection< config >::type

Type of this connection transport component.

Definition at line 58 of file connection.hpp.

template<typename config >
typedef lib::shared_ptr<type> websocketpp::transport::stub::connection< config >::ptr

Type of a shared pointer to this connection transport component.

Definition at line 60 of file connection.hpp.

transport concurrency policy

Definition at line 63 of file connection.hpp.

Type of this transport's access logging policy.

Definition at line 65 of file connection.hpp.

Type of this transport's error logging policy.

Definition at line 67 of file connection.hpp.

Definition at line 71 of file connection.hpp.

template<typename config >
typedef lib::shared_ptr<timer> websocketpp::transport::stub::connection< config >::timer_ptr

Definition at line 73 of file connection.hpp.

Constructor & Destructor Documentation

template<typename config >
websocketpp::transport::stub::connection< config >::connection ( bool  is_server,
alog_type alog,
elog_type elog 
)
inlineexplicit

Definition at line 75 of file connection.hpp.

References websocketpp::log::alevel::devel.

Member Function Documentation

template<typename config >
ptr websocketpp::transport::stub::connection< config >::get_shared ( )
inline

Get a shared pointer to this component.

Definition at line 82 of file connection.hpp.

template<typename config >
void websocketpp::transport::stub::connection< config >::set_secure ( bool  value)
inline

Set whether or not this connection is secure.

Todo: docs

Since
0.3.0-alpha4
Parameters
valueWhether or not this connection is secure.

Definition at line 94 of file connection.hpp.

template<typename config >
bool websocketpp::transport::stub::connection< config >::is_secure ( ) const
inline

Tests whether or not the underlying transport is secure.

TODO: docs

Returns
Whether or not the underlying transport is secure

Definition at line 102 of file connection.hpp.

template<typename config >
void websocketpp::transport::stub::connection< config >::set_uri ( uri_ptr  )
inline

Set uri hook.

Called by the endpoint as a connection is being established to provide the uri being connected to to the transport layer.

Implementation is optional and can be ignored if the transport has no need for this information.

Since
0.6.0
Parameters
uThe uri to set

Definition at line 118 of file connection.hpp.

template<typename config >
void websocketpp::transport::stub::connection< config >::set_remote_endpoint ( std::string  value)
inline

Set human readable remote endpoint address.

Sets the remote endpoint address returned by get_remote_endpoint. This value should be a human readable string that describes the remote endpoint. Typically an IP address or hostname, perhaps with a port. But may be something else depending on the nature of the underlying transport.

If none is set a default is returned.

Since
0.3.0-alpha4
Parameters
valueThe remote endpoint address to set.

Definition at line 134 of file connection.hpp.

template<typename config >
std::string websocketpp::transport::stub::connection< config >::get_remote_endpoint ( ) const
inline

Get human readable remote endpoint address.

TODO: docs

This value is used in access and error logs and is available to the end application for including in user facing interfaces and messages.

Returns
A string identifying the address of the remote endpoint

Definition at line 145 of file connection.hpp.

template<typename config >
connection_hdl websocketpp::transport::stub::connection< config >::get_handle ( ) const
inline

Get the connection handle.

Returns
The handle for this connection.

Definition at line 153 of file connection.hpp.

template<typename config >
timer_ptr websocketpp::transport::stub::connection< config >::set_timer ( long  duration,
timer_handler  handler 
)
inline

Call back a function after a period of time.

Timers are not implemented in this transport. The timer pointer will always be empty. The handler will never be called.

Parameters
durationLength of time to wait in milliseconds
callbackThe function to call back when the timer has expired
Returns
A handle that can be used to cancel the timer if it is no longer needed.

Definition at line 167 of file connection.hpp.

template<typename config >
void websocketpp::transport::stub::connection< config >::init ( init_handler  handler)
inlineprotected

Initialize the connection transport.

Initialize the connection's transport component.

Parameters
handlerThe init_handler to call when initialization is done

Definition at line 177 of file connection.hpp.

References websocketpp::log::alevel::devel, websocketpp::transport::error::make_error_code(), and websocketpp::transport::stub::error::not_implemented.

template<typename config >
void websocketpp::transport::stub::connection< config >::async_read_at_least ( size_t  num_bytes,
char *  buf,
size_t  len,
read_handler  handler 
)
inlineprotected

Initiate an async_read for at least num_bytes bytes into buf.

Initiates an async_read request for at least num_bytes bytes. The input will be read into buf. A maximum of len bytes will be input. When the operation is complete, handler will be called with the status and number of bytes read.

This method may or may not call handler from within the initial call. The application should be prepared to accept either.

The application should never call this method a second time before it has been called back for the first read. If this is done, the second read will be called back immediately with a double_read error.

If num_bytes or len are zero handler will be called back immediately indicating success.

Parameters
num_bytesDon't call handler until at least this many bytes have been read.
bufThe buffer to read bytes into
lenThe size of buf. At maximum, this many bytes will be read.
handlerThe callback to invoke when the operation is complete or ends in an error

Definition at line 206 of file connection.hpp.

References websocketpp::log::alevel::devel, websocketpp::transport::error::make_error_code(), and websocketpp::transport::stub::error::not_implemented.

template<typename config >
void websocketpp::transport::stub::connection< config >::async_write ( char const *  buf,
size_t  len,
write_handler  handler 
)
inlineprotected

Asyncronous Transport Write.

Write len bytes in buf to the output stream. Call handler to report success or failure. handler may or may not be called during async_write, but it must be safe for this to happen.

Will return 0 on success.

Parameters
bufbuffer to read bytes from
lennumber of bytes to write
handlerCallback to invoke with operation status.

Definition at line 225 of file connection.hpp.

References websocketpp::log::alevel::devel, websocketpp::transport::error::make_error_code(), and websocketpp::transport::stub::error::not_implemented.

template<typename config >
void websocketpp::transport::stub::connection< config >::async_write ( std::vector< buffer > const &  bufs,
write_handler  handler 
)
inlineprotected

Asyncronous Transport Write (scatter-gather)

Write a sequence of buffers to the output stream. Call handler to report success or failure. handler may or may not be called during async_write, but it must be safe for this to happen.

Will return 0 on success.

Parameters
bufsvector of buffers to write
handlerCallback to invoke with operation status.

Definition at line 241 of file connection.hpp.

References websocketpp::log::alevel::devel, websocketpp::transport::error::make_error_code(), and websocketpp::transport::stub::error::not_implemented.

template<typename config >
void websocketpp::transport::stub::connection< config >::set_handle ( connection_hdl  hdl)
inlineprotected

Set Connection Handle.

Parameters
hdlThe new handle

Definition at line 250 of file connection.hpp.

template<typename config >
lib::error_code websocketpp::transport::stub::connection< config >::dispatch ( dispatch_handler  handler)
inlineprotected

Call given handler back within the transport's event system (if present)

Invoke a callback within the transport's event system if it has one. If it doesn't, the handler will be invoked immediately before this function returns.

Parameters
handlerThe callback to invoke
Returns
Whether or not the transport was able to register the handler for callback.

Definition at line 263 of file connection.hpp.

template<typename config >
void websocketpp::transport::stub::connection< config >::async_shutdown ( shutdown_handler  handler)
inlineprotected

Perform cleanup on socket shutdown_handler.

Parameters
hThe shutdown_handler to call back when complete

Definition at line 272 of file connection.hpp.


The documentation for this class was generated from the following file: