TDME2 1.9.121
|
UDP client. More...
#include <tdme/network/udpclient/UDPClient.h>
Classes | |
struct | Message |
struct | SafeMessage |
struct | UDPClient_Statistics |
Public Member Functions | |
UDPClient (const string &ip, const unsigned int port) | |
Public constructor. More... | |
bool | isInitialized () |
bool | isConnected () |
const string & | getIp () |
const unsigned int | getPort () |
const string & | getClientKey () |
void | setClientKey (const string &clientKey) |
Set client key. More... | |
virtual void | run () |
Run thread program. More... | |
bool | processSafeMessage (UDPClientMessage *clientMessage) |
Returns if a message should be processed or already have been processed. More... | |
UDPClientMessage * | receiveMessage () |
Receive message. More... | |
void | sendMessage (UDPClientMessage *clientMessage, bool safe) |
Pushes a message to be send, takes over ownership of message. More... | |
UDPClientMessage * | createMessage (stringstream *frame) |
Create message. More... | |
const UDPClient_Statistics | getStatistics () |
![]() | |
Thread (const string &name, size_t stackSize=2 *1024 *1024) | |
Public constructor. More... | |
virtual | ~Thread () |
Public destructor. More... | |
void | join () |
Blocks caller thread until this thread has been terminated. More... | |
void | start () |
Starts this objects thread. More... | |
virtual void | run ()=0 |
Abstract run() method, should be implemented by subclassed class, will be called after spawn by start() More... | |
void | stop () |
Requests that this thread should be stopped. More... | |
bool | isStopRequested () |
Returns if stop has been requested. More... | |
Static Public Member Functions | |
static uint64_t | getRetryTime (const uint8_t retries) |
Get retry time for given retry count. More... | |
![]() | |
static int | getHardwareThreadCount () |
static void | sleep (const uint64_t milliseconds) |
sleeps current thread for given time in milliseconds More... | |
Private Types | |
typedef queue< Message * > | MessageQueue |
typedef map< uint32_t, Message * > | MessageMapAck |
typedef queue< UDPClientMessage * > | RecvMessageQueue |
typedef map< uint32_t, SafeMessage * > | MessageMapSafe |
Private Member Functions | |
void | processAckReceived (const uint32_t messageId) |
Processes ack reveived. More... | |
void | processAckMessages () |
Process ack messages. More... | |
void | cleanUpSafeMessages () |
Clean up safe messages. More... | |
Private Attributes | |
bool | initialized |
bool | connected |
string | ip |
uint32_t | port |
uint32_t | clientId |
uint32_t | messageCount |
string | clientKey |
KernelEventMechanism | kem |
Mutex | messageQueueMutex |
MessageQueue | messageQueue |
Mutex | messageMapAckMutex |
MessageMapAck | messageMapAck |
Mutex | recvMessageQueueMutex |
RecvMessageQueue | recvMessageQueue |
Mutex | messageMapSafeMutex |
MessageMapSafe | messageMapSafe |
UDPSocket | socket |
UDPClient_Statistics | statistics |
Static Private Attributes | |
static const int | MESSAGEACK_RESENDTIMES_TRIES = 7 |
static const uint64_t | MESSAGEACK_RESENDTIMES [MESSAGEACK_RESENDTIMES_TRIES] = {125L, 250L, 500L, 750L, 1000L, 2000L, 5000L} |
static const int | MESSAGEQUEUE_SEND_BATCH_SIZE = 100 |
static const uint64_t | MESSAGEACK_KEEPTIME = 5000L |
static const uint64_t | MESSAGESSAFE_KEEPTIME = 5000L |
UDP client.
Definition at line 38 of file UDPClient.h.
|
private |
Definition at line 170 of file UDPClient.h.
|
private |
Definition at line 179 of file UDPClient.h.
|
private |
Definition at line 169 of file UDPClient.h.
|
private |
Definition at line 171 of file UDPClient.h.
UDPClient | ( | const string & | ip, |
const unsigned int | port | ||
) |
Public constructor.
ip | server ip |
port | server port |
Definition at line 48 of file UDPClient.cpp.
|
private |
Clean up safe messages.
Definition at line 512 of file UDPClient.cpp.
UDPClientMessage * createMessage | ( | stringstream * | frame | ) |
const string & getClientKey | ( | ) |
Definition at line 79 of file UDPClient.cpp.
const string & getIp | ( | ) |
Definition at line 71 of file UDPClient.cpp.
const unsigned int getPort | ( | ) |
Definition at line 75 of file UDPClient.cpp.
|
static |
Get retry time for given retry count.
retries | retry count |
Definition at line 533 of file UDPClient.cpp.
const UDPClient::UDPClient_Statistics getStatistics | ( | ) |
Definition at line 560 of file UDPClient.cpp.
bool isConnected | ( | ) |
Definition at line 67 of file UDPClient.cpp.
bool isInitialized | ( | ) |
Definition at line 63 of file UDPClient.cpp.
|
private |
Process ack messages.
Definition at line 400 of file UDPClient.cpp.
|
private |
Processes ack reveived.
messageId | message id |
Definition at line 375 of file UDPClient.cpp.
bool processSafeMessage | ( | UDPClientMessage * | clientMessage | ) |
Returns if a message should be processed or already have been processed.
clientMessage | client message |
Definition at line 467 of file UDPClient.cpp.
UDPClientMessage * receiveMessage | ( | ) |
Receive message.
Definition at line 539 of file UDPClient.cpp.
|
virtual |
void sendMessage | ( | UDPClientMessage * | clientMessage, |
bool | safe | ||
) |
Pushes a message to be send, takes over ownership of message.
clientMessage | client message object |
safe | safe |
Definition at line 314 of file UDPClient.cpp.
void setClientKey | ( | const string & | clientKey | ) |
|
private |
Definition at line 153 of file UDPClient.h.
|
private |
Definition at line 155 of file UDPClient.h.
|
private |
Definition at line 150 of file UDPClient.h.
|
private |
Definition at line 149 of file UDPClient.h.
|
private |
Definition at line 151 of file UDPClient.h.
|
private |
Definition at line 182 of file UDPClient.h.
|
staticprivate |
Definition at line 160 of file UDPClient.h.
|
staticprivate |
Definition at line 158 of file UDPClient.h.
|
staticprivate |
Definition at line 157 of file UDPClient.h.
|
private |
Definition at line 154 of file UDPClient.h.
|
private |
Definition at line 188 of file UDPClient.h.
|
private |
Definition at line 187 of file UDPClient.h.
|
private |
Definition at line 194 of file UDPClient.h.
|
private |
Definition at line 193 of file UDPClient.h.
|
private |
Definition at line 185 of file UDPClient.h.
|
staticprivate |
Definition at line 159 of file UDPClient.h.
|
private |
Definition at line 184 of file UDPClient.h.
|
staticprivate |
Definition at line 173 of file UDPClient.h.
|
private |
Definition at line 152 of file UDPClient.h.
|
private |
Definition at line 191 of file UDPClient.h.
|
private |
Definition at line 190 of file UDPClient.h.
|
private |
Definition at line 196 of file UDPClient.h.
|
private |
Definition at line 198 of file UDPClient.h.