Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerIndexChange.h @ 4834:bec432ee1094
download of numpy arrays from the REST API
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 26 Nov 2021 19:03:32 +0100 |
parents | 7053502fbf97 |
children | 2e71a08eea15 43e613a7756b |
rev | line source |
---|---|
1198 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
1900 | 3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics |
1288
6e7e5ed91c2d
upgrade to year 2015
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1242
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
4437
d9473bd5ed43
upgrade to year 2021
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4045
diff
changeset
|
5 * Copyright (C) 2017-2021 Osimis S.A., Belgium |
4831
7053502fbf97
added copyright UCLouvain
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4437
diff
changeset
|
6 * Copyright (C) 2021-2021 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
1198 | 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 * In addition, as a special exception, the copyright holders of this | |
14 * program give permission to link the code of its release with the | |
15 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
16 * that use the same license as the "OpenSSL" library), and distribute | |
17 * the linked executables. You must obey the GNU General Public License | |
18 * in all respects for all of the code used other than "OpenSSL". If you | |
19 * modify file(s) with this exception, you may extend this exception to | |
20 * your version of the file(s), but you are not obligated to do so. If | |
21 * you do not wish to do so, delete this exception statement from your | |
22 * version. If you delete this exception statement from all source files | |
23 * in the program, then also delete it here. | |
24 * | |
25 * This program is distributed in the hope that it will be useful, but | |
26 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
28 * General Public License for more details. | |
29 * | |
30 * You should have received a copy of the GNU General Public License | |
31 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
32 **/ | |
33 | |
34 | |
35 #pragma once | |
36 | |
37 #include "ServerEnumerations.h" | |
4045 | 38 #include "../../OrthancFramework/Sources/IDynamicObject.h" |
39 #include "../../OrthancFramework/Sources/SystemToolbox.h" | |
1198 | 40 |
41 #include <string> | |
1240 | 42 #include <json/value.h> |
1198 | 43 |
44 namespace Orthanc | |
45 { | |
1436
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
46 struct ServerIndexChange : public IDynamicObject |
1198 | 47 { |
48 private: | |
1240 | 49 int64_t seq_; |
1198 | 50 ChangeType changeType_; |
51 ResourceType resourceType_; | |
52 std::string publicId_; | |
1240 | 53 std::string date_; |
1198 | 54 |
55 public: | |
56 ServerIndexChange(ChangeType changeType, | |
57 ResourceType resourceType, | |
1240 | 58 const std::string& publicId) : |
59 seq_(-1), | |
1198 | 60 changeType_(changeType), |
61 resourceType_(resourceType), | |
1240 | 62 publicId_(publicId), |
2475
8cc3ca64a534
Orthanc now uses UTC (universal time) instead of local time in its database
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
2447
diff
changeset
|
63 date_(SystemToolbox::GetNowIsoString(true /* use UTC time (not local time) */)) |
1198 | 64 { |
65 } | |
66 | |
1240 | 67 ServerIndexChange(int64_t seq, |
68 ChangeType changeType, | |
69 ResourceType resourceType, | |
70 const std::string& publicId, | |
71 const std::string& date) : | |
72 seq_(seq), | |
73 changeType_(changeType), | |
74 resourceType_(resourceType), | |
75 publicId_(publicId), | |
76 date_(date) | |
77 { | |
78 } | |
79 | |
1436
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
80 ServerIndexChange(const ServerIndexChange& other) |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
81 : seq_(other.seq_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
82 changeType_(other.changeType_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
83 resourceType_(other.resourceType_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
84 publicId_(other.publicId_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
85 date_(other.date_) |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
86 { |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
87 } |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
88 |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
89 ServerIndexChange* Clone() const |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
90 { |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
91 return new ServerIndexChange(*this); |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
92 } |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
93 |
1240 | 94 int64_t GetSeq() const |
95 { | |
96 return seq_; | |
97 } | |
98 | |
1198 | 99 ChangeType GetChangeType() const |
100 { | |
101 return changeType_; | |
102 } | |
103 | |
104 ResourceType GetResourceType() const | |
105 { | |
106 return resourceType_; | |
107 } | |
108 | |
109 const std::string& GetPublicId() const | |
110 { | |
111 return publicId_; | |
112 } | |
1240 | 113 |
114 const std::string& GetDate() const | |
115 { | |
116 return date_; | |
117 } | |
118 | |
119 void Format(Json::Value& item) const | |
120 { | |
121 item = Json::objectValue; | |
122 item["Seq"] = static_cast<int>(seq_); | |
123 item["ChangeType"] = EnumerationToString(changeType_); | |
124 item["ResourceType"] = EnumerationToString(resourceType_); | |
125 item["ID"] = publicId_; | |
126 item["Path"] = GetBasePath(resourceType_, publicId_); | |
127 item["Date"] = date_; | |
128 } | |
1198 | 129 }; |
130 } |