Mercurial > hg > orthanc
annotate OrthancFramework/Sources/JobsEngine/SetOfCommandsJob.h @ 4301:6919242d2265
Fix keep-alive in the embedded HTTP server by setting the "Keep-Alive" HTTP header
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 06 Nov 2020 09:58:48 +0100 |
parents | b30a8de92ad9 |
children | 44b53a2c0a13 |
rev | line source |
---|---|
2860 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
3640
94f4a18a79cc
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3060
diff
changeset
|
5 * Copyright (C) 2017-2020 Osimis S.A., Belgium |
2860 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
8 * modify it under the terms of the GNU Lesser General Public License |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
9 * as published by the Free Software Foundation, either version 3 of |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
10 * the License, or (at your option) any later version. |
2860 | 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 | |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
15 * Lesser General Public License for more details. |
2860 | 16 * |
4119
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
17 * You should have received a copy of the GNU Lesser General Public |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
18 * License along with this program. If not, see |
bf7b9edf6b81
re-licensing the OrthancFramework to LGPL, in order to license Stone of Orthanc under LGPL
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4063
diff
changeset
|
19 * <http://www.gnu.org/licenses/>. |
2860 | 20 **/ |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "IJob.h" | |
26 | |
4202
2007ab69ac16
moving ORTHANC_FORCE_INLINE and ORTHANC_OVERRIDE from Enumerations.h to Compatibility.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4119
diff
changeset
|
27 #include "../Compatibility.h" // For ORTHANC_OVERRIDE |
2007ab69ac16
moving ORTHANC_FORCE_INLINE and ORTHANC_OVERRIDE from Enumerations.h to Compatibility.h
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4119
diff
changeset
|
28 |
2860 | 29 #include <set> |
30 | |
31 namespace Orthanc | |
32 { | |
4063
e00f3d089991
shared library of orthanc framework
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4044
diff
changeset
|
33 class ORTHANC_PUBLIC SetOfCommandsJob : public IJob |
2860 | 34 { |
35 public: | |
36 class ICommand : public boost::noncopyable | |
37 { | |
38 public: | |
4300 | 39 virtual ~ICommand(); |
2860 | 40 |
3658
2d90dd30858c
providing job ID to the IJob::Step() methods
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
41 virtual bool Execute(const std::string& jobId) = 0; |
2860 | 42 |
43 virtual void Serialize(Json::Value& target) const = 0; | |
44 }; | |
45 | |
46 class ICommandUnserializer : public boost::noncopyable | |
47 { | |
48 public: | |
4300 | 49 virtual ~ICommandUnserializer(); |
2860 | 50 |
51 virtual ICommand* Unserialize(const Json::Value& source) const = 0; | |
52 }; | |
53 | |
54 private: | |
55 bool started_; | |
56 std::vector<ICommand*> commands_; | |
57 bool permissive_; | |
58 size_t position_; | |
59 std::string description_; | |
60 | |
61 public: | |
62 SetOfCommandsJob(); | |
63 | |
64 SetOfCommandsJob(ICommandUnserializer* unserializer /* takes ownership */, | |
65 const Json::Value& source); | |
66 | |
67 virtual ~SetOfCommandsJob(); | |
68 | |
4300 | 69 size_t GetPosition() const; |
2860 | 70 |
4300 | 71 void SetDescription(const std::string& description); |
2860 | 72 |
73 const std::string& GetDescription() const | |
74 { | |
75 return description_; | |
76 } | |
77 | |
78 void Reserve(size_t size); | |
79 | |
4300 | 80 size_t GetCommandsCount() const; |
2860 | 81 |
82 void AddCommand(ICommand* command); // Takes ownership | |
83 | |
4300 | 84 bool IsPermissive() const; |
2860 | 85 |
86 void SetPermissive(bool permissive); | |
87 | |
3674
9201a7858cce
fix warnings with recent wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3658
diff
changeset
|
88 virtual void Reset() ORTHANC_OVERRIDE; |
2860 | 89 |
4300 | 90 virtual void Start() ORTHANC_OVERRIDE; |
2860 | 91 |
3674
9201a7858cce
fix warnings with recent wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3658
diff
changeset
|
92 virtual float GetProgress() ORTHANC_OVERRIDE; |
2860 | 93 |
4300 | 94 bool IsStarted() const; |
2860 | 95 |
96 const ICommand& GetCommand(size_t index) const; | |
97 | |
3658
2d90dd30858c
providing job ID to the IJob::Step() methods
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3640
diff
changeset
|
98 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE; |
2860 | 99 |
3674
9201a7858cce
fix warnings with recent wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3658
diff
changeset
|
100 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE; |
2860 | 101 |
3674
9201a7858cce
fix warnings with recent wasm
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
3658
diff
changeset
|
102 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE; |
2976
cb5d75143da0
Asynchronous generation of ZIP archives and DICOM medias
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2860
diff
changeset
|
103 |
cb5d75143da0
Asynchronous generation of ZIP archives and DICOM medias
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2860
diff
changeset
|
104 virtual bool GetOutput(std::string& output, |
cb5d75143da0
Asynchronous generation of ZIP archives and DICOM medias
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2860
diff
changeset
|
105 MimeType& mime, |
4300 | 106 const std::string& key) ORTHANC_OVERRIDE; |
2860 | 107 }; |
108 } |