Mercurial > hg > orthanc
annotate Core/JobsEngine/Operations/SequenceOfOperationsJob.h @ 2736:02e04783f84b
typo
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 13 Jul 2018 17:08:19 +0200 |
parents | 2540ac79ab6c |
children | 7cfc8d266f41 |
rev | line source |
---|---|
2603 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
5 * Copyright (C) 2017-2018 Osimis S.A., Belgium | |
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 * In addition, as a special exception, the copyright holders of this | |
13 * program give permission to link the code of its release with the | |
14 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
15 * that use the same license as the "OpenSSL" library), and distribute | |
16 * the linked executables. You must obey the GNU General Public License | |
17 * in all respects for all of the code used other than "OpenSSL". If you | |
18 * modify file(s) with this exception, you may extend this exception to | |
19 * your version of the file(s), but you are not obligated to do so. If | |
20 * you do not wish to do so, delete this exception statement from your | |
21 * version. If you delete this exception statement from all source files | |
22 * in the program, then also delete it here. | |
23 * | |
24 * This program is distributed in the hope that it will be useful, but | |
25 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
27 * General Public License for more details. | |
28 * | |
29 * You should have received a copy of the GNU General Public License | |
30 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
31 **/ | |
32 | |
33 | |
34 #pragma once | |
35 | |
36 #include "../IJob.h" | |
37 #include "IJobOperation.h" | |
38 | |
2608
25225f0b4f33
simplification wrt. dicom connection manager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2603
diff
changeset
|
39 #include "../../DicomNetworking/TimeoutDicomConnectionManager.h" |
25225f0b4f33
simplification wrt. dicom connection manager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2603
diff
changeset
|
40 |
2603 | 41 #include <boost/thread/mutex.hpp> |
42 #include <boost/thread/condition_variable.hpp> | |
43 | |
44 #include <list> | |
45 | |
46 namespace Orthanc | |
47 { | |
48 class SequenceOfOperationsJob : public IJob | |
49 { | |
50 public: | |
51 class IObserver : public boost::noncopyable | |
52 { | |
53 public: | |
54 virtual ~IObserver() | |
55 { | |
56 } | |
57 | |
58 virtual void SignalDone(const SequenceOfOperationsJob& job) = 0; | |
59 }; | |
60 | |
61 private: | |
62 class Operation; | |
63 | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
64 std::string description_; |
2603 | 65 bool done_; |
66 boost::mutex mutex_; | |
67 std::vector<Operation*> operations_; | |
68 size_t current_; | |
69 boost::condition_variable operationAdded_; | |
70 boost::posix_time::time_duration trailingTimeout_; | |
71 std::list<IObserver*> observers_; | |
2608
25225f0b4f33
simplification wrt. dicom connection manager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2603
diff
changeset
|
72 TimeoutDicomConnectionManager connectionManager_; |
2603 | 73 |
74 public: | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
75 SequenceOfOperationsJob(); |
2603 | 76 |
2666
2540ac79ab6c
SequenceOfOperationsJob serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2663
diff
changeset
|
77 SequenceOfOperationsJob(IJobUnserializer& unserializer, |
2540ac79ab6c
SequenceOfOperationsJob serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2663
diff
changeset
|
78 const Json::Value& serialized); |
2540ac79ab6c
SequenceOfOperationsJob serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2663
diff
changeset
|
79 |
2603 | 80 virtual ~SequenceOfOperationsJob(); |
81 | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
82 void SetDescription(const std::string& description); |
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
83 |
2666
2540ac79ab6c
SequenceOfOperationsJob serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2663
diff
changeset
|
84 void GetDescription(std::string& description); |
2540ac79ab6c
SequenceOfOperationsJob serialization
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2663
diff
changeset
|
85 |
2603 | 86 void Register(IObserver& observer); |
87 | |
88 // This lock allows adding new operations to the end of the job, | |
89 // from another thread than the worker thread, after the job has | |
90 // been submitted for processing | |
91 class Lock : public boost::noncopyable | |
92 { | |
93 private: | |
94 SequenceOfOperationsJob& that_; | |
95 boost::mutex::scoped_lock lock_; | |
96 | |
97 public: | |
98 Lock(SequenceOfOperationsJob& that) : | |
99 that_(that), | |
100 lock_(that.mutex_) | |
101 { | |
102 } | |
103 | |
104 bool IsDone() const | |
105 { | |
106 return that_.done_; | |
107 } | |
108 | |
109 void SetTrailingOperationTimeout(unsigned int timeout); | |
110 | |
2620
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
111 void SetDicomAssociationTimeout(unsigned int timeout); |
2608
25225f0b4f33
simplification wrt. dicom connection manager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2603
diff
changeset
|
112 |
2603 | 113 size_t AddOperation(IJobOperation* operation); |
114 | |
115 size_t GetOperationsCount() const | |
116 { | |
117 return that_.operations_.size(); | |
118 } | |
119 | |
120 void AddInput(size_t index, | |
121 const JobOperationValue& value); | |
122 | |
123 void Connect(size_t input, | |
124 size_t output); | |
125 }; | |
126 | |
127 virtual void Start() | |
128 { | |
129 } | |
130 | |
131 virtual JobStepResult ExecuteStep(); | |
132 | |
133 virtual void SignalResubmit(); | |
134 | |
2608
25225f0b4f33
simplification wrt. dicom connection manager
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2603
diff
changeset
|
135 virtual void ReleaseResources(); |
2603 | 136 |
137 virtual float GetProgress(); | |
138 | |
139 virtual void GetJobType(std::string& target) | |
140 { | |
2616
2f3007bf0708
event queues in Lua, serialization of sequence of operations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2608
diff
changeset
|
141 target = "SequenceOfOperations"; |
2603 | 142 } |
143 | |
144 virtual void GetPublicContent(Json::Value& value); | |
145 | |
2663
228e2783ce83
some jobs might not be serializable
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2648
diff
changeset
|
146 virtual bool Serialize(Json::Value& value); |
2620
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
147 |
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
148 void AwakeTrailingSleep() |
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
149 { |
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
150 operationAdded_.notify_one(); |
1232922c8793
speeding up shutdown if Lua script is in trailing phase
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2616
diff
changeset
|
151 } |
2603 | 152 }; |
153 } |