2012-06-14 09:06:06 -04:00
|
|
|
|
2012-09-23 17:23:33 -04:00
|
|
|
// SocketThreads.h
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// Interfaces to the cSocketThreads class representing the heart of MCS's client networking.
|
|
|
|
// This object takes care of network communication, groups sockets into threads and uses as little threads as possible for full read / write support
|
|
|
|
// For more detail, see http://forum.mc-server.org/showthread.php?tid=327
|
|
|
|
|
|
|
|
/*
|
|
|
|
Additional details:
|
2014-01-19 13:31:43 -05:00
|
|
|
When a client wants to terminate the connection, they call the RemoveClient() function. This calls the
|
|
|
|
callback one last time to read all the available outgoing data, putting it in the slot's m_OutgoingData
|
|
|
|
buffer. Then it marks the slot as having no callback. The socket is kept alive until its outgoing data
|
|
|
|
queue is empty, then shutdown is called on it and finally the socket is closed after a timeout.
|
|
|
|
If at any time within this the remote end closes the socket, then the socket is closed directly.
|
|
|
|
As soon as the socket is closed, the slot is finally removed from the SocketThread.
|
|
|
|
The graph in $/docs/SocketThreads States.gv shows the state-machine transitions of the slot.
|
2012-06-14 09:06:06 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** How many clients should one thread handle? (must be less than FD_SETSIZE for your platform) */
|
2012-06-14 09:06:06 -04:00
|
|
|
#define MAX_SLOTS 63
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2012-09-23 17:23:33 -04:00
|
|
|
#include "Socket.h"
|
|
|
|
#include "IsThread.h"
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Check MAX_SLOTS:
|
|
|
|
#if MAX_SLOTS >= FD_SETSIZE
|
2012-08-27 13:31:16 -04:00
|
|
|
#error "MAX_SLOTS must be less than FD_SETSIZE for your platform! (otherwise select() won't work)"
|
2012-06-14 09:06:06 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// fwd:
|
|
|
|
class cSocket;
|
|
|
|
class cClientHandle;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class cSocketThreads
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
// Clients of cSocketThreads must implement this interface to be able to communicate
|
|
|
|
class cCallback
|
|
|
|
{
|
|
|
|
public:
|
2013-12-28 15:59:50 -05:00
|
|
|
// Force a virtual destructor in all subclasses:
|
|
|
|
virtual ~cCallback() {}
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Called when data is received from the remote party */
|
2014-04-02 09:36:25 -04:00
|
|
|
virtual void DataReceived(const char * a_Data, size_t a_Size) = 0;
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-01-27 15:27:13 -05:00
|
|
|
/** Called when data can be sent to remote party
|
|
|
|
The function is supposed to *set* outgoing data to a_Data (overwrite) */
|
2012-06-14 09:06:06 -04:00
|
|
|
virtual void GetOutgoingData(AString & a_Data) = 0;
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Called when the socket has been closed for any reason */
|
2012-06-14 09:06:06 -04:00
|
|
|
virtual void SocketClosed(void) = 0;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
cSocketThreads(void);
|
|
|
|
~cSocketThreads();
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Add a (socket, client) pair for processing, data from a_Socket is to be sent to a_Client; returns true if successful */
|
2012-09-25 04:23:19 -04:00
|
|
|
bool AddClient(const cSocket & a_Socket, cCallback * a_Client);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
2014-01-18 14:50:16 -05:00
|
|
|
/** Remove the associated socket and the client from processing.
|
2014-01-19 13:31:43 -05:00
|
|
|
The socket is left to send its last outgoing data and is removed only after all its m_Outgoing is sent
|
|
|
|
and after the socket is properly shutdown (unless the remote disconnects before that)
|
2014-01-18 14:50:16 -05:00
|
|
|
*/
|
2012-06-14 09:06:06 -04:00
|
|
|
void RemoveClient(const cCallback * a_Client);
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Notify the thread responsible for a_Client that the client has something to write */
|
2012-06-14 09:06:06 -04:00
|
|
|
void NotifyWrite(const cCallback * a_Client);
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Puts a_Data into outgoing data queue for a_Client */
|
2012-09-25 04:23:19 -04:00
|
|
|
void Write(const cCallback * a_Client, const AString & a_Data);
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
class cSocketThread :
|
|
|
|
public cIsThread
|
|
|
|
{
|
|
|
|
typedef cIsThread super;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
cSocketThread(cSocketThreads * a_Parent);
|
2014-03-07 13:26:07 -05:00
|
|
|
virtual ~cSocketThread();
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
// All these methods assume parent's m_CS is locked
|
|
|
|
bool HasEmptySlot(void) const {return m_NumSlots < MAX_SLOTS; }
|
|
|
|
bool IsEmpty (void) const {return m_NumSlots == 0; }
|
|
|
|
|
2012-09-25 04:23:19 -04:00
|
|
|
void AddClient (const cSocket & a_Socket, cCallback * a_Client); // Takes ownership of the socket
|
2012-06-14 09:06:06 -04:00
|
|
|
bool RemoveClient(const cCallback * a_Client); // Returns true if removed, false if not found
|
|
|
|
bool HasClient (const cCallback * a_Client) const;
|
|
|
|
bool HasSocket (const cSocket * a_Socket) const;
|
|
|
|
bool NotifyWrite (const cCallback * a_Client); // Returns true if client handled by this thread
|
2012-09-25 04:23:19 -04:00
|
|
|
bool Write (const cCallback * a_Client, const AString & a_Data); // Returns true if client handled by this thread
|
2012-06-14 09:06:06 -04:00
|
|
|
|
|
|
|
bool Start(void); // Hide the cIsThread's Start method, we need to provide our own startup to create the control socket
|
|
|
|
|
|
|
|
bool IsValid(void) const {return m_ControlSocket2.IsValid(); } // If the Control socket dies, the thread is not valid anymore
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
cSocketThreads * m_Parent;
|
|
|
|
|
|
|
|
// Two ends of the control socket, the first is select()-ed, the second is written to for notifications
|
|
|
|
cSocket m_ControlSocket1;
|
|
|
|
cSocket m_ControlSocket2;
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
// Socket-client-dataqueues-state quadruplets.
|
2012-06-14 09:06:06 -04:00
|
|
|
// Manipulation with these assumes that the parent's m_CS is locked
|
|
|
|
struct sSlot
|
|
|
|
{
|
2014-01-19 13:31:43 -05:00
|
|
|
/** The socket is primarily owned by this object */
|
|
|
|
cSocket m_Socket;
|
|
|
|
|
|
|
|
/** The callback to call for events. May be NULL */
|
2012-06-14 09:06:06 -04:00
|
|
|
cCallback * m_Client;
|
2014-01-19 13:31:43 -05:00
|
|
|
|
|
|
|
/** If sending writes only partial data, the rest is stored here for another send.
|
|
|
|
Also used when the slot is being removed to store the last batch of outgoing data. */
|
|
|
|
AString m_Outgoing;
|
|
|
|
|
|
|
|
enum eState
|
|
|
|
{
|
|
|
|
ssNormal, ///< Normal read / write operations
|
|
|
|
ssWritingRestOut, ///< The client callback was removed, continue to send outgoing data
|
|
|
|
ssShuttingDown, ///< The last outgoing data has been sent, the socket has called shutdown()
|
|
|
|
ssShuttingDown2, ///< The shutdown has been done at least 1 thread loop ago (timeout detection)
|
|
|
|
ssRemoteClosed, ///< The remote end has closed the connection (and we still have a client callback)
|
|
|
|
} m_State;
|
2012-06-14 09:06:06 -04:00
|
|
|
} ;
|
2014-01-19 13:31:43 -05:00
|
|
|
|
2012-06-14 09:06:06 -04:00
|
|
|
sSlot m_Slots[MAX_SLOTS];
|
|
|
|
int m_NumSlots; // Number of slots actually used
|
|
|
|
|
|
|
|
virtual void Execute(void) override;
|
|
|
|
|
2014-01-27 15:27:13 -05:00
|
|
|
/** Prepares the Read and Write socket sets for select()
|
|
|
|
Puts all sockets into the read set, along with m_ControlSocket1.
|
|
|
|
Only sockets that have outgoing data queued on them are put in the write set.*/
|
|
|
|
void PrepareSets(fd_set * a_ReadSet, fd_set * a_WriteSet, cSocket::xSocket & a_Highest);
|
2014-01-19 13:31:43 -05:00
|
|
|
|
2014-01-27 15:27:13 -05:00
|
|
|
/** Reads from sockets indicated in a_Read */
|
|
|
|
void ReadFromSockets(fd_set * a_Read);
|
2014-01-19 13:31:43 -05:00
|
|
|
|
2014-01-27 15:27:13 -05:00
|
|
|
/** Writes to sockets indicated in a_Write */
|
|
|
|
void WriteToSockets (fd_set * a_Write);
|
|
|
|
|
|
|
|
/** Sends data through the specified socket, trying to fill the OS send buffer in chunks.
|
|
|
|
Returns true if there was no error while sending, false if an error has occured.
|
|
|
|
Modifies a_Data to contain only the unsent data. */
|
|
|
|
bool SendDataThroughSocket(cSocket & a_Socket, AString & a_Data);
|
|
|
|
|
2014-01-19 13:31:43 -05:00
|
|
|
/** Removes those slots in ssShuttingDown2 state, sets those with ssShuttingDown state to ssShuttingDown2 */
|
|
|
|
void CleanUpShutSockets(void);
|
2014-01-27 15:27:13 -05:00
|
|
|
|
|
|
|
/** Calls each client's callback to retrieve outgoing data for that client. */
|
|
|
|
void QueueOutgoingData(void);
|
2012-06-14 09:06:06 -04:00
|
|
|
} ;
|
|
|
|
|
|
|
|
typedef std::list<cSocketThread *> cSocketThreadList;
|
|
|
|
|
|
|
|
|
|
|
|
cCriticalSection m_CS;
|
|
|
|
cSocketThreadList m_Threads;
|
|
|
|
} ;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|