Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Oracle/GetOrthancImageCommand.cpp @ 1549:a48ae10857b1
packaging of the WebAssembly module
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 13 Aug 2020 15:56:01 +0200 |
parents | 244ad1e4e76a |
children | 85e117739eca |
rev | line source |
---|---|
746 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1270
2d8ab34c8c91
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
956
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
746 | 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 #include "GetOrthancImageCommand.h" | |
23 | |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
24 #include <Images/JpegReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
25 #include <Images/PamReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
26 #include <Images/PngReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
27 #include <OrthancException.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
28 #include <Toolbox.h> |
746 | 29 |
30 namespace OrthancStone | |
31 { | |
32 GetOrthancImageCommand::GetOrthancImageCommand() : | |
33 uri_("/"), | |
956
a7351ad54960
Made IsContextLost automatically set the flag by checking with the emscripten
Benjamin Golinvaux <bgo@osimis.io>
parents:
846
diff
changeset
|
34 timeout_(600), |
746 | 35 hasExpectedFormat_(false) |
36 { | |
37 } | |
38 | |
39 | |
40 void GetOrthancImageCommand::SetExpectedPixelFormat(Orthanc::PixelFormat format) | |
41 { | |
42 hasExpectedFormat_ = true; | |
43 expectedFormat_ = format; | |
44 } | |
45 | |
46 | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
47 static std::string GetFormatSuffix(Orthanc::PixelFormat pixelFormat) |
746 | 48 { |
49 switch (pixelFormat) | |
50 { | |
51 case Orthanc::PixelFormat_RGB24: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
52 return "preview"; |
746 | 53 |
54 case Orthanc::PixelFormat_Grayscale16: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
55 return "image-uint16"; |
746 | 56 |
57 case Orthanc::PixelFormat_SignedGrayscale16: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
58 return "image-int16"; |
746 | 59 |
60 default: | |
61 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); | |
62 } | |
63 } | |
64 | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
65 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
66 void GetOrthancImageCommand::SetInstanceUri(const std::string& instance, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
67 Orthanc::PixelFormat pixelFormat) |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
68 { |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
69 uri_ = "/instances/" + instance + "/" + GetFormatSuffix(pixelFormat); |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
70 } |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
71 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
72 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
73 void GetOrthancImageCommand::SetFrameUri(const std::string& instance, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
74 unsigned int frame, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
75 Orthanc::PixelFormat pixelFormat) |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
76 { |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
77 uri_ = ("/instances/" + instance + "/frames/" + |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
78 boost::lexical_cast<std::string>(frame) + "/" + GetFormatSuffix(pixelFormat)); |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
79 } |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
80 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
81 |
1134
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
82 void GetOrthancImageCommand::ProcessHttpAnswer(boost::weak_ptr<IObserver> receiver, |
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
83 IMessageEmitter& emitter, |
746 | 84 const std::string& answer, |
85 const HttpHeaders& answerHeaders) const | |
86 { | |
1255
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
87 for (HttpHeaders::const_iterator it = answerHeaders.begin(); it != answerHeaders.end(); ++it) |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
88 { |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
89 std::string key = Orthanc::Toolbox::StripSpaces(it->first); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
90 Orthanc::Toolbox::ToLowerCase(key); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
91 |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
92 if (key == "content-disposition" && |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
93 it->second == "filename=\"unsupported.png\"") |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
94 { |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
95 throw Orthanc::OrthancException(Orthanc::ErrorCode_IncompatibleImageFormat, |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
96 "Orthanc cannot decode this image"); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
97 } |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
98 } |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
99 |
746 | 100 Orthanc::MimeType contentType = Orthanc::MimeType_Binary; |
101 | |
102 for (HttpHeaders::const_iterator it = answerHeaders.begin(); | |
103 it != answerHeaders.end(); ++it) | |
104 { | |
105 std::string s; | |
106 Orthanc::Toolbox::ToLowerCase(s, it->first); | |
107 | |
108 if (s == "content-type") | |
109 { | |
110 contentType = Orthanc::StringToMimeType(it->second); | |
111 break; | |
112 } | |
113 } | |
114 | |
1298
8a0a62189f46
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
115 std::unique_ptr<Orthanc::ImageAccessor> image; |
746 | 116 |
117 switch (contentType) | |
118 { | |
119 case Orthanc::MimeType_Png: | |
120 { | |
121 image.reset(new Orthanc::PngReader); | |
122 dynamic_cast<Orthanc::PngReader&>(*image).ReadFromMemory(answer); | |
123 break; | |
124 } | |
125 | |
126 case Orthanc::MimeType_Pam: | |
127 { | |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
128 #ifdef __EMSCRIPTEN__ |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
129 // "true" means we ask the PamReader to make an extra copy so that |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
130 // the resulting Orthanc::ImageAccessor is aligned (as malloc is). |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
131 // Indeed, even though alignment is not required in Web Assembly, |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
132 // Emscripten seems to check it and bail out if addresses are "odd" |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
133 image.reset(new Orthanc::PamReader(true)); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
134 #else |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
135 // potentially unaligned, with is faster and consumes less heap memory |
746 | 136 image.reset(new Orthanc::PamReader); |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
137 #endif |
746 | 138 dynamic_cast<Orthanc::PamReader&>(*image).ReadFromMemory(answer); |
139 break; | |
140 } | |
141 | |
142 case Orthanc::MimeType_Jpeg: | |
143 { | |
144 image.reset(new Orthanc::JpegReader); | |
145 dynamic_cast<Orthanc::JpegReader&>(*image).ReadFromMemory(answer); | |
146 break; | |
147 } | |
148 | |
149 default: | |
150 throw Orthanc::OrthancException(Orthanc::ErrorCode_NetworkProtocol, | |
151 "Unsupported HTTP Content-Type for an image: " + | |
152 std::string(Orthanc::EnumerationToString(contentType))); | |
153 } | |
154 | |
155 if (hasExpectedFormat_) | |
156 { | |
157 if (expectedFormat_ == Orthanc::PixelFormat_SignedGrayscale16 && | |
158 image->GetFormat() == Orthanc::PixelFormat_Grayscale16) | |
159 { | |
160 image->SetFormat(Orthanc::PixelFormat_SignedGrayscale16); | |
161 } | |
162 | |
163 if (expectedFormat_ != image->GetFormat()) | |
164 { | |
165 throw Orthanc::OrthancException(Orthanc::ErrorCode_IncompatibleImageFormat); | |
166 } | |
167 } | |
168 | |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
169 //{ |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
170 // // DEBUG DISPLAY IMAGE PROPERTIES BGO 2020-04-11 |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
171 // const Orthanc::ImageAccessor& source = *image; |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
172 // const void* sourceBuffer = source.GetConstBuffer(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
173 // intptr_t sourceBufferInt = reinterpret_cast<intptr_t>(sourceBuffer); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
174 // int sourceWidth = source.GetWidth(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
175 // int sourceHeight = source.GetHeight(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
176 // int sourcePitch = source.GetPitch(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
177 |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
178 // // TODO: turn error into trace below |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
179 // LOG(ERROR) << "GetOrthancImageCommand::ProcessHttpAnswer | source:" |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
180 // << " W = " << sourceWidth << " H = " << sourceHeight |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
181 // << " P = " << sourcePitch << " B = " << sourceBufferInt |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
182 // << " B % 4 == " << sourceBufferInt % 4; |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
183 //} |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
184 |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
185 |
1134
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
186 SuccessMessage message(*this, *image, contentType); |
746 | 187 emitter.EmitMessage(receiver, message); |
188 } | |
189 } |