comparison OrthancStone/Sources/Oracle/GetOrthancWebViewerJpegCommand.h @ 1512:244ad1e4e76a

reorganization of folders
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 07 Jul 2020 16:21:02 +0200
parents Framework/Oracle/GetOrthancWebViewerJpegCommand.h@30deba7bc8e2
children 85e117739eca
comparison
equal deleted inserted replaced
1511:9dfeee74c1e6 1512:244ad1e4e76a
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-2020 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 #include "../Messages/IMessageEmitter.h"
25 #include "OracleCommandBase.h"
26
27 #include <Images/ImageAccessor.h>
28
29 #include <map>
30
31 namespace OrthancStone
32 {
33 class GetOrthancWebViewerJpegCommand : public OracleCommandBase
34 {
35 public:
36 typedef std::map<std::string, std::string> HttpHeaders;
37
38 class SuccessMessage : public OriginMessage<GetOrthancWebViewerJpegCommand>
39 {
40 ORTHANC_STONE_MESSAGE(__FILE__, __LINE__);
41
42 private:
43 const Orthanc::ImageAccessor& image_;
44
45 public:
46 SuccessMessage(const GetOrthancWebViewerJpegCommand& command,
47 const Orthanc::ImageAccessor& image) :
48 OriginMessage(command),
49 image_(image)
50 {
51 }
52
53 const Orthanc::ImageAccessor& GetImage() const
54 {
55 return image_;
56 }
57 };
58
59 private:
60 std::string instanceId_;
61 unsigned int frame_;
62 unsigned int quality_;
63 HttpHeaders headers_;
64 unsigned int timeout_;
65 Orthanc::PixelFormat expectedFormat_;
66
67 GetOrthancWebViewerJpegCommand(const GetOrthancWebViewerJpegCommand& other) :
68 instanceId_(other.instanceId_),
69 frame_(other.frame_),
70 quality_(other.quality_),
71 headers_(other.headers_),
72 timeout_(other.timeout_),
73 expectedFormat_(other.expectedFormat_)
74 {
75 }
76
77 public:
78 GetOrthancWebViewerJpegCommand();
79
80 virtual Type GetType() const
81 {
82 return Type_GetOrthancWebViewerJpeg;
83 }
84
85 virtual IOracleCommand* Clone() const
86 {
87 return new GetOrthancWebViewerJpegCommand(*this);
88 }
89
90 void SetExpectedPixelFormat(Orthanc::PixelFormat format)
91 {
92 expectedFormat_ = format;
93 }
94
95 void SetInstance(const std::string& instanceId)
96 {
97 instanceId_ = instanceId;
98 }
99
100 void SetFrame(unsigned int frame)
101 {
102 frame_ = frame;
103 }
104
105 void SetQuality(unsigned int quality);
106
107 void SetHttpHeader(const std::string& key,
108 const std::string& value)
109 {
110 headers_[key] = value;
111 }
112
113 Orthanc::PixelFormat GetExpectedPixelFormat() const
114 {
115 return expectedFormat_;
116 }
117
118 const std::string& GetInstanceId() const
119 {
120 return instanceId_;
121 }
122
123 unsigned int GetFrame() const
124 {
125 return frame_;
126 }
127
128 unsigned int GetQuality() const
129 {
130 return quality_;
131 }
132
133 const HttpHeaders& GetHttpHeaders() const
134 {
135 return headers_;
136 }
137
138 void SetTimeout(unsigned int seconds)
139 {
140 timeout_ = seconds;
141 }
142
143 unsigned int GetTimeout() const
144 {
145 return timeout_;
146 }
147
148 std::string GetUri() const;
149
150 void ProcessHttpAnswer(boost::weak_ptr<IObserver> receiver,
151 IMessageEmitter& emitter,
152 const std::string& answer) const;
153 };
154 }