Mercurial > hg > orthanc
annotate OrthancServer/Sources/ServerIndexChange.h @ 4372:bda867e036f3
tagging Orthanc framework 4a3ba4bf4ba7 for PostgreSQL 3.3
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Mon, 14 Dec 2020 17:33:17 +0100 |
parents | 05b8fd21089c |
children | d9473bd5ed43 |
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 |
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 |
1198 | 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 "ServerEnumerations.h" | |
4045 | 37 #include "../../OrthancFramework/Sources/IDynamicObject.h" |
38 #include "../../OrthancFramework/Sources/SystemToolbox.h" | |
1198 | 39 |
40 #include <string> | |
1240 | 41 #include <json/value.h> |
1198 | 42 |
43 namespace Orthanc | |
44 { | |
1436
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
45 struct ServerIndexChange : public IDynamicObject |
1198 | 46 { |
47 private: | |
1240 | 48 int64_t seq_; |
1198 | 49 ChangeType changeType_; |
50 ResourceType resourceType_; | |
51 std::string publicId_; | |
1240 | 52 std::string date_; |
1198 | 53 |
54 public: | |
55 ServerIndexChange(ChangeType changeType, | |
56 ResourceType resourceType, | |
1240 | 57 const std::string& publicId) : |
58 seq_(-1), | |
1198 | 59 changeType_(changeType), |
60 resourceType_(resourceType), | |
1240 | 61 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
|
62 date_(SystemToolbox::GetNowIsoString(true /* use UTC time (not local time) */)) |
1198 | 63 { |
64 } | |
65 | |
1240 | 66 ServerIndexChange(int64_t seq, |
67 ChangeType changeType, | |
68 ResourceType resourceType, | |
69 const std::string& publicId, | |
70 const std::string& date) : | |
71 seq_(seq), | |
72 changeType_(changeType), | |
73 resourceType_(resourceType), | |
74 publicId_(publicId), | |
75 date_(date) | |
76 { | |
77 } | |
78 | |
1436
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
79 ServerIndexChange(const ServerIndexChange& other) |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
80 : seq_(other.seq_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
81 changeType_(other.changeType_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
82 resourceType_(other.resourceType_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
83 publicId_(other.publicId_), |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
84 date_(other.date_) |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
85 { |
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 ServerIndexChange* Clone() const |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
89 { |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
90 return new ServerIndexChange(*this); |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
91 } |
0a3e3be59094
uncoupling of SignalChange for Lua scripts
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
92 |
1240 | 93 int64_t GetSeq() const |
94 { | |
95 return seq_; | |
96 } | |
97 | |
1198 | 98 ChangeType GetChangeType() const |
99 { | |
100 return changeType_; | |
101 } | |
102 | |
103 ResourceType GetResourceType() const | |
104 { | |
105 return resourceType_; | |
106 } | |
107 | |
108 const std::string& GetPublicId() const | |
109 { | |
110 return publicId_; | |
111 } | |
1240 | 112 |
113 const std::string& GetDate() const | |
114 { | |
115 return date_; | |
116 } | |
117 | |
118 void Format(Json::Value& item) const | |
119 { | |
120 item = Json::objectValue; | |
121 item["Seq"] = static_cast<int>(seq_); | |
122 item["ChangeType"] = EnumerationToString(changeType_); | |
123 item["ResourceType"] = EnumerationToString(resourceType_); | |
124 item["ID"] = publicId_; | |
125 item["Path"] = GetBasePath(resourceType_, publicId_); | |
126 item["Date"] = date_; | |
127 } | |
1198 | 128 }; |
129 } |