My Project
|
#include <TCPSession.h>
Public Member Functions | |
TCPSession (EPoll &ePoll, TCPServer &server, std::string text="") | |
virtual void | output (std::stringstream &data) |
void | send () |
void | sendToAll () |
void | sendToAll (SessionFilter filter) |
void | terminate () |
![]() | |
TCPSocket (EPoll &ePoll) | |
TCPSocket (EPoll &ePoll, std::string text) | |
void | connect (IPAddress &address) |
![]() | |
Socket (EPoll &ePoll, std::string text="") | |
~Socket () | |
void | shutdown (std::string text="unknown") |
void | setDescriptor (int descriptor) |
Set the descriptor for the socket. More... | |
int | getDescriptor () |
Get the descriptor for the socket. | |
bool | eventReceived (struct epoll_event event) |
Parse epoll event and call specified callbacks. More... | |
int | write (std::string data) |
void | write (char *buffer, int length) |
void | output (std::stringstream &out) |
virtual void | onRegister () |
Called before the socket has registered with the epoll processing. More... | |
virtual void | onUnregister () |
virtual void | onUnregistered () |
Called when the socket has finished unregistering for the epoll processing. More... | |
bool | needsToWrite () |
Public Attributes | |
Command * | grab = NULL |
std::stringstream | out |
TCPServer & | server |
![]() | |
IPAddress | ipAddress |
![]() | |
bool | reset = false |
![]() | |
std::string | name |
std::string | tag |
Protected Member Functions | |
virtual void | onRegistered () override |
Called after the socket has been registered with epoll processing. | |
virtual void | onDataReceived (char *data, int len) override |
virtual void | onLineReceived (std::string line) |
virtual void | onConnected () |
virtual void | protocol (std::string data) |
![]() | |
void | setBufferSize (int length) |
int | getBufferSize () |
virtual void | onDataReceived (std::string data) |
Called when data is received from the socket. More... | |
virtual void | receiveData (char *buffer, int bufferLength) |
Additional Inherited Members | |
![]() | |
EPoll & | ePoll |
bool | shutDown = false |
TCPSession defines the nature of the interaction with the client and stores persistent data for a defined session. BMASession objects are not sockets but instead provide a communications control mechanism. Protocol conversations are provided through extensions from this object.
|
protectedvirtual |
This method is called from within the protocol method when protocol is called on the initial connection where the data is an empty string. Use this method to deliver a message to the connection upon connection.
|
overrideprotectedvirtual |
Override this method to receive data directly from the socket as data is received. If you need data split by line termination characters then override the onLineReceived method instead.
Reimplemented from core::Socket.
|
protectedvirtual |
Override the onLineReceived method to receive a string of characters that represents a single line of data terminated by a LF or CRLF. If onDataReceived was overriden this method will not be called unless the onDataReceived calls this method explicitly using the class and member name.
|
virtual |
The output method is called by a socket session (BMASession) and will output the detail information for the client socket. When extending BMATCPSocket or BMASession you can override the method to add attributes to the list.
Reimplemented from core::TCPSocket.
Reimplemented in core::TLSSession.
|
protectedvirtual |
Override the protocol method to manage and control the session communications in your inherited session. If you do not override this method then the Session default will process the 'commands' added to the server object using the processRequest method on the session input.
Reimplemented in core::TLSSession, and core::ConsoleSession.
void core::TCPSession::send | ( | ) |
The send method is used to output the contents of the out stream to the session containing the stream.
void core::TCPSession::sendToAll | ( | ) |
Use this sendToAll method to output the contents of the out stream to all the connections on the server excluding the sender session.
void core::TCPSession::sendToAll | ( | SessionFilter | filter | ) |
Use this sendToAll method to output the contents of the out stream to all the connections on the server excluding the sender session and the entries identified by the passed in filter object.
std::stringstream core::TCPSession::out |
Use out to send data to the session socket or other session sockets.