TDME2 1.9.121
UDPServerIOThread.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include <map>
6#include <queue>
7#include <utility>
8
10
11#include <tdme/tdme.h>
16
19
20using std::map;
21using std::queue;
22
29
30/**
31 * UDP Network server IO thread
32 * @author Andreas Drewke
33 */
35 friend class UDPServer;
36 friend class UDPServerClient;
37
38private:
39 const static int MESSAGEACK_RESENDTIMES_TRIES = 7;
41 const static int MESSAGEQUEUE_SEND_BATCH_SIZE = 100;
42 const static uint64_t MESSAGEACK_KEEPTIME = 5000L;
43 struct Message {
44 string ip;
45 unsigned int port;
46 uint64_t time;
47 uint8_t messageType;
48 uint32_t clientId;
49 uint32_t messageId;
50 uint8_t retries;
51 char message[512];
52 size_t bytes;
53 };
54 typedef queue<Message*> MessageQueue;
55 typedef map<uint32_t, Message*> MessageMapAck;
56
57 /**
58 * @brief public constructor should be called in TCPServer
59 * @param id id
60 * @param *server server
61 * @param maxCCU max ccu
62 */
63 UDPServerIOThread(const unsigned int id, UDPServer *server, const unsigned int maxCCU);
64
65 /**
66 * @brief thread program
67 */
68 virtual void run();
69
70 /**
71 * @brief pushes a message to be send, takes over ownership of frame
72 * @param client client
73 * @param messageType message type
74 * @param messageId message id
75 * @param frame frame to be send
76 * @param safe safe, requires ack and retransmission
77 * @param deleteFrame delete frame
78 * @throws tdme::network::udpserver::NetworkServerException
79 */
80 void sendMessage(const UDPServerClient* client, const uint8_t messageType, const uint32_t messageId, stringstream* frame, const bool safe, const bool deleteFrame);
81
82 /**
83 * @brief Processes an acknowlegdement reception
84 * @param client client
85 * @param messageId message id
86 * @throws tdme::network::udpserver::NetworkServerException
87 */
88 void processAckReceived(UDPServerClient* client, const uint32_t messageId);
89
90 /**
91 * @brief Clean up timed out safe messages, reissue messages not beeing acknowlegded from client
92 */
93 void processAckMessages();
94
95 //
96 unsigned int id;
98 unsigned int maxCCU;
100
103
106
108};
109
Base class for network UDP server clients.
void sendMessage(const UDPServerClient *client, const uint8_t messageType, const uint32_t messageId, stringstream *frame, const bool safe, const bool deleteFrame)
pushes a message to be send, takes over ownership of frame
void processAckMessages()
Clean up timed out safe messages, reissue messages not beeing acknowlegded from client.
void processAckReceived(UDPServerClient *client, const uint32_t messageId)
Processes an acknowlegdement reception.
UDPServerIOThread(const unsigned int id, UDPServer *server, const unsigned int maxCCU)
public constructor should be called in TCPServer
static const uint64_t MESSAGEACK_RESENDTIMES[MESSAGEACK_RESENDTIMES_TRIES]
Base class for network UDP servers.
Definition: UDPServer.h:39
Interface to kernel event mechanismns.
Class representing a UDP socket.
Definition: UDPSocket.h:27
Mutex implementation.
Definition: Mutex.h:27
Base class for threads.
Definition: Thread.h:26