forked from uroni/urbackup_backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ServiceWorker.cpp
313 lines (271 loc) · 6.35 KB
/
ServiceWorker.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
/*************************************************************************
* UrBackup - Client/Server backup system
* Copyright (C) 2011-2016 Martin Raiber
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**************************************************************************/
#include "vld.h"
#include "Interface/Service.h"
#include "ServiceWorker.h"
#include "StreamPipe.h"
#include "Server.h"
#include "stringtools.h"
#include <stdlib.h>
CServiceWorker::CServiceWorker(IService *pService, std::string pName, IPipe * pExit, int pMaxClientsPerThread)
: exit(pExit), tid(0)
{
mutex=Server->createMutex();
nc_mutex=Server->createMutex();
cond=Server->createCondition();
name=pName;
service=pService;
nClients=0;
do_stop=false;
if(pMaxClientsPerThread>0)
{
max_clients=pMaxClientsPerThread;
}
else
{
std::string s_max_clients;
if((s_max_clients=Server->getServerParameter("max_worker_clients"))!="")
{
max_clients=atoi(s_max_clients.c_str());
}
else
{
max_clients=MAX_CLIENTS;
}
}
}
CServiceWorker::~CServiceWorker()
{
for(size_t i=0;i<clients.size();++i)
{
service->destroyClient( clients[i].first );
delete clients[i].second;
}
clients.clear();
Server->destroy(mutex);
Server->destroy(nc_mutex);
Server->destroy(cond);
}
void CServiceWorker::stop(void)
{
IScopedLock lock(mutex);
do_stop=true;
cond->notify_all();
}
namespace
{
class ScopedWorkStack
{
public:
ScopedWorkStack(std::stack<CServiceWorker::SCurrWork>& curr_work)
: curr_work(curr_work)
{
}
~ScopedWorkStack()
{
curr_work.pop();
}
private:
std::stack<CServiceWorker::SCurrWork>& curr_work;
};
}
void CServiceWorker::work(ICustomClient * skip_client)
{
if (clients.empty())
{
IScopedLock lock(mutex);
if (new_clients.empty() && !do_stop)
{
//Server->Log(name+": Sleeping..."+convert(Server->getTimeMS()), LL_DEBUG);
cond->wait(&lock);
//Server->Log(name+": Waking up..."+convert(Server->getTimeMS()), LL_DEBUG);
return;
}
else
{
return;
}
}
SCurrWork curr_work_c = { NULL, false };
curr_work.push(curr_work_c);
ScopedWorkStack work_stack(curr_work);
for (size_t i = 0; i<clients.size();)
{
if (clients[i].first == skip_client)
{
++i;
continue;
}
curr_work.top().client = clients[i].first;
bool b = clients[i].first->Run(this);
if (b == false)
{
IScopedLock lock(mutex);
//Server->Log(name+": Removing user"+convert(Server->getTimeMS()), LL_DEBUG);
if (clients[i].first->closeSocket())
{
delete clients[i].second;
}
service->destroyClient(clients[i].first);
clients.erase(clients.begin() + i);
IScopedLock lock2(nc_mutex);
--nClients;
}
else
{
++i;
}
if (curr_work.top().did_other_work)
{
return;
}
}
#ifdef _WIN32
fd_set fdset;
int max;
#else
std::vector<pollfd> conn;
std::vector<ICustomClient*> conn_clients;
#endif
#ifdef _WIN32
FD_ZERO(&fdset);
max = 0;
#else
conn.clear();
conn_clients.clear();
#endif
bool has_select_client = false;
for (size_t i = 0; i<clients.size(); ++i)
{
if (clients[i].first == skip_client)
{
continue;
}
if (clients[i].first->wantReceive())
{
SOCKET s = clients[i].second->getSocket();
#ifdef _WIN32
if ((_i32)s>max)
max = (_i32)s;
FD_SET(s, &fdset);
#else
pollfd nconn;
nconn.fd = s;
nconn.events = POLLIN;
nconn.revents = 0;
conn.push_back(nconn);
conn_clients.push_back(clients[i].first);
#endif
has_select_client = true;
}
}
if (has_select_client)
{
#ifdef _WIN32
timeval lon;
lon.tv_sec = 0;
lon.tv_usec = 10000;
_i32 rc = select(max + 1, &fdset, 0, 0, &lon);
#else
int rc = poll(&conn[0], conn.size(), 10);
#endif
if (rc>0)
{
#ifdef _WIN32
for (size_t i = 0; i<clients.size(); ++i)
{
if (clients[i].first == skip_client)
{
continue;
}
SOCKET s = clients[i].second->getSocket();
if (FD_ISSET(s, &fdset))
{
curr_work.top().client = clients[i].first;
//Server->Log("Incoming data for client..", LL_DEBUG);
clients[i].first->ReceivePackets(this);
if (curr_work.top().did_other_work)
{
return;
}
}
}
#else
for (size_t i = 0; i<conn.size(); ++i)
{
if (conn[i].revents != 0)
{
curr_work.top().client = clients[i].first;
conn_clients[i]->ReceivePackets(this);
if (curr_work.top().did_other_work)
{
return;
}
}
}
#endif
}
}
else if(skip_client==NULL)
{
Server->wait(10);
}
}
void CServiceWorker::addNewClients(void)
{
for(size_t i=0;i<new_clients.size();++i)
{
CStreamPipe *pipe=new CStreamPipe(new_clients[i].first);
ICustomClient *nc=service->createClient();
nc->Init(tid, pipe, new_clients[i].second);
clients.push_back( std::pair<ICustomClient*, CStreamPipe*>(nc, pipe) );
}
new_clients.clear();
}
void CServiceWorker::runOther()
{
curr_work.top().did_other_work = true;
work(curr_work.top().client);
}
void CServiceWorker::operator()(void)
{
tid=Server->getThreadID();
while(!do_stop)
{
{
IScopedLock lock(mutex);
addNewClients();
}
work(NULL);
}
Server->Log("ServiceWorker finished", LL_DEBUG);
exit->Write("ok");
}
int CServiceWorker::getAvailableSlots(void)
{
IScopedLock lock(nc_mutex);
return max_clients-nClients;
}
void CServiceWorker::AddClient(SOCKET pSocket, const std::string& endpoint)
{
IScopedLock lock(mutex);
new_clients.push_back( std::make_pair(pSocket, endpoint) );
cond->notify_all();
IScopedLock lock2(nc_mutex);
++nClients;
}