Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/Operations/SystemCallOperation.cpp @ 4741:a6b7c29f5118 openssl-3.x
compiler warning about openssl license
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 06 Jul 2021 09:52:15 +0200 |
parents | f0038043fb97 |
children | 2e71a08eea15 |
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 | |
4437
d9473bd5ed43
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4310
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
2606 | 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 | |
2641 | 22 #include "../../PrecompiledHeadersServer.h" |
2606 | 23 #include "SystemCallOperation.h" |
24 | |
25 #include "DicomInstanceOperationValue.h" | |
26 | |
4045 | 27 #include "../../../../OrthancFramework/Sources/JobsEngine/Operations/StringOperationValue.h" |
28 #include "../../../../OrthancFramework/Sources/Logging.h" | |
29 #include "../../../../OrthancFramework/Sources/OrthancException.h" | |
30 #include "../../../../OrthancFramework/Sources/SerializationToolbox.h" | |
31 #include "../../../../OrthancFramework/Sources/TemporaryFile.h" | |
32 #include "../../../../OrthancFramework/Sources/Toolbox.h" | |
33 #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
|
34 #include "../../OrthancConfiguration.h" |
2606 | 35 |
36 namespace Orthanc | |
37 { | |
2659 | 38 const std::string& SystemCallOperation::GetPreArgument(size_t i) const |
39 { | |
40 if (i >= preArguments_.size()) | |
41 { | |
42 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
43 } | |
44 else | |
45 { | |
46 return preArguments_[i]; | |
47 } | |
48 } | |
49 | |
50 | |
51 const std::string& SystemCallOperation::GetPostArgument(size_t i) const | |
52 { | |
53 if (i >= postArguments_.size()) | |
54 { | |
55 throw OrthancException(ErrorCode_ParameterOutOfRange); | |
56 } | |
57 else | |
58 { | |
59 return postArguments_[i]; | |
60 } | |
61 } | |
62 | |
63 | |
2606 | 64 void SystemCallOperation::Apply(JobOperationValues& outputs, |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
65 const IJobOperationValue& input) |
2606 | 66 { |
67 std::vector<std::string> arguments = preArguments_; | |
68 | |
69 arguments.reserve(arguments.size() + postArguments_.size() + 1); | |
70 | |
3712
2a170a8f1faf
replacing std::auto_ptr by std::unique_ptr
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
71 std::unique_ptr<TemporaryFile> tmp; |
2606 | 72 |
73 switch (input.GetType()) | |
74 { | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
75 case IJobOperationValue::Type_DicomInstance: |
2606 | 76 { |
77 const DicomInstanceOperationValue& instance = | |
78 dynamic_cast<const DicomInstanceOperationValue&>(input); | |
79 | |
80 std::string dicom; | |
2651
1da5a052c777
testing value serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2641
diff
changeset
|
81 instance.ReadDicom(dicom); |
2606 | 82 |
3181
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
83 { |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
84 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
|
85 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
|
86 } |
6fd38327e777
Fix issue #130 (Orthanc failed to start when /tmp partition was full)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3095
diff
changeset
|
87 |
2606 | 88 tmp->Write(dicom); |
89 | |
90 arguments.push_back(tmp->GetPath()); | |
91 break; | |
92 } | |
93 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
94 case IJobOperationValue::Type_String: |
2606 | 95 { |
96 const StringOperationValue& value = | |
97 dynamic_cast<const StringOperationValue&>(input); | |
98 | |
99 arguments.push_back(value.GetContent()); | |
100 break; | |
101 } | |
102 | |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
103 case IJobOperationValue::Type_Null: |
2606 | 104 break; |
105 | |
106 default: | |
107 throw OrthancException(ErrorCode_BadParameterType); | |
108 } | |
109 | |
110 for (size_t i = 0; i < postArguments_.size(); i++) | |
111 { | |
112 arguments.push_back(postArguments_[i]); | |
113 } | |
114 | |
115 std::string info = command_; | |
116 for (size_t i = 0; i < arguments.size(); i++) | |
117 { | |
118 info += " " + arguments[i]; | |
119 } | |
120 | |
2607
44e268605478
ModifyInstanceOperation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2606
diff
changeset
|
121 LOG(INFO) << "Lua: System call: \"" << info << "\""; |
2606 | 122 |
123 try | |
124 { | |
125 SystemToolbox::ExecuteSystemCommand(command_, arguments); | |
126 | |
127 // Only chain with other commands if this operation succeeds | |
128 outputs.Append(input.Clone()); | |
129 } | |
130 catch (OrthancException& e) | |
131 { | |
2607
44e268605478
ModifyInstanceOperation
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2606
diff
changeset
|
132 LOG(ERROR) << "Lua: Failed system call - \"" << info << "\": " << e.What(); |
2606 | 133 } |
134 } | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
135 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
136 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
137 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
|
138 { |
2654 | 139 result = Json::objectValue; |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
140 result["Type"] = "SystemCall"; |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
141 result["Command"] = command_; |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
142 SerializationToolbox::WriteArrayOfStrings(result, preArguments_, "PreArguments"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
143 SerializationToolbox::WriteArrayOfStrings(result, postArguments_, "PostArguments"); |
2655 | 144 } |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
145 |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
146 |
2655 | 147 SystemCallOperation::SystemCallOperation(const Json::Value& serialized) |
148 { | |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
149 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
|
150 { |
2655 | 151 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
|
152 } |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
153 |
2656
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
154 command_ = SerializationToolbox::ReadString(serialized, "Command"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
155 SerializationToolbox::ReadArrayOfStrings(preArguments_, serialized, "PreArguments"); |
a6d3e45eeff5
SerializationToolbox
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2655
diff
changeset
|
156 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
|
157 } |
2606 | 158 } |