annotate Platforms/Generic/OracleWebService.h @ 377:8eb4fe74000f

refactoring
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 05 Nov 2018 16:18:27 +0100
parents aad37d0b6407
children aee3d7941c9b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
1 /**
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
2 * Stone of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
4 * Department, University Hospital of Liege, Belgium
135
e2fe9352f240 upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents: 80
diff changeset
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
6 *
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
7 * This program is free software: you can redistribute it and/or
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
8 * modify it under the terms of the GNU Affero General Public License
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
9 * as published by the Free Software Foundation, either version 3 of
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
10 * the License, or (at your option) any later version.
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
11 *
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
12 * This program is distributed in the hope that it will be useful, but
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
15 * Affero General Public License for more details.
309
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
16 *
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
17 * You should have received a copy of the GNU Affero General Public License
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
19 **/
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
21
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
22 #pragma once
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
23
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
24 #include "../../Framework/Toolbox/IWebService.h"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
25 #include "Oracle.h"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
26 #include "WebServiceGetCommand.h"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
27 #include "WebServicePostCommand.h"
315
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
28 #include "WebServiceDeleteCommand.h"
291
87376a645ee1 renaming
am@osimis.io
parents: 288
diff changeset
29 #include "../../Applications/Generic/NativeStoneApplicationContext.h"
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
30
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
31 namespace OrthancStone
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
32 {
288
8c8da145fefa renamings and doc
am@osimis.io
parents: 274
diff changeset
33 // The OracleWebService performs HTTP requests in a native environment.
295
b04b13810540 unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents: 291
diff changeset
34 // It uses a thread pool to handle multiple HTTP requests in a same time.
b04b13810540 unified CMakeLists.txt into a single file for WASM/Native + bootstrap Command (to rework) + doc
am@osimis.io
parents: 291
diff changeset
35 // It works asynchronously to mimick the behaviour of the WebService running in a WASM environment.
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
36 class OracleWebService : public IWebService
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
37 {
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
38 private:
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
39 Oracle& oracle_;
291
87376a645ee1 renaming
am@osimis.io
parents: 288
diff changeset
40 NativeStoneApplicationContext& context_;
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
41 Orthanc::WebServiceParameters parameters_;
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
42
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
43 public:
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents: 244
diff changeset
44 OracleWebService(MessageBroker& broker,
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents: 244
diff changeset
45 Oracle& oracle,
271
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
46 const Orthanc::WebServiceParameters& parameters,
291
87376a645ee1 renaming
am@osimis.io
parents: 288
diff changeset
47 NativeStoneApplicationContext& context) :
251
192e6e349e69 first usage of new message system (in SDL only)
am@osimis.io
parents: 244
diff changeset
48 IWebService(broker),
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
49 oracle_(oracle),
271
46c5296d867e OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents: 257
diff changeset
50 context_(context),
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
51 parameters_(parameters)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
52 {
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
53 }
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
54
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 295
diff changeset
55 virtual void GetAsync(const std::string& uri,
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 295
diff changeset
56 const Headers& headers,
300
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
57 Orthanc::IDynamicObject* payload, // takes ownership
301
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
58 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback, // takes ownership
309
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
59 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback = NULL,// takes ownership
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
60 unsigned int timeoutInSeconds = 60)
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 295
diff changeset
61 {
309
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
62 oracle_.Submit(new WebServiceGetCommand(broker_, successCallback, failureCallback, parameters_, uri, headers, timeoutInSeconds, payload, context_));
299
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 295
diff changeset
63 }
3897f9f28cfa backup work in progress: updated messaging framework with ICallable
am@osimis.io
parents: 295
diff changeset
64
300
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
65 virtual void PostAsync(const std::string& uri,
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
66 const Headers& headers,
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
67 const std::string& body,
b4abaeb783b1 messaging refactoring almost complete: works fine in native
am@osimis.io
parents: 299
diff changeset
68 Orthanc::IDynamicObject* payload, // takes ownership
301
547e1cf7aa7b cleanup
am@osimis.io
parents: 300
diff changeset
69 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback, // takes ownership
309
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
70 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback = NULL, // takes ownership
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
71 unsigned int timeoutInSeconds = 60)
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
72 {
309
14ef1227120f web services: better handling of failures
am@osimis.io
parents: 301
diff changeset
73 oracle_.Submit(new WebServicePostCommand(broker_, successCallback, failureCallback, parameters_, uri, headers, timeoutInSeconds, body, payload, context_));
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
74 }
242
092db46c6291 improved SDL/Wasm unification
am@osimis.io
parents: 135
diff changeset
75
315
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
76 virtual void DeleteAsync(const std::string& uri,
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
77 const Headers& headers,
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
78 Orthanc::IDynamicObject* payload,
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
79 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback,
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
80 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback = NULL,
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
81 unsigned int timeoutInSeconds = 60)
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
82 {
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
83 oracle_.Submit(new WebServiceDeleteCommand(broker_, successCallback, failureCallback, parameters_, uri, headers, timeoutInSeconds, payload, context_));
aad37d0b6407 Added LayerWidget::RemoveLayer + DELETE commands in WebService
am@osimis.io
parents: 309
diff changeset
84 }
80
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
85 };
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff changeset
86 }