Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/DicomMoveScuJob.cpp @ 4704:f0038043fb97 openssl-3.x
removed OpenSSL license exception, as OpenSSL 3.0 was relicensed under Apache 2.0
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 22 Jun 2021 07:37:20 +0200 |
parents | d9473bd5ed43 |
children | c1d6ce00be3f |
rev | line source |
---|---|
2867 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
4437
d9473bd5ed43
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4206
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
2867 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU General Public License as | |
9 * published by the Free Software Foundation, either version 3 of the | |
10 * 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 * General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
22 #include "DicomMoveScuJob.h" | |
23 | |
4045 | 24 #include "../../../OrthancFramework/Sources/SerializationToolbox.h" |
3095
beeeb6096f27
removing dependencies upon ServerContext
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
25 #include "../ServerContext.h" |
2867 | 26 |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
27 static const char* const LOCAL_AET = "LocalAet"; |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
28 static const char* const TARGET_AET = "TargetAet"; |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
29 static const char* const REMOTE = "Remote"; |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
30 static const char* const QUERY = "Query"; |
3870
09798f2b985f
added a Timeout argument to every DICOM command + 'TargetAet' not mandatory anymore in /retrieve
Alain Mazy <alain@mazy.be>
parents:
3843
diff
changeset
|
31 static const char* const TIMEOUT = "Timeout"; |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
32 |
2867 | 33 namespace Orthanc |
34 { | |
35 class DicomMoveScuJob::Command : public SetOfCommandsJob::ICommand | |
36 { | |
37 private: | |
3712
2a170a8f1faf
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
38 DicomMoveScuJob& that_; |
2a170a8f1faf
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
39 std::unique_ptr<DicomMap> findAnswer_; |
2867 | 40 |
41 public: | |
42 Command(DicomMoveScuJob& that, | |
43 const DicomMap& findAnswer) : | |
44 that_(that), | |
45 findAnswer_(findAnswer.Clone()) | |
46 { | |
47 } | |
48 | |
3658
2d90dd30858c
providing job ID to the IJob::Step() methods
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
49 virtual bool Execute(const std::string& jobId) ORTHANC_OVERRIDE |
2867 | 50 { |
51 that_.Retrieve(*findAnswer_); | |
52 return true; | |
53 } | |
54 | |
3763
5ff5d5a0fd28
adding missing ORTHANC_OVERRIDE
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3713
diff
changeset
|
55 virtual void Serialize(Json::Value& target) const ORTHANC_OVERRIDE |
2867 | 56 { |
57 findAnswer_->Serialize(target); | |
58 } | |
59 }; | |
60 | |
61 | |
62 class DicomMoveScuJob::Unserializer : | |
63 public SetOfCommandsJob::ICommandUnserializer | |
64 { | |
65 private: | |
66 DicomMoveScuJob& that_; | |
67 | |
68 public: | |
4205 | 69 explicit Unserializer(DicomMoveScuJob& that) : |
2867 | 70 that_(that) |
71 { | |
72 } | |
73 | |
4205 | 74 virtual ICommand* Unserialize(const Json::Value& source) const ORTHANC_OVERRIDE |
2867 | 75 { |
76 DicomMap findAnswer; | |
77 findAnswer.Unserialize(source); | |
78 return new Command(that_, findAnswer); | |
79 } | |
80 }; | |
81 | |
82 | |
83 | |
84 void DicomMoveScuJob::Retrieve(const DicomMap& findAnswer) | |
85 { | |
86 if (connection_.get() == NULL) | |
87 { | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
88 connection_.reset(new DicomControlUserConnection(parameters_)); |
2867 | 89 } |
90 | |
91 connection_->Move(targetAet_, findAnswer); | |
92 } | |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
93 |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
94 |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
95 static void AddTagIfString(Json::Value& target, |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
96 const DicomMap& answer, |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
97 const DicomTag& tag) |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
98 { |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
99 const DicomValue* value = answer.TestAndGetValue(tag); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
100 if (value != NULL && |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
101 !value->IsNull() && |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
102 !value->IsBinary()) |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
103 { |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
104 target[tag.Format()] = value->GetContent(); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
105 } |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
106 } |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
107 |
2867 | 108 |
109 void DicomMoveScuJob::AddFindAnswer(const DicomMap& answer) | |
110 { | |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
111 assert(query_.type() == Json::arrayValue); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
112 |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
113 // Copy the identifiers tags, if they exist |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
114 Json::Value item = Json::objectValue; |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
115 AddTagIfString(item, answer, DICOM_TAG_QUERY_RETRIEVE_LEVEL); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
116 AddTagIfString(item, answer, DICOM_TAG_PATIENT_ID); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
117 AddTagIfString(item, answer, DICOM_TAG_STUDY_INSTANCE_UID); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
118 AddTagIfString(item, answer, DICOM_TAG_SERIES_INSTANCE_UID); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
119 AddTagIfString(item, answer, DICOM_TAG_SOP_INSTANCE_UID); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
120 AddTagIfString(item, answer, DICOM_TAG_ACCESSION_NUMBER); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
121 query_.append(item); |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
122 |
2867 | 123 AddCommand(new Command(*this, answer)); |
124 } | |
125 | |
126 | |
127 void DicomMoveScuJob::AddFindAnswer(QueryRetrieveHandler& query, | |
128 size_t i) | |
129 { | |
130 DicomMap answer; | |
131 query.GetAnswer(answer, i); | |
132 AddFindAnswer(answer); | |
133 } | |
134 | |
135 | |
136 void DicomMoveScuJob::SetLocalAet(const std::string& aet) | |
137 { | |
138 if (IsStarted()) | |
139 { | |
140 throw OrthancException(ErrorCode_BadSequenceOfCalls); | |
141 } | |
142 else | |
143 { | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
144 parameters_.SetLocalApplicationEntityTitle(aet); |
2867 | 145 } |
146 } | |
147 | |
148 | |
149 void DicomMoveScuJob::SetTargetAet(const std::string& aet) | |
150 { | |
151 if (IsStarted()) | |
152 { | |
153 throw OrthancException(ErrorCode_BadSequenceOfCalls); | |
154 } | |
155 else | |
156 { | |
157 targetAet_ = aet; | |
158 } | |
159 } | |
160 | |
161 | |
162 void DicomMoveScuJob::SetRemoteModality(const RemoteModalityParameters& remote) | |
163 { | |
164 if (IsStarted()) | |
165 { | |
166 throw OrthancException(ErrorCode_BadSequenceOfCalls); | |
167 } | |
168 else | |
169 { | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
170 parameters_.SetRemoteModality(remote); |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
171 } |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
172 } |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
173 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
174 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
175 void DicomMoveScuJob::SetTimeout(uint32_t seconds) |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
176 { |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
177 if (IsStarted()) |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
178 { |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
179 throw OrthancException(ErrorCode_BadSequenceOfCalls); |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
180 } |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
181 else |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
182 { |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
183 parameters_.SetTimeout(seconds); |
2867 | 184 } |
185 } | |
186 | |
187 | |
188 void DicomMoveScuJob::Stop(JobStopReason reason) | |
189 { | |
190 connection_.reset(); | |
191 } | |
192 | |
193 | |
194 void DicomMoveScuJob::GetPublicContent(Json::Value& value) | |
195 { | |
196 SetOfCommandsJob::GetPublicContent(value); | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
197 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
198 value["LocalAet"] = parameters_.GetLocalApplicationEntityTitle(); |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
199 value["RemoteAet"] = parameters_.GetRemoteModality().GetApplicationEntityTitle(); |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
200 value["Query"] = query_; |
2867 | 201 } |
202 | |
203 | |
204 DicomMoveScuJob::DicomMoveScuJob(ServerContext& context, | |
205 const Json::Value& serialized) : | |
206 SetOfCommandsJob(new Unserializer(*this), serialized), | |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
207 context_(context), |
4206 | 208 parameters_(DicomAssociationParameters::UnserializeJob(serialized)), |
209 targetAet_(SerializationToolbox::ReadString(serialized, TARGET_AET)), | |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
210 query_(Json::arrayValue) |
2867 | 211 { |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
212 if (serialized.isMember(QUERY) && |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
213 serialized[QUERY].type() == Json::arrayValue) |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
214 { |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
215 query_ = serialized[QUERY]; |
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
216 } |
2867 | 217 } |
218 | |
219 | |
220 bool DicomMoveScuJob::Serialize(Json::Value& target) | |
221 { | |
222 if (!SetOfCommandsJob::Serialize(target)) | |
223 { | |
224 return false; | |
225 } | |
226 else | |
227 { | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3875
diff
changeset
|
228 parameters_.SerializeJob(target); |
2867 | 229 target[TARGET_AET] = targetAet_; |
3303
a215182a0c2f
"DicomMoveScu" jobs provide the associated C-FIND answer in their "Query" public field
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
230 target[QUERY] = query_; |
2867 | 231 return true; |
232 } | |
233 } | |
234 } |