Mercurial > hg > orthanc-stone
annotate Platforms/Generic/OracleWebService.h @ 427:3f9017db1738 am-vsol-upgrade-radiography-export
wip
author | am@osimis.io |
---|---|
date | Fri, 23 Nov 2018 16:06:23 +0100 |
parents | aee3d7941c9b |
children | 3a8bcc45c221 b70e9be013e4 |
rev | line source |
---|---|
80 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
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 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
309 | 16 * |
80 | 17 * You should have received a copy of the GNU Affero General Public License |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
24 #include "../../Framework/Toolbox/IWebService.h" | |
25 #include "Oracle.h" | |
26 #include "WebServiceGetCommand.h" | |
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 | 29 #include "../../Applications/Generic/NativeStoneApplicationContext.h" |
80 | 30 |
31 namespace OrthancStone | |
32 { | |
288 | 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 | 36 class OracleWebService : public IWebService |
37 { | |
38 private: | |
39 Oracle& oracle_; | |
291 | 40 NativeStoneApplicationContext& context_; |
80 | 41 Orthanc::WebServiceParameters parameters_; |
42 | |
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 | 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 | 49 oracle_(oracle), |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
257
diff
changeset
|
50 context_(context), |
80 | 51 parameters_(parameters) |
52 { | |
53 } | |
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, |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
377
diff
changeset
|
56 const HttpHeaders& 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 | 58 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback, // takes ownership |
309 | 59 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback = NULL,// takes ownership |
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 | 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, |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
377
diff
changeset
|
66 const HttpHeaders& headers, |
300
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 | 69 MessageHandler<IWebService::HttpRequestSuccessMessage>* successCallback, // takes ownership |
309 | 70 MessageHandler<IWebService::HttpRequestErrorMessage>* failureCallback = NULL, // takes ownership |
71 unsigned int timeoutInSeconds = 60) | |
80 | 72 { |
309 | 73 oracle_.Submit(new WebServicePostCommand(broker_, successCallback, failureCallback, parameters_, uri, headers, timeoutInSeconds, body, payload, context_)); |
80 | 74 } |
242 | 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, |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
377
diff
changeset
|
77 const HttpHeaders& headers, |
315
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 | 85 }; |
86 } |