Mercurial > hg > orthanc-stone
annotate Framework/Oracle/GetOrthancImageCommand.cpp @ 1303:83af7e562b45 broker
IGeometryProvider interface for deprecated loaders (required for AB testing in older app)
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Wed, 04 Mar 2020 09:44:09 +0100 |
parents | 7ec8fea061b9 |
children | c38c89684d83 |
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 | |
24 #include <Core/Images/JpegReader.h> | |
25 #include <Core/Images/PamReader.h> | |
26 #include <Core/Images/PngReader.h> | |
27 #include <Core/OrthancException.h> | |
28 #include <Core/Toolbox.h> | |
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 | |
115 std::auto_ptr<Orthanc::ImageAccessor> image; | |
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 { | |
128 image.reset(new Orthanc::PamReader); | |
129 dynamic_cast<Orthanc::PamReader&>(*image).ReadFromMemory(answer); | |
130 break; | |
131 } | |
132 | |
133 case Orthanc::MimeType_Jpeg: | |
134 { | |
135 image.reset(new Orthanc::JpegReader); | |
136 dynamic_cast<Orthanc::JpegReader&>(*image).ReadFromMemory(answer); | |
137 break; | |
138 } | |
139 | |
140 default: | |
141 throw Orthanc::OrthancException(Orthanc::ErrorCode_NetworkProtocol, | |
142 "Unsupported HTTP Content-Type for an image: " + | |
143 std::string(Orthanc::EnumerationToString(contentType))); | |
144 } | |
145 | |
146 if (hasExpectedFormat_) | |
147 { | |
148 if (expectedFormat_ == Orthanc::PixelFormat_SignedGrayscale16 && | |
149 image->GetFormat() == Orthanc::PixelFormat_Grayscale16) | |
150 { | |
151 image->SetFormat(Orthanc::PixelFormat_SignedGrayscale16); | |
152 } | |
153 | |
154 if (expectedFormat_ != image->GetFormat()) | |
155 { | |
156 throw Orthanc::OrthancException(Orthanc::ErrorCode_IncompatibleImageFormat); | |
157 } | |
158 } | |
159 | |
1134
87fbeb823375
allocating messages from oracle commands on the stack
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1098
diff
changeset
|
160 SuccessMessage message(*this, *image, contentType); |
746 | 161 emitter.EmitMessage(receiver, message); |
162 } | |
163 } |