Mercurial > hg > orthanc-stone
annotate Applications/StoneApplicationContext.h @ 525:2549363fadc3 am-touch-events
Close branch am-touch-events.
author | Alain Mazy <am@osimis.io> |
---|---|
date | Tue, 12 Mar 2019 17:29:12 +0000 |
parents | aa00a49444c6 |
children | 1201b12eb9f8 |
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 | |
439 | 5 * Copyright (C) 2017-2019 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" |
431
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
25 #include "../Framework/Toolbox/IDelayedCallExecutor.h" |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
26 #include "../Framework/Toolbox/OrthancApiClient.h" |
145 | 27 #include "../Framework/Viewport/WidgetViewport.h" |
0 | 28 |
466
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
29 |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
30 #ifdef _MSC_VER |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
31 #if _MSC_VER > 1910 |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
32 #define orthanc_override override |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
33 #else |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
34 #define orthanc_override |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
35 #endif |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
36 #elif defined __GNUC__ |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
37 #define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__) |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
38 /* Test for GCC > 3.2.0 */ |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
39 #if GCC_VERSION > 40900 |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
40 #define orthanc_override override |
523 | 41 #else |
466
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
42 #define orthanc_override |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
43 #endif |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
44 #else |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
45 #define orthanc_override |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
46 #endif |
5055031f4a06
- Added browserify to build. This allows using require calls for modules that
bgo-osimis
parents:
440
diff
changeset
|
47 |
0 | 48 #include <list> |
49 | |
50 namespace OrthancStone | |
51 { | |
288 | 52 // a StoneApplicationContext contains the services that a StoneApplication |
53 // uses and that depends on the environment in which the Application executes. | |
54 // I.e, the StoneApplicationContext provides a WebService interface such that | |
55 // the StoneApplication can perform HTTP requests. In a WASM environment, | |
56 // the WebService is provided by the browser while, in a native environment, | |
57 // 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
|
58 |
288 | 59 class StoneApplicationContext : public boost::noncopyable |
0 | 60 { |
418 | 61 private: |
62 MessageBroker& broker_; | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
63 IWebService* webService_; |
431
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
64 IDelayedCallExecutor* delayedCallExecutor_; |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
65 std::auto_ptr<OrthancApiClient> orthanc_; |
418 | 66 std::string orthancBaseUrl_; |
67 | |
68 void InitializeOrthanc(); | |
0 | 69 |
70 public: | |
418 | 71 StoneApplicationContext(MessageBroker& broker) : |
72 broker_(broker), | |
431
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
73 webService_(NULL), |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
74 delayedCallExecutor_(NULL) |
242 | 75 { |
76 } | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
77 |
402
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
78 virtual ~StoneApplicationContext() |
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
79 { |
72355b637945
removed VolumeSlicerBase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
288
diff
changeset
|
80 } |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
81 |
418 | 82 MessageBroker& GetMessageBroker() |
83 { | |
84 return broker_; | |
85 } | |
86 | |
87 bool HasWebService() const | |
88 { | |
89 return webService_ != NULL; | |
90 } | |
91 | |
417
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
92 IWebService& GetWebService(); |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
93 |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
94 OrthancApiClient& GetOrthancApiClient(); |
aee3d7941c9b
preparing to load images using DICOMweb
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
402
diff
changeset
|
95 |
418 | 96 void SetWebService(IWebService& webService); |
97 | |
98 void SetOrthancBaseUrl(const std::string& baseUrl); | |
431
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
99 |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
100 void SetDelayedCallExecutor(IDelayedCallExecutor& delayedCallExecutor) |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
101 { |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
102 delayedCallExecutor_ = &delayedCallExecutor; |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
103 } |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
104 |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
105 IDelayedCallExecutor& GetDelayedCallExecutor() |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
106 { |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
107 return *delayedCallExecutor_; |
26b90b110719
added DelayedCallExecutor to avoid using sleep() in C++ that consumes 100% CPU once executed in WASM
am@osimis.io
parents:
418
diff
changeset
|
108 } |
0 | 109 }; |
110 } |