forked from jolibrain/deepdetect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.h
527 lines (488 loc) · 13.6 KB
/
services.h
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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
/**
* DeepDetect
* Copyright (c) 2014-2016 Emmanuel Benazera
* Author: Emmanuel Benazera <[email protected]>
*
* This file is part of deepdetect.
*
* deepdetect is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* deepdetect 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with deepdetect. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SERVICES_H
#define SERVICES_H
#include "utils/variant.hpp"
#include "mlservice.h"
#include "apidata.h"
#include "inputconnectorstrategy.h"
#include "imginputfileconn.h"
#include "txtinputfileconn.h"
#include "svminputfileconn.h"
#include "outputconnectorstrategy.h"
#include "caffelib.h"
#ifdef USE_TF
#include "tflib.h"
#endif
#ifdef USE_XGBOOST
#include "xgblib.h"
#endif
#ifdef USE_TSNE
#include "tsnelib.h"
#endif
#include <vector>
#include <mutex>
#include <chrono>
#include <iostream>
namespace dd
{
/* service types as variant type. */
typedef mapbox::util::variant<MLService<CaffeLib,ImgCaffeInputFileConn,SupervisedOutput,CaffeModel>,
MLService<CaffeLib,CSVCaffeInputFileConn,SupervisedOutput,CaffeModel>,
MLService<CaffeLib,TxtCaffeInputFileConn,SupervisedOutput,CaffeModel>,
MLService<CaffeLib,SVMCaffeInputFileConn,SupervisedOutput,CaffeModel>,
MLService<CaffeLib,ImgCaffeInputFileConn,UnsupervisedOutput,CaffeModel>,
MLService<CaffeLib,CSVCaffeInputFileConn,UnsupervisedOutput,CaffeModel>,
MLService<CaffeLib,TxtCaffeInputFileConn,UnsupervisedOutput,CaffeModel>,
#ifdef USE_TF
MLService<TFLib,ImgTFInputFileConn,SupervisedOutput,TFModel>,
MLService<TFLib,ImgTFInputFileConn,UnsupervisedOutput,TFModel>,
#endif
MLService<CaffeLib,SVMCaffeInputFileConn,UnsupervisedOutput,CaffeModel>
#ifdef USE_XGBOOST
,MLService<XGBLib,CSVXGBInputFileConn,SupervisedOutput,XGBModel>,
MLService<XGBLib,SVMXGBInputFileConn,SupervisedOutput,XGBModel>,
MLService<XGBLib,TxtXGBInputFileConn,SupervisedOutput,XGBModel>
#endif
#ifdef USE_TSNE
,MLService<TSNELib,CSVTSNEInputFileConn,UnsupervisedOutput,TSNEModel>
#endif
> mls_variant_type;
class ServiceForbiddenException : public std::exception
{
public:
ServiceForbiddenException(const std::string &s)
:_s(s) {}
~ServiceForbiddenException() {}
const char* what() const noexcept { return _s.c_str(); }
private:
std::string _s;
};
class output
{
public:
output() {}
output(const int &status, const APIData &out)
:_status(status),_out(out)
{}
~output()
{}
int _status = 0;
APIData _out;
};
class visitor_predict : public mapbox::util::static_visitor<output>
{
public:
visitor_predict() {}
~visitor_predict() {}
template<typename T>
output operator() (T &mllib)
{
int r = mllib.predict_job(_ad,_out);
return output(r,_out);
}
APIData _ad;
APIData _out;
};
/**
* \brief training job visitor class
*/
class visitor_train : public mapbox::util::static_visitor<output>
{
public:
visitor_train() {}
~visitor_train() {}
template<typename T>
output operator() (T &mllib)
{
int r = mllib.train_job(_ad,_out);
return output(r,_out);
}
APIData _ad;
APIData _out;
};
/**
* \brief training job status visitor class
*/
class visitor_train_status : public mapbox::util::static_visitor<output>
{
public:
visitor_train_status() {}
~visitor_train_status() {}
template<typename T>
output operator() (T &mllib)
{
int r = mllib.training_job_status(_ad,_out);
return output(r,_out);
}
APIData _ad;
APIData _out;
};
/**
* \brief training job deletion class
*/
class visitor_train_delete : public mapbox::util::static_visitor<output>
{
public:
visitor_train_delete() {}
~visitor_train_delete() {}
template<typename T>
output operator() (T &mllib)
{
int r = mllib.training_job_delete(_ad,_out);
return output(r,_out);
}
APIData _ad;
APIData _out;
};
/**
* \brief service initialization visitor class
*/
class visitor_init : public mapbox::util::static_visitor<>
{
public:
visitor_init(const APIData &ad)
:_ad(ad) {}
~visitor_init() {}
template<typename T>
void operator() (T &mllib)
{
mllib.init(_ad);
}
APIData _ad;
};
/**
* \brief service deletion visitor class
*/
class visitor_clear : public mapbox::util::static_visitor<>
{
public:
visitor_clear(const APIData &ad)
:_ad(ad) {}
~visitor_clear() {}
template<typename T>
void operator() (T &mllib)
{
mllib.kill_jobs();
if (_ad.has("clear"))
{
std::string clear = _ad.get("clear").get<std::string>();
if (clear == "full")
mllib.clear_full();
else if (clear == "lib")
mllib.clear_mllib(_ad);
}
}
APIData _ad;
};
/**
* \brief class for deepetect machine learning services.
* Each service instanciates a machine learning library and channels
* data for training and prediction along with parameters from API
* Service uses a variant type and store instances in a single iterable container.
*/
class Services
{
public:
Services() {}
~Services() {}
/**
* \brief get number of services
* @return number of service instances
*/
size_t services_size() const
{
return _mlservices.size();
}
/**
* \brief add a new service
* @param sname service name
* @param mls service object as variant
* @param ad optional root data object holding service's parameters
*/
void add_service(const std::string &sname,
mls_variant_type &&mls,
const APIData &ad=APIData())
{
std::unordered_map<std::string,mls_variant_type>::const_iterator hit;
if ((hit=_mlservices.find(sname))!=_mlservices.end())
{
throw ServiceForbiddenException("Service already exists");
}
visitor_init vi(ad);
try
{
mapbox::util::apply_visitor(vi,mls);
std::lock_guard<std::mutex> lock(_mlservices_mtx);
_mlservices.insert(std::pair<std::string,mls_variant_type>(sname,std::move(mls)));
}
catch (InputConnectorBadParamException &e)
{
LOG(ERROR) << "service creation input connector bad param: " << e.what() << std::endl;
throw;
}
catch (MLLibBadParamException &e)
{
LOG(ERROR) << "service creation mllib bad param: " << e.what() << std::endl;
throw;
}
catch (MLLibInternalException &e)
{
LOG(ERROR) << "service creation mllib internal error: " << e.what() << std::endl;
throw;
}
catch(...)
{
LOG(ERROR) << "service creation call failed\n";
throw;
}
}
/**
* \brief removes and destroys a service
* @param sname service name
* @param ad root data object
* @return true if service was removed, false otherwise (i.e. not found)
*/
bool remove_service(const std::string &sname,
const APIData &ad)
{
std::lock_guard<std::mutex> lock(_mlservices_mtx);
auto hit = _mlservices.begin();
if ((hit=_mlservices.find(sname))!=_mlservices.end())
{
if (ad.has("clear"))
{
visitor_clear vc(ad);
try
{
mapbox::util::apply_visitor(vc,(*hit).second);
}
catch (MLLibBadParamException &e)
{
LOG(ERROR) << "service " << sname << " mllib bad param: " << e.what() << std::endl;
throw;
}
catch (MLLibInternalException &e)
{
LOG(ERROR) << "service " << sname << " mllib internal error: " << e.what() << std::endl;
throw;
}
catch(...)
{
LOG(ERROR) << "service " << sname << " delete service call failed\n";
throw;
}
}
_mlservices.erase(hit);
return true;
}
LOG(ERROR) << "cannot find service " << sname << " for removal\n";
return false;
}
/**
* \brief get a service position as iterator
* @param sname service name
* @return service position, end of container if not found
*/
std::unordered_map<std::string,mls_variant_type>::iterator get_service_it(const std::string &sname)
{
std::unordered_map<std::string,mls_variant_type>::iterator hit;
if ((hit=_mlservices.find(sname))!=_mlservices.end())
return hit;
return _mlservices.end();
}
/**
* \brief checks whether a service exists
* @param sname service name
* return true if service exists, false otherwise
*/
bool service_exists(const std::string &sname)
{
auto hit = get_service_it(sname);
if (hit == _mlservices.end())
return false;
return true;
}
/**
* \brief train a statistical model using a service
* @param ad root data object
* @param sname service name
* @param out output data object
*/
int train(const APIData &ad, const std::string &sname, APIData &out)
{
std::chrono::time_point<std::chrono::system_clock> tstart = std::chrono::system_clock::now();
visitor_train vt;
vt._ad = ad;
output pout;
try
{
auto hit = get_service_it(sname);
pout = mapbox::util::apply_visitor(vt,(*hit).second);
}
catch (InputConnectorBadParamException &e)
{
LOG(ERROR) << "service " << sname << " mllib bad param: " << e.what() << std::endl;
pout._status = -2;
throw;
}
catch (MLLibBadParamException &e)
{
LOG(ERROR) << "service " << sname << " mllib bad param: " << e.what() << std::endl;
pout._status = -2;
throw;
}
catch (MLLibInternalException &e)
{
LOG(ERROR) << "service " << sname << " mllib internal error: " << e.what() << std::endl;
pout._status = -1;
throw;
}
catch(...)
{
LOG(ERROR) << "service " << sname << " training call failed\n";
pout._status = -1;
throw;
}
out = pout._out;
if (ad.has("async") && ad.get("async").get<bool>())
{
out.add("job",pout._status); // status holds the job id...
out.add("status","running");
return 0; // status is OK i.e. the job has started.
}
else
{
std::chrono::time_point<std::chrono::system_clock> tstop = std::chrono::system_clock::now();
double elapsed = std::chrono::duration_cast<std::chrono::seconds>(tstop-tstart).count();
out.add("time",elapsed);
}
return pout._status;
}
/**
* \brief access to training job status
* @param ad root data object
* @param sname service name
* @param out output data object
*/
int train_status(const APIData &ad, const std::string &sname, APIData &out)
{
visitor_train_status vt;
vt._ad = ad;
output pout;
try
{
auto hit = get_service_it(sname);
pout = mapbox::util::apply_visitor(vt,(*hit).second);
}
catch(...)
{
LOG(ERROR) << "service " << sname << " training status call failed\n";
pout._status = -1;
throw;
}
out = pout._out;
return pout._status;
}
/**
* \brief kills a training job
* @param ad root data object
* @param sname service name
* @param output data object
*/
int train_delete(const APIData &ad, const std::string &sname, APIData &out)
{
visitor_train_delete vt;
vt._ad = ad;
output pout;
try
{
auto hit = get_service_it(sname);
pout = mapbox::util::apply_visitor(vt,(*hit).second);
}
catch(...)
{
LOG(ERROR) << "service " << sname << " training delete call failed\n";
pout._status = -1;
throw;
}
out = pout._out;
return pout._status;
}
/**
* \brief prediction from statistical model
* @param ad root data object
* @param sname service name
* @param out output data object
*/
int predict(const APIData &ad, const std::string &sname, APIData &out)
{
std::chrono::time_point<std::chrono::system_clock> tstart = std::chrono::system_clock::now();
visitor_predict vp;
vp._ad = ad;
output pout;
try
{
auto hit = get_service_it(sname);
pout = mapbox::util::apply_visitor(vp,(*hit).second);
}
catch (InputConnectorBadParamException &e)
{
LOG(ERROR) << "service " << sname << " mllib bad param: " << e.what() << std::endl;
pout._status = -2;
throw;
}
catch (MLLibBadParamException &e)
{
LOG(ERROR) << "service " << sname << " mllib bad param: " << e.what() << std::endl;
pout._status = -2;
throw;
}
catch (MLLibInternalException &e)
{
LOG(ERROR) << "service " << sname << " mllib internal error: " << e.what() << std::endl;
pout._status = -1;
throw;
}
catch (MLServiceLockException &e)
{
LOG(ERROR) << "service " << sname << " mllib lock error: " << e.what() << std::endl;
pout._status = -3;
throw;
}
catch(...)
{
LOG(ERROR) << "service " << sname << " prediction call failed\n";
pout._status = -1;
throw;
}
out = pout._out;
std::chrono::time_point<std::chrono::system_clock> tstop = std::chrono::system_clock::now();
double elapsed = std::chrono::duration_cast<std::chrono::milliseconds>(tstop-tstart).count();
out.add("time",elapsed);
return pout._status;
}
std::unordered_map<std::string,mls_variant_type> _mlservices; /**< container of instanciated services. */
protected:
std::mutex _mlservices_mtx; /**< mutex around adding/removing services. */
};
}
#endif