Mercurial > hg > orthanc-stone
annotate Framework/Oracle/IOracleCommand.h @ 1128:8e3763d1736a broker
removing CustomOracleCommand
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 05 Nov 2019 22:39:25 +0100 |
parents | b82b74d13830 |
children | a0a33e5ea5bb |
rev | line source |
---|---|
745 | 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 | |
1128
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
24 #include "../Messages/IMessage.h" |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
25 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
26 #include <Core/IDynamicObject.h> |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
27 |
745 | 28 #include <boost/noncopyable.hpp> |
29 | |
30 namespace OrthancStone | |
31 { | |
32 class IOracleCommand : public boost::noncopyable | |
33 { | |
34 public: | |
1128
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
35 class OracleMessageBase : public IMessage |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
36 { |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
37 private: |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
38 IOracleCommand& command_; |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
39 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
40 public: |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
41 OracleMessageBase(IOracleCommand& command) : |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
42 command_(command) |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
43 { |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
44 } |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
45 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
46 void AcquireCommandPayload(Orthanc::IDynamicObject* payload) const |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
47 { |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
48 command_.AcquirePayload(payload); |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
49 } |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
50 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
51 const IOracleCommand& GetCommand() const |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
52 { |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
53 return command_; |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
54 } |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
55 }; |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
56 |
745 | 57 enum Type |
58 { | |
59 Type_GetOrthancImage, | |
1077 | 60 Type_GetOrthancWebViewerJpeg, |
1104 | 61 Type_Http, |
62 Type_OrthancRestApi, | |
1110
b82b74d13830
ParseDicomFileCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1104
diff
changeset
|
63 Type_ParseDicomFile, |
1104 | 64 Type_ReadFile, |
65 Type_Sleep | |
745 | 66 }; |
67 | |
68 virtual ~IOracleCommand() | |
69 { | |
70 } | |
71 | |
72 virtual Type GetType() const = 0; | |
1128
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
73 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
74 virtual void AcquirePayload(Orthanc::IDynamicObject* payload) = 0; |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
75 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
76 virtual bool HasPayload() const = 0; |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
77 |
8e3763d1736a
removing CustomOracleCommand
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1110
diff
changeset
|
78 virtual Orthanc::IDynamicObject& GetPayload() const = 0; |
745 | 79 }; |
80 } |