My Project
|
#include <TCPSession.h>
Public Member Functions | |
TCPSession (EPoll &ePoll, TCPServer &server) | |
TCPSession (EPoll &ePoll, TCPServer &server, std::string text) | |
virtual void | output (std::stringstream &data) |
void | send (std::string data) |
void | sendToAll (std::string data) |
void | sendToAll (SessionFilter filter, std::string data) |
![]() | |
TCPSocket (EPoll &ePoll) | |
TCPSocket (EPoll &ePoll, std::string text) | |
void | connect (IPAddress &address) |
![]() | |
Socket (EPoll &ePoll) | |
Socket (EPoll &ePoll, std::string text) | |
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 | onRegistered () |
virtual void | onUnregister () |
Called when the socket has finished unregistering for the epoll processing. More... | |
bool | needsToWrite () |
Public Attributes | |
Command * | grab = NULL |
TCPServer & | server |
![]() | |
IPAddress | ipAddress |
![]() | |
class { | |
} | bufferSize |
bool | active = false |
![]() | |
std::string | name |
std::string | tag |
Protected Member Functions | |
virtual void | onDataReceived (std::string data) override |
Called when data is received from the socket. More... | |
virtual void | onRegister () override |
Called when the socket has finished registering with the epoll processing. More... | |
virtual void | onConnected (std::stringstream &out) |
virtual void | protocol (std::stringstream &out, std::string data) |
![]() | |
void | setBufferSize (int length) |
virtual void | onDataReceived (char *buffer, int len) |
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 |
Called when data is received from the socket.
The onConnected method is called when the socket is ready to communicate. Writing to the socket can begin on this call to initiate a contact with the remote device. The onDataReceived method is called when the socket has received an event from epoll and there is data ready to be read from the socket. The default handler will pull the data and put it into the streambuf for the socket. EPOLLIN
data | the data that has been received from the socket. |
Reimplemented from core::Socket.
|
overrideprotectedvirtual |
Called when the socket has finished registering with the epoll processing.
The onRegister method is called before the socket is registered with ePoll so objects extending the Socket definition can initialize the socket before receiving events. Evoked when the descriptor is set using setDescriptor for the socket.
Reimplemented from core::Socket.
Reimplemented in core::TLSSession.
|
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 | ( | std::string | data | ) |
The send method is used to output the contents of the out stream to the session containing the stream.
void core::TCPSession::sendToAll | ( | std::string | data | ) |
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, |
std::string | data | ||
) |
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.