Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/DicomMoveScuJob.h @ 4740:c1d6ce00be3f openssl-3.x
integration mainline->openssl-3.x
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 06 Jul 2021 08:40:43 +0200 |
parents | f0038043fb97 7826ac059c31 |
children | 2e71a08eea15 |
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:
4205
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 #pragma once | |
23 | |
4045 | 24 #include "../../../OrthancFramework/Sources/Compatibility.h" |
25 #include "../../../OrthancFramework/Sources/DicomNetworking/DicomControlUserConnection.h" | |
26 #include "../../../OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h" | |
2867 | 27 |
28 #include "../QueryRetrieveHandler.h" | |
29 | |
30 namespace Orthanc | |
31 { | |
3095
beeeb6096f27
removing dependencies upon ServerContext
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
32 class ServerContext; |
beeeb6096f27
removing dependencies upon ServerContext
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
33 |
2867 | 34 class DicomMoveScuJob : public SetOfCommandsJob |
35 { | |
36 private: | |
37 class Command; | |
38 class Unserializer; | |
39 | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
40 ServerContext& context_; |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
41 DicomAssociationParameters parameters_; |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
42 std::string targetAet_; |
4730
7826ac059c31
Added Short/Simplify/Full options to format "/modalities/{id}/find-worklist" and "/queries/{id}/retrieve"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4729
diff
changeset
|
43 DicomFindAnswers query_; |
4729
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
44 DicomToJsonFormat queryFormat_; // New in 1.9.5 |
2867 | 45 |
3843
138d0dde41b5
end of replacements of DicomUserConnection by DicomControlUserConnection
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3712
diff
changeset
|
46 std::unique_ptr<DicomControlUserConnection> connection_; |
138d0dde41b5
end of replacements of DicomUserConnection by DicomControlUserConnection
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3712
diff
changeset
|
47 |
2867 | 48 void Retrieve(const DicomMap& findAnswer); |
49 | |
50 public: | |
4205 | 51 explicit DicomMoveScuJob(ServerContext& context) : |
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
|
52 context_(context), |
4730
7826ac059c31
Added Short/Simplify/Full options to format "/modalities/{id}/find-worklist" and "/queries/{id}/retrieve"
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4729
diff
changeset
|
53 query_(true /* this is for worklists */), |
4729
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
54 queryFormat_(DicomToJsonFormat_Short) |
2867 | 55 { |
56 } | |
57 | |
58 DicomMoveScuJob(ServerContext& context, | |
59 const Json::Value& serialized); | |
60 | |
61 void AddFindAnswer(const DicomMap& answer); | |
62 | |
63 void AddFindAnswer(QueryRetrieveHandler& query, | |
64 size_t i); | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
65 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
66 const DicomAssociationParameters& GetParameters() const |
2867 | 67 { |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
68 return parameters_; |
2867 | 69 } |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
70 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
71 void SetLocalAet(const std::string& aet); |
2867 | 72 |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
73 void SetRemoteModality(const RemoteModalityParameters& remote); |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
74 |
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
75 void SetTimeout(uint32_t timeout); |
2867 | 76 |
77 const std::string& GetTargetAet() const | |
78 { | |
79 return targetAet_; | |
80 } | |
3877
4b4f387c6bb8
making DicomMoveScuJob more consistent with DicomModalityStoreJob
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3870
diff
changeset
|
81 |
2867 | 82 void SetTargetAet(const std::string& aet); |
83 | |
4729
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
84 void SetQueryFormat(DicomToJsonFormat format); |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
85 |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
86 DicomToJsonFormat GetQueryFormat() const |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
87 { |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
88 return queryFormat_; |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
89 } |
4e2247df6327
Added "Short" and "Full" options in /modalities/id/find-worklist
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
90 |
4205 | 91 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE; |
2867 | 92 |
4205 | 93 virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE |
2867 | 94 { |
95 target = "DicomMoveScu"; | |
96 } | |
97 | |
4205 | 98 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE; |
2867 | 99 |
4205 | 100 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE; |
2867 | 101 }; |
102 } |