0
|
1 /**
|
|
2 * Transfers accelerator plugin for Orthanc
|
|
3 * Copyright (C) 2018 Osimis, Belgium
|
|
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:
|
|
39 TransferQuery(const Json::Value& body);
|
|
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 }
|