TDME2 1.9.121
ServerWorkerThread.cpp
Go to the documentation of this file.
1#include <exception>
2#include <string>
3#include <typeinfo>
4
5#include <tdme/tdme.h>
14#include <tdme/utilities/RTTI.h>
15
16using std::string;
17using std::to_string;
18
26
27ServerWorkerThread::ServerWorkerThread(const unsigned int id, ServerWorkerThreadPool* threadPool) :
28 Thread("nioworkerthread"),
29 id(id),
30 threadPool(threadPool) {
31 //
32}
33
35}
36
38 Console::println("ServerWorkerThread[" + to_string(id) + "]::run(): start");
39
40 // wait on startup barrier
42
43 ServerRequest* request;
44 while((request = threadPool->getElement()) != NULL) {
45 // get request parameter
46 ServerRequest::RequestType requestType = request->getRequestType();
47 ServerClient* client = NULL;
48 ServerGroupBase* group = NULL;
49
50 // handle request types
51 switch(requestType) {
53 client = (ServerClient*)request->getObject();
54 stringstream* frame = request->getMessageFrame();
55 uint32_t messageId = request->getMessageId();
56 uint8_t retries = request->getMessageRetries();
57
58 // handle request
59 try {
60 client->onRequest(frame, messageId, retries);
61 } catch(Exception& exception) {
62 Console::println(
63 "ServerWorkerThread[" +
64 to_string(id) +
65 "]::run(): client: request: " +
66 (RTTI::demangle(typeid(exception).name())) +
67 ": " +
68 (exception.what())
69 );
70
71 // unhandled exception, so shutdown the client
72 client->shutdown();
73 }
74
75 // delete stream
76 delete frame;
77
78 //
79 break;
80 }
82 client = (ServerClient*)request->getObject();
83 // handle close
84 try {
85 client->onInit();
86 } catch(Exception& exception) {
87 Console::println(
88 "ServerWorkerThread[" +
89 to_string(id) +
90 "]::run(): client: init: " +
91 (RTTI::demangle(typeid(exception).name())) +
92 ": " +
93 (exception.what())
94 );
95 }
96 break;
97 }
99 client = (ServerClient*)request->getObject();
100 // handle close
101 try {
102 client->onClose();
103 } catch(Exception& exception) {
104 Console::println(
105 "ServerWorkerThread[" +
106 to_string(id) +
107 "]::run(): client: close: " +
108 (RTTI::demangle(typeid(exception).name())) +
109 ": " +
110 (exception.what())
111 );
112 }
113 break;
114 }
116 client = (ServerClient*)request->getObject();
117 // handle close
118 try {
119 client->onCustom(request->getCustomEvent());
120 } catch(Exception& exception) {
121 Console::println(
122 "ServerWorkerThread[" +
123 to_string(id) +
124 "]::run(): client: custom: " +
125 (RTTI::demangle(typeid(exception).name())) +
126 ": " +
127 (exception.what())
128 );
129 }
130 break;
131 }
133 group = (ServerGroupBase*)request->getObject();
134 // handle close
135 try {
136 group->onInit();
137 } catch(Exception& exception) {
138 Console::println(
139 "ServerWorkerThread[" +
140 to_string(id) +
141 "]::run(): group: init: " +
142 (RTTI::demangle(typeid(exception).name())) +
143 ": " +
144 (exception.what())
145 );
146 }
147 break;
148 }
150 group = (ServerGroupBase*)request->getObject();
151 // handle close
152 try {
153 group->onClose();
154 } catch(Exception& exception) {
155 Console::println(
156 "ServerWorkerThread[" +
157 to_string(id) +
158 "]::run(): group: close: " +
159 (RTTI::demangle(typeid(exception).name())) +
160 ": " +
161 (exception.what())
162 );
163 }
164 break;
165 }
167 group = (ServerGroupBase*)request->getObject();
168 // handle close
169 try {
170 group->onCustomEvent(request->getCustomEvent());
171 } catch(Exception& exception) {
172 Console::println(
173 "ServerWorkerThread[" +
174 to_string(id) +
175 "]::run(): group: custom: " +
176 (RTTI::demangle(typeid(exception).name())) +
177 ": " +
178 (exception.what())
179 );
180 }
181 break;
182 }
183 }
184
185 // release reference
186 if (client != NULL) client->releaseReference();
187 if (group != NULL) group->releaseReference();
188
189 // delete request
190 delete(request);
191 }
192
193 //
194 Console::println("ServerWorkerThread[" + to_string(id) + "]::run(): done");
195}
Base class for network server clients.
Definition: ServerClient.h:33
virtual void shutdown()=0
Shuts down this network client.
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.
virtual void onCustom(const string &type)=0
Base class for network server group.
virtual void onCustomEvent(const string &type)=0
Base class for network server groups.
Definition: ServerGroup.h:34
const uint32_t getMessageId()
Returns associated message id (udp server only)
Definition: ServerRequest.h:96
const RequestType getRequestType()
Returns the request type.
Definition: ServerRequest.h:65
void * getObject()
Returns the associated object.
Definition: ServerRequest.h:73
const uint8_t getMessageRetries()
Returns number of message retries (udp server only)
stringstream * getMessageFrame()
Returns the associated request message frame stream.
Definition: ServerRequest.h:88
Simple server worker thread pool class.
bool wait()
Waits on barrier.
Definition: Barrier.cpp:31
T * getElement()
Gets an element from this queue, if no element exists yet the calling thread will be blocked until an...
Definition: Queue.h:60
Base class for threads.
Definition: Thread.h:26
Console class.
Definition: Console.h:26
Run time type information utility class.
Definition: RTTI.h:14
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20
std::exception Exception
Exception base class.
Definition: Exception.h:19