Mercurial > hg > orthanc-stone
annotate Applications/StoneApplicationContext.h @ 427:3f9017db1738 am-vsol-upgrade-radiography-export
wip
author | am@osimis.io |
---|---|
date | Fri, 23 Nov 2018 16:06:23 +0100 |
parents | c23df8b3433b |
children | 26b90b110719 b70e9be013e4 |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
134
4cff7b1ed31d
upgrade to year 2018
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium |
0 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
47 | 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. | |
0 | 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 | |
47 | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
0 | 18 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 **/ | |
20 | |
21 | |
22 #pragma once | |
23 | |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
24 #include "../Framework/Toolbox/IWebService.h" |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
25 #include "../Framework/Toolbox/OrthancApiClient.h" |
145 | 26 #include "../Framework/Viewport/WidgetViewport.h" |
0 | 27 |
28 #include <list> | |
29 | |
30 namespace OrthancStone | |
31 { | |
288 | 32 // a StoneApplicationContext contains the services that a StoneApplication |
33 // uses and that depends on the environment in which the Application executes. | |
34 // I.e, the StoneApplicationContext provides a WebService interface such that | |
35 // the StoneApplication can perform HTTP requests. In a WASM environment, | |
36 // the WebService is provided by the browser while, in a native environment, | |
37 // the WebService is provided by the OracleWebService (a C++ Http client) | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
38 |
288 | 39 class StoneApplicationContext : public boost::noncopyable |
0 | 40 { |
418 | 41 private: |
42 MessageBroker& broker_; | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
43 IWebService* webService_; |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
44 std::auto_ptr<OrthancApiClient> orthanc_; |
418 | 45 std::string orthancBaseUrl_; |
46 | |
47 void InitializeOrthanc(); | |
0 | 48 |
49 public: | |
418 | 50 StoneApplicationContext(MessageBroker& broker) : |
51 broker_(broker), | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
52 webService_(NULL) |
242 | 53 { |
54 } | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
55 |
402
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
56 virtual ~StoneApplicationContext() |
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
57 { |
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
58 } |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
59 |
418 | 60 MessageBroker& GetMessageBroker() |
61 { | |
62 return broker_; | |
63 } | |
64 | |
65 bool HasWebService() const | |
66 { | |
67 return webService_ != NULL; | |
68 } | |
69 | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
70 IWebService& GetWebService(); |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
71 |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
72 OrthancApiClient& GetOrthancApiClient(); |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
73 |
418 | 74 void SetWebService(IWebService& webService); |
75 | |
76 void SetOrthancBaseUrl(const std::string& baseUrl); | |
0 | 77 }; |
78 } |