Mercurial > hg > orthanc-stone
annotate Framework/Oracle/WebAssemblyOracle.h @ 1223:04fd875b91f4
fix
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 07 Dec 2019 18:41:54 +0100 |
parents | a9f5d0742e22 |
children | 008dbc4ceb62 2d8ab34c8c91 |
rev | line source |
---|---|
825 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2019 Osimis S.A., Belgium | |
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. | |
16 * | |
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 #if !defined(ORTHANC_ENABLE_WASM) | |
25 # error The macro ORTHANC_ENABLE_WASM must be defined | |
26 #endif | |
27 | |
28 #if ORTHANC_ENABLE_WASM != 1 | |
29 # error This file can only compiled for WebAssembly | |
30 #endif | |
31 | |
32 #include "../Messages/IObservable.h" | |
33 #include "GetOrthancImageCommand.h" | |
34 #include "GetOrthancWebViewerJpegCommand.h" | |
992
a9f5d0742e22
implementation of HttpCommand in WebAssemblyOracle
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
35 #include "HttpCommand.h" |
825 | 36 #include "IOracle.h" |
37 #include "OrthancRestApiCommand.h" | |
38 | |
39 | |
40 namespace OrthancStone | |
41 { | |
42 class WebAssemblyOracle : | |
43 public IOracle, | |
44 public IObservable | |
45 { | |
46 private: | |
47 typedef std::map<std::string, std::string> HttpHeaders; | |
48 | |
49 class TimeoutContext; | |
50 class Emitter; | |
51 class FetchContext; | |
52 class FetchCommand; | |
53 | |
54 void Execute(const IObserver& receiver, | |
992
a9f5d0742e22
implementation of HttpCommand in WebAssemblyOracle
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
55 HttpCommand* command); |
a9f5d0742e22
implementation of HttpCommand in WebAssemblyOracle
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
56 |
a9f5d0742e22
implementation of HttpCommand in WebAssemblyOracle
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
57 void Execute(const IObserver& receiver, |
825 | 58 OrthancRestApiCommand* command); |
59 | |
60 void Execute(const IObserver& receiver, | |
61 GetOrthancImageCommand* command); | |
62 | |
63 void Execute(const IObserver& receiver, | |
64 GetOrthancWebViewerJpegCommand* command); | |
65 | |
831
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
66 std::string orthancRoot_; |
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
67 |
825 | 68 public: |
69 WebAssemblyOracle(MessageBroker& broker) : | |
70 IObservable(broker) | |
71 { | |
72 } | |
831
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
73 |
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
74 void SetOrthancRoot(const std::string& root) |
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
75 { |
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
76 orthancRoot_ = root; |
d71cf8504159
handling of GET arguments
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
825
diff
changeset
|
77 } |
825 | 78 |
79 virtual void Schedule(const IObserver& receiver, | |
80 IOracleCommand* command); | |
81 }; | |
82 } |