Mercurial > hg > orthanc-stone
annotate Applications/StoneApplicationContext.h @ 337:c4d4213f095c am-2
cont
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 18 Oct 2018 20:07:09 +0200 |
parents | 8c8da145fefa |
children | 72355b637945 |
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" |
145 | 25 #include "../Framework/Viewport/WidgetViewport.h" |
0 | 26 |
27 #include <list> | |
28 | |
29 namespace OrthancStone | |
30 { | |
288 | 31 // a StoneApplicationContext contains the services that a StoneApplication |
32 // uses and that depends on the environment in which the Application executes. | |
33 // I.e, the StoneApplicationContext provides a WebService interface such that | |
34 // the StoneApplication can perform HTTP requests. In a WASM environment, | |
35 // the WebService is provided by the browser while, in a native environment, | |
36 // the WebService is provided by the OracleWebService (a C++ Http client) | |
37 class StoneApplicationContext : public boost::noncopyable | |
0 | 38 { |
39 | |
242 | 40 protected: |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
41 IWebService* webService_; |
0 | 42 public: |
288 | 43 StoneApplicationContext() |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
44 : webService_(NULL) |
242 | 45 { |
46 } | |
53
c2dc924f1a63
removing threading out of the framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
51
diff
changeset
|
47 |
271
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
48 IWebService& GetWebService() {return *webService_;} |
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
49 void SetWebService(IWebService& webService) |
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
50 { |
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
51 webService_ = &webService; |
46c5296d867e
OracleWebService and BasicSdlApplicationContext using the same global mutex
am@osimis.io
parents:
242
diff
changeset
|
52 } |
0 | 53 |
288 | 54 virtual ~StoneApplicationContext() {} |
0 | 55 }; |
56 } |