Mercurial > hg > orthanc-transfers
annotate Framework/TransferQuery.h @ 27:8f3137dc55c1
sync
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 06 Jul 2020 21:33:11 +0200 |
parents | b06103a50c95 |
children | 44a0430d7899 |
rev | line source |
---|---|
0 | 1 /** |
2 * Transfers accelerator plugin for Orthanc | |
19
b06103a50c95
upgrade to year 2020
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
12
diff
changeset
|
3 * Copyright (C) 2018-2020 Osimis S.A., Belgium |
0 | 4 * |
5 * This program is free software: you can redistribute it and/or | |
6 * modify it under the terms of the GNU Affero General Public License | |
7 * as published by the Free Software Foundation, either version 3 of | |
8 * the License, or (at your option) any later version. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, but | |
11 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 * Affero General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU Affero General Public License | |
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
17 **/ | |
18 | |
19 | |
20 #pragma once | |
21 | |
22 #include "TransferToolbox.h" | |
23 | |
24 #include <json/value.h> | |
25 | |
26 namespace OrthancPlugins | |
27 { | |
28 class TransferQuery | |
29 { | |
30 private: | |
31 std::string peer_; | |
32 Json::Value resources_; | |
33 BucketCompression compression_; | |
34 bool hasOriginator_; | |
35 std::string originator_; | |
36 int priority_; | |
37 | |
38 public: | |
12 | 39 explicit TransferQuery(const Json::Value& body); |
0 | 40 |
41 const std::string& GetPeer() const | |
42 { | |
43 return peer_; | |
44 } | |
45 | |
46 BucketCompression GetCompression() const | |
47 { | |
48 return compression_; | |
49 } | |
50 | |
51 const Json::Value& GetResources() const | |
52 { | |
53 return resources_; | |
54 } | |
55 | |
56 bool HasOriginator() const | |
57 { | |
58 return hasOriginator_; | |
59 } | |
60 | |
61 const std::string& GetOriginator() const; | |
62 | |
63 int GetPriority() const | |
64 { | |
65 return priority_; | |
66 } | |
67 | |
68 void Serialize(Json::Value& target) const; | |
69 }; | |
70 } |