19class ServerWorkerThreadPool;
25template <
typename CLIENT,
typename GROUP>
103 typename ClientKeyMap::iterator it =
clientKeyMap.find(clientKey);
104 CLIENT* client = it !=
clientKeyMap.end()?it->second:NULL;
105 if (client != NULL) {
106 client->acquireReference();
134 typename GroupKeyMap::iterator it =
groupKeyMap.find(groupKey);
135 GROUP* group = it !=
groupKeyMap.end()?it->second:NULL;
137 group->acquireReference();
158 typename ClientKeyMap::iterator it =
clientKeyMap.find(clientKey);
165 if (client->getKey() != clientKey) {
200 typename GroupKeyMap::iterator it =
groupKeyMap.find(groupKey);
207 if (group->getKey() != groupKey) {
Base class for network servers.
void setThreadPoolMaxElements(const unsigned int maxElements)
Sets up max number of elements in worker thread pool queue.
bool setGroupKey(GROUP *group, const std::string &groupKey)
sets a group identification key
ClientKeyMap clientKeyMap
ReadWriteLock clientKeyListsReadWriteLock
ClientKeySet getClientKeySet()
get a copy of current client keys
ClientKeySet clientKeySet
void setIOThreadCount(const unsigned int ioThreadCount)
Sets up the numbers of threads to handle IO and framing.
virtual ~Server()
destructor
bool setClientKey(CLIENT *client, const std::string &clientKey)
sets a client identification key
std::map< const std::string, CLIENT * > GroupKeyMap
void setWorkerThreadCount(const unsigned int workerThreadCount)
Sets up the number of workers that handle requests in thread pool.
std::map< const std::string, CLIENT * > ClientKeyMap
void closeClient(CLIENT *client)
closes a client connection
unsigned int workerThreadPoolMaxElements
unsigned int workerThreadPoolCount
unsigned int ioThreadCount
CLIENT * getClientByKey(const std::string &clientKey)
retrieve a client by key, the client reference is acquired, must be released after usage
std::set< CLIENT * > ClientSet
std::set< std::string > ClientKeySet
ReadWriteLock groupKeyListsReadWriteLock
Server(const std::string &name, const std::string &host, const unsigned int port, const unsigned int maxCCU)
void closeGroup(GROUP *group)
closes a group connection
std::set< std::string > GroupKeySet
ClientKeySet getGroupKeySet()
get a copy of current group keys
GROUP * getGroupByKey(const std::string &groupKey)
retrieve a group by key, the group reference is acquired, must be released after usage
Implementation for read/write lock.
void writeLock()
Locks for writing / exclusive lock.
void unlock()
Unlocks this read write lock.
void readLock()
Locks for reading / shared lock.