Mercurial > hg > orthanc
annotate Core/EnumerationDictionary.h @ 3984:4769db115a02
fix Plugins/Samples/AutomatedJpeg2kCompression/Plugin.cpp
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 27 May 2020 16:44:36 +0200 |
parents | 94f4a18a79cc |
children | 5d2348b39392 |
rev | line source |
---|---|
434 | 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:
1103
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 |
434 | 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 "OrthancException.h" | |
37 | |
1102
ce6386b37afd
avoid unnecessary exceptions on Orthanc startup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
38 #include "Toolbox.h" |
434 | 39 #include <boost/lexical_cast.hpp> |
40 #include <string> | |
41 #include <map> | |
42 | |
43 namespace Orthanc | |
44 { | |
45 namespace Toolbox | |
46 { | |
47 template <typename Enumeration> | |
48 class EnumerationDictionary | |
49 { | |
50 private: | |
51 typedef std::map<Enumeration, std::string> EnumerationToString; | |
52 typedef std::map<std::string, Enumeration> StringToEnumeration; | |
53 | |
54 EnumerationToString enumerationToString_; | |
55 StringToEnumeration stringToEnumeration_; | |
56 | |
57 public: | |
1103
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
58 void Clear() |
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
59 { |
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
60 enumerationToString_.clear(); |
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
61 stringToEnumeration_.clear(); |
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
62 } |
bec1eccf976c
Hot restart of Orthanc
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1102
diff
changeset
|
63 |
1772
53e045b5a8ec
MIME content type can be associated to custom attachments (cf. "UserContentType")
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
64 bool Contains(Enumeration value) const |
53e045b5a8ec
MIME content type can be associated to custom attachments (cf. "UserContentType")
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
65 { |
53e045b5a8ec
MIME content type can be associated to custom attachments (cf. "UserContentType")
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
66 return enumerationToString_.find(value) != enumerationToString_.end(); |
53e045b5a8ec
MIME content type can be associated to custom attachments (cf. "UserContentType")
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
67 } |
53e045b5a8ec
MIME content type can be associated to custom attachments (cf. "UserContentType")
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
68 |
434 | 69 void Add(Enumeration value, const std::string& str) |
70 { | |
435
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
71 // Check if these values are free |
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
72 if (enumerationToString_.find(value) != enumerationToString_.end() || |
1102
ce6386b37afd
avoid unnecessary exceptions on Orthanc startup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
73 stringToEnumeration_.find(str) != stringToEnumeration_.end() || |
ce6386b37afd
avoid unnecessary exceptions on Orthanc startup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
74 Toolbox::IsInteger(str) /* Prevent the registration of a number */) |
435
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
75 { |
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
76 throw OrthancException(ErrorCode_BadRequest); |
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
77 } |
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
78 |
1102
ce6386b37afd
avoid unnecessary exceptions on Orthanc startup
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
79 // OK, the string is free and is not a number |
434 | 80 enumerationToString_[value] = str; |
81 stringToEnumeration_[str] = value; | |
82 stringToEnumeration_[boost::lexical_cast<std::string>(static_cast<int>(value))] = value; | |
83 } | |
84 | |
85 Enumeration Translate(const std::string& str) const | |
86 { | |
2975
e62e296a5714
use Toolbox::IsIntegeer instead of try_lexical_convert that is not available on some platform
am@osimis.io
parents:
2967
diff
changeset
|
87 if (Toolbox::IsInteger(str)) |
435
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
88 { |
2975
e62e296a5714
use Toolbox::IsIntegeer instead of try_lexical_convert that is not available on some platform
am@osimis.io
parents:
2967
diff
changeset
|
89 return static_cast<Enumeration>(boost::lexical_cast<int>(str)); |
435
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
90 } |
28ba73274919
registration of user-defined metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
434
diff
changeset
|
91 |
434 | 92 typename StringToEnumeration::const_iterator |
93 found = stringToEnumeration_.find(str); | |
94 | |
95 if (found == stringToEnumeration_.end()) | |
96 { | |
97 throw OrthancException(ErrorCode_InexistentItem); | |
98 } | |
99 else | |
100 { | |
101 return found->second; | |
102 } | |
103 } | |
104 | |
436
d51186bf7602
read access to metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
435
diff
changeset
|
105 std::string Translate(Enumeration e) const |
434 | 106 { |
107 typename EnumerationToString::const_iterator | |
108 found = enumerationToString_.find(e); | |
109 | |
110 if (found == enumerationToString_.end()) | |
111 { | |
436
d51186bf7602
read access to metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
435
diff
changeset
|
112 // No name for this item |
d51186bf7602
read access to metadata
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
435
diff
changeset
|
113 return boost::lexical_cast<std::string>(static_cast<int>(e)); |
434 | 114 } |
115 else | |
116 { | |
117 return found->second; | |
118 } | |
119 } | |
120 }; | |
121 } | |
122 } |