TDME2 1.9.121
Server.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <set>
5#include <string>
6
7#include <tdme/tdme.h>
11
14
15namespace tdme {
16namespace network {
17namespace udpserver {
18
19class ServerWorkerThreadPool;
20
21/**
22 * Base class for network servers
23 * @author Andreas Drewke
24 */
25template <typename CLIENT, typename GROUP>
26class Server {
27public:
28 typedef std::set<std::string> ClientKeySet;
29 typedef std::set<std::string> GroupKeySet;
30
31 /**
32 * @brief Public constructor
33 * @param name server name
34 * @param host host where to bind the server socket
35 * @param port port to listen on
36s * @param maxCCU max ccu
37 */
38 Server(const std::string& name, const std::string& host, const unsigned int port, const unsigned int maxCCU) :
39 name(name),
40 host(host),
41 port(port),
43 startUpBarrier(NULL),
44 clientKeyListsReadWriteLock("nioserver_clientlist"),
45 groupKeyListsReadWriteLock("nioserver_grouplist"),
49 //
50 }
51
52 /**
53 * @brief Sets up the numbers of threads to handle IO and framing
54 * @param ioThreadCount IO thread count
55 */
56 void setIOThreadCount(const unsigned int ioThreadCount) {
57 this->ioThreadCount = ioThreadCount;
58 }
59
60 /**
61 * @brief Sets up the number of workers that handle requests in thread pool
62 * @param workerThreadCount number of workers in thread pool
63 */
64 void setWorkerThreadCount(const unsigned int workerThreadCount) {
65 workerThreadPoolCount = workerThreadCount;
66 }
67
68 /**
69 * @brief Sets up max number of elements in worker thread pool queue
70 * @param maxElements max elements
71 */
72 void setThreadPoolMaxElements(const unsigned int maxElements) {
73 workerThreadPoolMaxElements = maxElements;
74 }
75
76 /**
77 * @brief destructor
78 */
79 virtual ~Server() {
80 }
81
82 /**
83 * @brief get a copy of current client keys
84 * @return client list
85 */
87 // make a copy of the client key set
88 ClientKeySet _clientKeySet;
90 _clientKeySet = clientKeySet;
92 // return copy
93 return _clientKeySet;
94 }
95
96 /**
97 * @brief retrieve a client by key, the client reference is acquired, must be released after usage
98 * @param clientKey client identification key
99 * @return client or NULL
100 */
101 CLIENT* getClientByKey(const std::string& clientKey) {
103 typename ClientKeyMap::iterator it = clientKeyMap.find(clientKey);
104 CLIENT* client = it != clientKeyMap.end()?it->second:NULL;
105 if (client != NULL) {
106 client->acquireReference();
107 }
109 //
110 return client;
111 }
112
113 /**
114 * @brief get a copy of current group keys
115 * @return group list
116 */
118 // make a copy of the group key set
119 GroupKeySet _groupKeySet;
121 _groupKeySet = groupKeySet;
123 // return copy
124 return _groupKeySet;
125 }
126
127 /**
128 * @brief retrieve a group by key, the group reference is acquired, must be released after usage
129 * @param groupKey group identification key
130 * @return group or NULL
131 */
132 GROUP* getGroupByKey(const std::string& groupKey) {
134 typename GroupKeyMap::iterator it = groupKeyMap.find(groupKey);
135 GROUP* group = it != groupKeyMap.end()?it->second:NULL;
136 if (group != NULL) {
137 group->acquireReference();
138 }
140 //
141 return group;
142 }
143
144protected:
145 typedef std::map<const std::string, CLIENT*> ClientKeyMap;
146 typedef std::map<const std::string, CLIENT*> GroupKeyMap;
147 typedef std::set<CLIENT*> ClientSet;
148
149 /**
150 * @brief sets a client identification key
151 * @param client client
152 * @param &clientKey client identification key
153 * @return if setting the key was successful
154 */
155 bool setClientKey(CLIENT* client, const std::string &clientKey) {
157 // set new client key association
158 typename ClientKeyMap::iterator it = clientKeyMap.find(clientKey);
159 if (it != clientKeyMap.end()) {
161 // nope, we could't set the key
162 return false;
163 }
164 // remove old client key association if changed
165 if (client->getKey() != clientKey) {
166 clientKeyMap.erase(client->getKey());
167 }
168 // set client in map
169 clientKeyMap.insert(make_pair(clientKey, client));
170 // set client key in set
171 clientKeySet.insert(clientKey);
173 // success
174 return true;
175 }
176
177 /**
178 * @brief closes a client connection
179 * @param client client
180 */
181 void closeClient(CLIENT* client) {
183 // erase client in client map
184 clientKeyMap.erase(client->getKey());
185 // erase client key in key set
186 clientKeySet.erase(client->getKey());
187 //
189 }
190
191 /**
192 * @brief sets a group identification key
193 * @param group group
194 * @param &groupKey group identification key
195 * @return if setting the key was successful
196 */
197 bool setGroupKey(GROUP* group, const std::string &groupKey) {
199 // set new client key association
200 typename GroupKeyMap::iterator it = groupKeyMap.find(groupKey);
201 if (it != groupKeyMap.end()) {
203 // nope, we could't set the key
204 return false;
205 }
206 // remove old client key association if changed
207 if (group->getKey() != groupKey) {
208 groupKeyMap.erase(group->getKey());
209 }
210 // set group in map
211 groupKeyMap.insert(make_pair(groupKey, group));
212 // set client key in set
213 groupKeySet.insert(groupKey);
215 // success
216 return true;
217 }
218
219 /**
220 * @brief closes a group connection
221 * @param group group
222 */
223 void closeGroup(GROUP* group) {
225 // erase client in client map
226 groupKeyMap.erase(group->getKey());
227 // erase client key in key set
228 groupKeySet.erase(group->getKey());
229 //
231 }
232
233 std::string name;
234 std::string host;
235 unsigned int port;
236 unsigned int maxCCU;
237
239
242
244
247
249
250 unsigned int ioThreadCount;
253};
254
255};
256};
257};
Base class for network servers.
Definition: Server.h:26
void setThreadPoolMaxElements(const unsigned int maxElements)
Sets up max number of elements in worker thread pool queue.
Definition: Server.h:72
bool setGroupKey(GROUP *group, const std::string &groupKey)
sets a group identification key
Definition: Server.h:197
ReadWriteLock clientKeyListsReadWriteLock
Definition: Server.h:243
ClientKeySet getClientKeySet()
get a copy of current client keys
Definition: Server.h:86
void setIOThreadCount(const unsigned int ioThreadCount)
Sets up the numbers of threads to handle IO and framing.
Definition: Server.h:56
virtual ~Server()
destructor
Definition: Server.h:79
bool setClientKey(CLIENT *client, const std::string &clientKey)
sets a client identification key
Definition: Server.h:155
std::map< const std::string, CLIENT * > GroupKeyMap
Definition: Server.h:146
void setWorkerThreadCount(const unsigned int workerThreadCount)
Sets up the number of workers that handle requests in thread pool.
Definition: Server.h:64
std::map< const std::string, CLIENT * > ClientKeyMap
Definition: Server.h:145
void closeClient(CLIENT *client)
closes a client connection
Definition: Server.h:181
unsigned int workerThreadPoolMaxElements
Definition: Server.h:252
unsigned int workerThreadPoolCount
Definition: Server.h:251
CLIENT * getClientByKey(const std::string &clientKey)
retrieve a client by key, the client reference is acquired, must be released after usage
Definition: Server.h:101
std::set< CLIENT * > ClientSet
Definition: Server.h:147
std::set< std::string > ClientKeySet
Definition: Server.h:28
ReadWriteLock groupKeyListsReadWriteLock
Definition: Server.h:248
Server(const std::string &name, const std::string &host, const unsigned int port, const unsigned int maxCCU)
Definition: Server.h:38
void closeGroup(GROUP *group)
closes a group connection
Definition: Server.h:223
std::set< std::string > GroupKeySet
Definition: Server.h:29
ClientKeySet getGroupKeySet()
get a copy of current group keys
Definition: Server.h:117
GROUP * getGroupByKey(const std::string &groupKey)
retrieve a group by key, the group reference is acquired, must be released after usage
Definition: Server.h:132
Barrier implementation.
Definition: Barrier.h:21
Implementation for read/write lock.
Definition: ReadWriteLock.h:21
void writeLock()
Locks for writing / exclusive lock.
void unlock()
Unlocks this read write lock.
void readLock()
Locks for reading / shared lock.
Definition: fwd-tdme.h:4