TDME2 1.9.121
UDPServerClient.h
Go to the documentation of this file.
1#pragma once
2
3#include <stdint.h>
4
5#include <exception>
6#include <map>
7#include <sstream>
8#include <string>
9
10#include <tdme/tdme.h>
19
20using std::map;
21
25
26/**
27 * Base class for network UDP server clients
28 * @author Andreas Drewke
29 */
31 friend class UDPServer;
32 friend class UDPServerIOThread;
33
34public:
35 /**
36 * @brief public constructor should be called in any subclass of UDPNetworkServer
37 * @param clientId client id
38 * @param ip ip
39 * @param port port
40 */
41 UDPServerClient(const uint32_t clientId, const std::string& ip, const unsigned int port);
42
43 /**
44 * @brief Returns server
45 * @return server
46 */
48
49 /**
50 * @brief Get client id
51 * @return client id
52 */
53 const uint32_t getClientId();
54
55 /**
56 * @brief returns client's ip
57 * @return client ip
58 */
59 const string& getIp() const;
60
61 /**
62 * @brief returns client port
63 * @return client port
64 */
65 const unsigned int getPort() const;
66
67 /**
68 * @brief Client identification key
69 * @return client key
70 */
71 const string& getKey() const;
72
73 /**
74 * @brief sets the clients identification key
75 * @param &key client identification key
76 * @return if setting the key was succesful
77 */
78 const bool setKey(const string &key);
79
80 /**
81 * @brief Creates a frame to be used with send
82 * @return frame to be send
83 */
84 static stringstream* createFrame();
85
86 /**
87 * @brief Sends a frame to client, takes over ownership of frame
88 * @param frame frame data
89 * @param safe safe, requires ack and retransmission
90 * @param deleteFrame delete frame
91 */
92 void send(stringstream* frame, bool safe = true, bool deleteFrame = true);
93
94 /**
95 * @brief Checks if message has already been processed and sends an acknowlegdement to client / safe client messages
96 * @param messageId message id
97 */
98 bool processSafeMessage(const uint32_t messageId);
99
100 /**
101 * @return time passed until a retry was acknowledged
102 */
103 uint64_t getRetryTime(const uint8_t retries);
104
105 /**
106 * @brief fires an custom event
107 */
108 void fireEvent(const string &type);
109
110 /**
111 * @brief Shuts down this network client
112 */
113 void shutdown();
114
115protected:
116 /**
117 * @brief public destructor, should only be called implicitly by Reference::releaseReference()
118 */
119 virtual ~UDPServerClient();
120
121 /**
122 * @brief To be overwritten with a request handler, will be called from worker
123 * @param frame frame
124 * @param messageId message id
125 * @param retries retries
126 */
127 virtual void onRequest(stringstream* frame, const uint32_t messageId, const uint8_t retries) = 0;
128
129 /*
130 * @brief event method called if client will be closed, will be called from worker
131 */
132 virtual void onClose() = 0;
133
134 /**
135 * @brief Event, which will be called if frame has been received, defaults to worker thread pool
136 * @param frame frame
137 * @param messageId message id (upd server only)
138 * @param retries retries (udp server only)
139 */
140 virtual void onFrameReceived(stringstream* frame, const uint32_t messageId = 0, const uint8_t retries = 0);
141
142 /**
143 * @brief Shuts down this network client
144 */
145 void close();
146
147 /**
148 * @brief initiates this network client
149 */
150 void init();
151
152 //
155 uint32_t clientId;
156 std::string ip;
157 unsigned int port;
158
159private:
160 static const uint64_t MESSAGESSAFE_KEEPTIME = 5000L;
161 struct Message {
162 uint32_t messageId;
163 uint64_t time;
164 uint8_t receptions;
165 };
166 typedef map<uint32_t, Message> MessageMapSafe;
167
168 /**
169 * @brief Sends an connect message to client
170 */
171 void sendConnected();
172
173 /**
174 * @brief Clean up safe messages
175 */
176 void cleanUpSafeMessages();
177
178 //
179 volatile bool shutdownRequested;
182};
Base class for network server clients.
Definition: ServerClient.h:33
Base class for network UDP server clients.
void cleanUpSafeMessages()
Clean up safe messages.
void init()
initiates this network client
static stringstream * createFrame()
Creates a frame to be used with send.
void fireEvent(const string &type)
fires an custom event
void close()
Shuts down this network client.
uint64_t getRetryTime(const uint8_t retries)
const string & getIp() const
returns client's ip
void shutdown()
Shuts down this network client.
void send(stringstream *frame, bool safe=true, bool deleteFrame=true)
Sends a frame to client, takes over ownership of frame.
const string & getKey() const
Client identification key.
const unsigned int getPort() const
returns client port
virtual void onFrameReceived(stringstream *frame, const uint32_t messageId=0, const uint8_t retries=0)
Event, which will be called if frame has been received, defaults to worker thread pool.
const bool setKey(const string &key)
sets the clients identification key
const uint32_t getClientId()
Get client id.
UDPServer * getServer()
Returns server.
virtual ~UDPServerClient()
public destructor, should only be called implicitly by Reference::releaseReference()
UDPServerClient(const uint32_t clientId, const std::string &ip, const unsigned int port)
public constructor should be called in any subclass of UDPNetworkServer
virtual void onRequest(stringstream *frame, const uint32_t messageId, const uint8_t retries)=0
To be overwritten with a request handler, will be called from worker.
void sendConnected()
Sends an connect message to client.
bool processSafeMessage(const uint32_t messageId)
Checks if message has already been processed and sends an acknowlegdement to client / safe client mes...
Base class for network UDP servers.
Definition: UDPServer.h:39
Mutex implementation.
Definition: Mutex.h:27
std::exception Exception
Exception base class.
Definition: Exception.h:19