Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerJobs/Operations/SystemCallOperation.h @ 5449:29858f424fc7
fix framework md5
author | Alain Mazy <am@osimis.io> |
---|---|
date | Wed, 29 Nov 2023 09:28:21 +0100 |
parents | 0ea402b4d901 |
children | 48b8dae6dc77 |
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 | |
5185
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4892
diff
changeset
|
5 * Copyright (C) 2017-2023 Osimis S.A., Belgium |
0ea402b4d901
upgrade to year 2023
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4892
diff
changeset
|
6 * Copyright (C) 2021-2023 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
2606 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU General Public License as | |
10 * published by the Free Software Foundation, either version 3 of the | |
11 * License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
4205 | 25 #include "../../../../OrthancFramework/Sources/Compatibility.h" // For ORTHANC_OVERRIDE |
4045 | 26 #include "../../../../OrthancFramework/Sources/JobsEngine/Operations/IJobOperation.h" |
2606 | 27 |
28 #include <string> | |
29 | |
30 namespace Orthanc | |
31 { | |
32 class SystemCallOperation : public IJobOperation | |
33 { | |
34 private: | |
35 std::string command_; | |
36 std::vector<std::string> preArguments_; | |
37 std::vector<std::string> postArguments_; | |
38 | |
39 public: | |
4205 | 40 explicit SystemCallOperation(const std::string& command) : |
2606 | 41 command_(command) |
42 { | |
43 } | |
44 | |
4205 | 45 explicit SystemCallOperation(const Json::Value& serialized); |
2655 | 46 |
2606 | 47 SystemCallOperation(const std::string& command, |
48 const std::vector<std::string>& preArguments, | |
49 const std::vector<std::string>& postArguments) : | |
50 command_(command), | |
51 preArguments_(preArguments), | |
52 postArguments_(postArguments) | |
53 { | |
54 } | |
55 | |
56 void AddPreArgument(const std::string& argument) | |
57 { | |
58 preArguments_.push_back(argument); | |
59 } | |
60 | |
61 void AddPostArgument(const std::string& argument) | |
62 { | |
63 postArguments_.push_back(argument); | |
64 } | |
65 | |
2659 | 66 const std::string& GetCommand() const |
67 { | |
68 return command_; | |
69 } | |
70 | |
71 size_t GetPreArgumentsCount() const | |
72 { | |
73 return preArguments_.size(); | |
74 } | |
75 | |
76 size_t GetPostArgumentsCount() const | |
77 { | |
78 return postArguments_.size(); | |
79 } | |
80 | |
81 const std::string& GetPreArgument(size_t i) const; | |
82 | |
83 const std::string& GetPostArgument(size_t i) const; | |
84 | |
2606 | 85 virtual void Apply(JobOperationValues& outputs, |
4310
2ae905070221
renaming pure interface JobOperationValue as IJobOperationValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4205
diff
changeset
|
86 const IJobOperationValue& input) ORTHANC_OVERRIDE; |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
87 |
4205 | 88 virtual void Serialize(Json::Value& result) const ORTHANC_OVERRIDE; |
2606 | 89 }; |
90 } | |
91 |