Mercurial > hg > orthanc-databases
annotate Framework/Common/Dictionary.cpp @ 489:e8b4bb6a33e7
introduction of ORTHANC_SDK_COMPATIBLE_VERSIONS in CMake
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Mar 2024 14:27:36 +0100 |
parents | ecd0b719cff5 |
children | 54d518dcd74a |
rev | line source |
---|---|
0 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
459
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #include "Dictionary.h" | |
24 | |
25 #include "BinaryStringValue.h" | |
244
02cd7254c949
separating class InputFileValue from FileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
26 #include "InputFileValue.h" |
0 | 27 #include "Integer64Value.h" |
28 #include "NullValue.h" | |
29 #include "Utf8StringValue.h" | |
30 | |
152 | 31 #include <Logging.h> |
32 #include <OrthancException.h> | |
0 | 33 |
34 #include <cassert> | |
35 | |
36 namespace OrthancDatabases | |
37 { | |
305
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
38 void Dictionary::Clear() |
0 | 39 { |
40 for (Values::iterator it = values_.begin(); | |
41 it != values_.end(); ++it) | |
42 { | |
43 assert(it->second != NULL); | |
44 delete it->second; | |
45 } | |
305
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
46 |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
47 values_.clear(); |
0 | 48 } |
305
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
244
diff
changeset
|
49 |
0 | 50 |
51 bool Dictionary::HasKey(const std::string& key) const | |
52 { | |
53 return values_.find(key) != values_.end(); | |
54 } | |
55 | |
56 | |
57 void Dictionary::Remove(const std::string& key) | |
58 { | |
59 Values::iterator found = values_.find(key); | |
60 | |
61 if (found != values_.end()) | |
62 { | |
63 assert(found->second != NULL); | |
64 delete found->second; | |
65 values_.erase(found); | |
66 } | |
67 } | |
68 | |
69 | |
70 void Dictionary::SetValue(const std::string& key, | |
71 IValue* value) // Takes ownership | |
72 { | |
73 if (value == NULL) | |
74 { | |
75 throw Orthanc::OrthancException(Orthanc::ErrorCode_NullPointer); | |
76 } | |
77 | |
78 Values::iterator found = values_.find(key); | |
79 | |
80 if (found == values_.end()) | |
81 { | |
82 values_[key] = value; | |
83 } | |
84 else | |
85 { | |
86 assert(found->second != NULL); | |
87 delete found->second; | |
88 found->second = value; | |
89 } | |
90 } | |
91 | |
92 | |
93 void Dictionary::SetUtf8Value(const std::string& key, | |
94 const std::string& utf8) | |
95 { | |
96 SetValue(key, new Utf8StringValue(utf8)); | |
97 } | |
98 | |
99 | |
100 void Dictionary::SetBinaryValue(const std::string& key, | |
101 const std::string& binary) | |
102 { | |
103 SetValue(key, new BinaryStringValue(binary)); | |
104 } | |
105 | |
106 | |
14
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
107 void Dictionary::SetFileValue(const std::string& key, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
108 const std::string& file) |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
109 { |
244
02cd7254c949
separating class InputFileValue from FileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
110 SetValue(key, new InputFileValue(file)); |
14
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
111 } |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
112 |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
113 |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
114 void Dictionary::SetFileValue(const std::string& key, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
115 const void* content, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
116 size_t size) |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
117 { |
244
02cd7254c949
separating class InputFileValue from FileValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
118 SetValue(key, new InputFileValue(content, size)); |
14
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
119 } |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
120 |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
0
diff
changeset
|
121 |
0 | 122 void Dictionary::SetIntegerValue(const std::string& key, |
123 int64_t value) | |
124 { | |
125 SetValue(key, new Integer64Value(value)); | |
126 } | |
127 | |
128 | |
129 void Dictionary::SetNullValue(const std::string& key) | |
130 { | |
131 SetValue(key, new NullValue); | |
132 } | |
133 | |
134 | |
135 const IValue& Dictionary::GetValue(const std::string& key) const | |
136 { | |
137 Values::const_iterator found = values_.find(key); | |
138 | |
139 if (found == values_.end()) | |
140 { | |
141 LOG(ERROR) << "Inexistent value in a dictionary: " << key; | |
142 throw Orthanc::OrthancException(Orthanc::ErrorCode_InexistentItem); | |
143 } | |
144 else | |
145 { | |
146 assert(found->second != NULL); | |
147 return *found->second; | |
148 } | |
149 } | |
150 } |