Mercurial > hg > orthanc-databases
annotate Framework/Common/Dictionary.h @ 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 #pragma once | |
24 | |
25 #include "IValue.h" | |
26 | |
27 #include <map> | |
4 | 28 #include <stdint.h> |
0 | 29 |
30 namespace OrthancDatabases | |
31 { | |
32 class Dictionary : public boost::noncopyable | |
33 { | |
34 private: | |
35 typedef std::map<std::string, IValue*> Values; | |
36 | |
37 Values values_; | |
38 | |
39 public: | |
305
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
40 ~Dictionary() |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
41 { |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
42 Clear(); |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
43 } |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
44 |
87f0e29a1dc1
added Dictionary::Clear()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
193
diff
changeset
|
45 void Clear(); |
0 | 46 |
47 bool HasKey(const std::string& key) const; | |
48 | |
49 void Remove(const std::string& key); | |
50 | |
51 void SetValue(const std::string& key, | |
52 IValue* value); // Takes ownership | |
53 | |
54 void SetUtf8Value(const std::string& key, | |
55 const std::string& utf8); | |
56 | |
57 void SetBinaryValue(const std::string& key, | |
58 const std::string& binary); | |
59 | |
14
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
60 void SetFileValue(const std::string& key, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
61 const std::string& file); |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
62 |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
63 void SetFileValue(const std::string& key, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
64 const void* content, |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
65 size_t size); |
9774802fd05f
PostgreSQLStorageArea working
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
4
diff
changeset
|
66 |
0 | 67 void SetIntegerValue(const std::string& key, |
68 int64_t value); | |
69 | |
70 void SetNullValue(const std::string& key); | |
71 | |
72 const IValue& GetValue(const std::string& key) const; | |
73 }; | |
74 } |