Mercurial > hg > orthanc-stone
annotate OrthancStone/Sources/Oracle/GetOrthancImageCommand.cpp @ 1795:39673d351ef2
fix build
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 18 May 2021 09:57:14 +0200 |
parents | 9ac2a65d4172 |
children | 3889ae96d2e9 |
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 | |
1739
9ac2a65d4172
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1598
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
746 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
746 | 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 | |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
15 * Lesser General Public License for more details. |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1572
diff
changeset
|
16 * |
1598
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
18 * License along with this program. If not, see |
8563ea5d8ae4
relicensing some files, cf. osimis bm26 and chu agreement on 2020-05-20
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1596
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
746 | 20 **/ |
21 | |
22 | |
23 #include "GetOrthancImageCommand.h" | |
24 | |
1455
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
25 #include <Images/JpegReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
26 #include <Images/PamReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
27 #include <Images/PngReader.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
28 #include <OrthancException.h> |
30deba7bc8e2
simplifying include_directories
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1352
diff
changeset
|
29 #include <Toolbox.h> |
746 | 30 |
31 namespace OrthancStone | |
32 { | |
33 GetOrthancImageCommand::GetOrthancImageCommand() : | |
34 uri_("/"), | |
956
a7351ad54960
Made IsContextLost automatically set the flag by checking with the emscripten
Benjamin Golinvaux <bgo@osimis.io>
parents:
846
diff
changeset
|
35 timeout_(600), |
1571 | 36 hasExpectedFormat_(false), |
37 expectedFormat_(Orthanc::PixelFormat_Grayscale8) | |
746 | 38 { |
39 } | |
40 | |
41 | |
42 void GetOrthancImageCommand::SetExpectedPixelFormat(Orthanc::PixelFormat format) | |
43 { | |
44 hasExpectedFormat_ = true; | |
45 expectedFormat_ = format; | |
46 } | |
47 | |
48 | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
49 static std::string GetFormatSuffix(Orthanc::PixelFormat pixelFormat) |
746 | 50 { |
51 switch (pixelFormat) | |
52 { | |
53 case Orthanc::PixelFormat_RGB24: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
54 return "preview"; |
746 | 55 |
56 case Orthanc::PixelFormat_Grayscale16: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
57 return "image-uint16"; |
746 | 58 |
59 case Orthanc::PixelFormat_SignedGrayscale16: | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
60 return "image-int16"; |
746 | 61 |
62 default: | |
63 throw Orthanc::OrthancException(Orthanc::ErrorCode_ParameterOutOfRange); | |
64 } | |
65 } | |
66 | |
1152
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
67 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
68 void GetOrthancImageCommand::SetInstanceUri(const std::string& instance, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
69 Orthanc::PixelFormat 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 uri_ = "/instances/" + instance + "/" + GetFormatSuffix(pixelFormat); |
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 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
74 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
75 void GetOrthancImageCommand::SetFrameUri(const std::string& instance, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
76 unsigned int frame, |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
77 Orthanc::PixelFormat pixelFormat) |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
78 { |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
79 uri_ = ("/instances/" + instance + "/frames/" + |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
80 boost::lexical_cast<std::string>(frame) + "/" + GetFormatSuffix(pixelFormat)); |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
81 } |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
82 |
78b8bfe154bc
GetOrthancImageCommand::SetFrameUri()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1135
diff
changeset
|
83 |
1134
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
84 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
|
85 IMessageEmitter& emitter, |
746 | 86 const std::string& answer, |
87 const HttpHeaders& answerHeaders) const | |
88 { | |
1255
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
89 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
|
90 { |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
91 std::string key = Orthanc::Toolbox::StripSpaces(it->first); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
92 Orthanc::Toolbox::ToLowerCase(key); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
93 |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
94 if (key == "content-disposition" && |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
95 it->second == "filename=\"unsupported.png\"") |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
96 { |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
97 throw Orthanc::OrthancException(Orthanc::ErrorCode_IncompatibleImageFormat, |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
98 "Orthanc cannot decode this image"); |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
99 } |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
100 } |
c1c83c1fb837
GetOrthancImageCommand: handling of unsupported formats
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1152
diff
changeset
|
101 |
746 | 102 Orthanc::MimeType contentType = Orthanc::MimeType_Binary; |
103 | |
104 for (HttpHeaders::const_iterator it = answerHeaders.begin(); | |
105 it != answerHeaders.end(); ++it) | |
106 { | |
107 std::string s; | |
108 Orthanc::Toolbox::ToLowerCase(s, it->first); | |
109 | |
110 if (s == "content-type") | |
111 { | |
112 contentType = Orthanc::StringToMimeType(it->second); | |
113 break; | |
114 } | |
115 } | |
116 | |
1298
8a0a62189f46
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1270
diff
changeset
|
117 std::unique_ptr<Orthanc::ImageAccessor> image; |
746 | 118 |
119 switch (contentType) | |
120 { | |
121 case Orthanc::MimeType_Png: | |
122 { | |
123 image.reset(new Orthanc::PngReader); | |
124 dynamic_cast<Orthanc::PngReader&>(*image).ReadFromMemory(answer); | |
125 break; | |
126 } | |
127 | |
128 case Orthanc::MimeType_Pam: | |
129 { | |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
130 #ifdef __EMSCRIPTEN__ |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
131 // "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
|
132 // 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
|
133 // 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
|
134 // 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
|
135 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
|
136 #else |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
137 // potentially unaligned, with is faster and consumes less heap memory |
1572 | 138 image.reset(new Orthanc::PamReader(false)); |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
139 #endif |
746 | 140 dynamic_cast<Orthanc::PamReader&>(*image).ReadFromMemory(answer); |
141 break; | |
142 } | |
143 | |
144 case Orthanc::MimeType_Jpeg: | |
145 { | |
146 image.reset(new Orthanc::JpegReader); | |
147 dynamic_cast<Orthanc::JpegReader&>(*image).ReadFromMemory(answer); | |
148 break; | |
149 } | |
150 | |
151 default: | |
152 throw Orthanc::OrthancException(Orthanc::ErrorCode_NetworkProtocol, | |
153 "Unsupported HTTP Content-Type for an image: " + | |
154 std::string(Orthanc::EnumerationToString(contentType))); | |
155 } | |
156 | |
157 if (hasExpectedFormat_) | |
158 { | |
159 if (expectedFormat_ == Orthanc::PixelFormat_SignedGrayscale16 && | |
160 image->GetFormat() == Orthanc::PixelFormat_Grayscale16) | |
161 { | |
162 image->SetFormat(Orthanc::PixelFormat_SignedGrayscale16); | |
163 } | |
164 | |
165 if (expectedFormat_ != image->GetFormat()) | |
166 { | |
167 throw Orthanc::OrthancException(Orthanc::ErrorCode_IncompatibleImageFormat); | |
168 } | |
169 } | |
170 | |
1352
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
171 //{ |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
172 // // 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
|
173 // const Orthanc::ImageAccessor& source = *image; |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
174 // const void* sourceBuffer = source.GetConstBuffer(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
175 // 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
|
176 // int sourceWidth = source.GetWidth(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
177 // int sourceHeight = source.GetHeight(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
178 // int sourcePitch = source.GetPitch(); |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
179 |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
180 // // 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
|
181 // LOG(ERROR) << "GetOrthancImageCommand::ProcessHttpAnswer | source:" |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
182 // << " W = " << sourceWidth << " H = " << sourceHeight |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
183 // << " P = " << sourcePitch << " B = " << sourceBufferInt |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
184 // << " B % 4 == " << sourceBufferInt % 4; |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
185 //} |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
186 |
159708a38af4
Enforce alignment when using PamReader to retrieve REST images,
Benjamin Golinvaux <bgo@osimis.io>
parents:
1300
diff
changeset
|
187 |
1134
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
188 SuccessMessage message(*this, *image, contentType); |
746 | 189 emitter.EmitMessage(receiver, message); |
190 } | |
191 } |