Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/Operations/SystemCallOperation.cpp @ 5853:4d932683049d get-scu tip
very first implementation of C-Get SCU
author | Alain Mazy <am@orthanc.team> |
---|---|
date | Tue, 29 Oct 2024 17:25:49 +0100 |
parents | f7adfb22e20e |
children |
rev | line source |
---|---|
2606 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5640
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
f7adfb22e20e
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5485
diff
changeset
|
6 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
5485
48b8dae6dc77
upgrade to year 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
5185
diff
changeset
|
7 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
2606 | 8 * |
9 * This program is free software: you can redistribute it and/or | |
10 * modify it under the terms of the GNU General Public License as | |
11 * published by the Free Software Foundation, either version 3 of the | |
12 * License, or (at your option) any later version. | |
13 * | |
14 * This program is distributed in the hope that it will be useful, but | |
15 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
17 * General Public License for more details. | |
18 * | |
19 * You should have received a copy of the GNU General Public License | |
20 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
21 **/ | |
22 | |
23 | |
2641 | 24 #include "../../PrecompiledHeadersServer.h" |
2606 | 25 #include "SystemCallOperation.h" |
26 | |
27 #include "DicomInstanceOperationValue.h" | |
28 | |
4045 | 29 #include "../../../../OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.h" |
30 #include "../../../../OrthancFramework/Sources/Logging.h" | |
31 #include "../../../../OrthancFramework/Sources/OrthancException.h" | |
32 #include "../../../../OrthancFramework/Sources/SerializationToolbox.h" | |
33 #include "../../../../OrthancFramework/Sources/TemporaryFile.h" | |
34 #include "../../../../OrthancFramework/Sources/Toolbox.h" | |
35 #include "../../../../OrthancFramework/Sources/SystemToolbox.h" | |
3181
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
36 #include "../../OrthancConfiguration.h" |
2606 | 37 |
38 namespace Orthanc | |
39 { | |
2659 | 40 const std::string& SystemCallOperation::GetPreArgument(size_t i) const |
41 { | |
42 if (i >= preArguments_.size()) | |
43 { | |
44 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
45 } | |
46 else | |
47 { | |
48 return preArguments_[i]; | |
49 } | |
50 } | |
51 | |
52 | |
53 const std::string& SystemCallOperation::GetPostArgument(size_t i) const | |
54 { | |
55 if (i >= postArguments_.size()) | |
56 { | |
57 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
58 } | |
59 else | |
60 { | |
61 return postArguments_[i]; | |
62 } | |
63 } | |
64 | |
65 | |
2606 | 66 void SystemCallOperation::Apply(JobOperationValues& outputs, |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
67 const IJobOperationValue& input) |
2606 | 68 { |
69 std::vector<std::string> arguments = preArguments_; | |
70 | |
71 arguments.reserve(arguments.size() + postArguments_.size() + 1); | |
72 | |
3712
2a170a8f1faf
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
73 std::unique_ptr<TemporaryFile> tmp; |
2606 | 74 |
75 switch (input.GetType()) | |
76 { | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
77 case IJobOperationValue::Type_DicomInstance: |
2606 | 78 { |
79 const DicomInstanceOperationValue& instance = | |
80 dynamic_cast<const DicomInstanceOperationValue&>(input); | |
81 | |
82 std::string dicom; | |
2651
1da5a052c777
testing value serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2641
diff
changeset
|
83 instance.ReadDicom(dicom); |
2606 | 84 |
3181
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
85 { |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
86 OrthancConfiguration::ReaderLock lock; |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
87 tmp.reset(lock.GetConfiguration().CreateTemporaryFile()); |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
88 } |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
89 |
2606 | 90 tmp->Write(dicom); |
91 | |
92 arguments.push_back(tmp->GetPath()); | |
93 break; | |
94 } | |
95 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
96 case IJobOperationValue::Type_String: |
2606 | 97 { |
98 const StringOperationValue& value = | |
99 dynamic_cast<const StringOperationValue&>(input); | |
100 | |
101 arguments.push_back(value.GetContent()); | |
102 break; | |
103 } | |
104 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
105 case IJobOperationValue::Type_Null: |
2606 | 106 break; |
107 | |
108 default: | |
109 throw OrthancException(ErrorCode_BadParameterType); | |
110 } | |
111 | |
112 for (size_t i = 0; i < postArguments_.size(); i++) | |
113 { | |
114 arguments.push_back(postArguments_[i]); | |
115 } | |
116 | |
117 std::string info = command_; | |
118 for (size_t i = 0; i < arguments.size(); i++) | |
119 { | |
120 info += " " + arguments[i]; | |
121 } | |
122 | |
2607
44e268605478
ModifyInstanceOperation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2606
diff
changeset
|
123 LOG(INFO) << "Lua: System call: \"" << info << "\""; |
2606 | 124 |
125 try | |
126 { | |
127 SystemToolbox::ExecuteSystemCommand(command_, arguments); | |
128 | |
129 // Only chain with other commands if this operation succeeds | |
130 outputs.Append(input.Clone()); | |
131 } | |
132 catch (OrthancException& e) | |
133 { | |
2607
44e268605478
ModifyInstanceOperation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2606
diff
changeset
|
134 LOG(ERROR) << "Lua: Failed system call - \"" << info << "\": " << e.What(); |
2606 | 135 } |
136 } | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
137 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
138 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
139 void SystemCallOperation::Serialize(Json::Value& result) const |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
140 { |
2654 | 141 result = Json::objectValue; |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
142 result["Type"] = "SystemCall"; |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
143 result["Command"] = command_; |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
144 SerializationToolbox::WriteArrayOfStrings(result, preArguments_, "PreArguments"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
145 SerializationToolbox::WriteArrayOfStrings(result, postArguments_, "PostArguments"); |
2655 | 146 } |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
147 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
148 |
2655 | 149 SystemCallOperation::SystemCallOperation(const Json::Value& serialized) |
150 { | |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
151 if (SerializationToolbox::ReadString(serialized, "Type") != "SystemCall") |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
152 { |
2655 | 153 throw OrthancException(ErrorCode_BadFileFormat); |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
154 } |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
155 |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
156 command_ = SerializationToolbox::ReadString(serialized, "Command"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
157 SerializationToolbox::ReadArrayOfStrings(preArguments_, serialized, "PreArguments"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
158 SerializationToolbox::ReadArrayOfStrings(postArguments_, serialized, "PostArguments"); |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
159 } |
2606 | 160 } |