Mercurial > hg > orthanc
annotate Core/DicomFormat/DicomMap.h @ 1926:2a129de4b5e2
EnumerationToString for PixelFormat
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 09 Mar 2016 09:53:41 +0100 |
parents | b1291df2f780 |
children | 655489d9165d |
rev | line source |
---|---|
0 | 1 /** |
59 | 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:
1228
diff
changeset
|
4 * Department, University Hospital of Liege, Belgium |
0 | 5 * |
6 * This program is free software: you can redistribute it and/or | |
7 * modify it under the terms of the GNU General Public License as | |
8 * published by the Free Software Foundation, either version 3 of the | |
9 * License, or (at your option) any later version. | |
136 | 10 * |
11 * In addition, as a special exception, the copyright holders of this | |
12 * program give permission to link the code of its release with the | |
13 * OpenSSL project's "OpenSSL" library (or with modified versions of it | |
14 * that use the same license as the "OpenSSL" library), and distribute | |
15 * the linked executables. You must obey the GNU General Public License | |
16 * in all respects for all of the code used other than "OpenSSL". If you | |
17 * modify file(s) with this exception, you may extend this exception to | |
18 * your version of the file(s), but you are not obligated to do so. If | |
19 * you do not wish to do so, delete this exception statement from your | |
20 * version. If you delete this exception statement from all source files | |
21 * in the program, then also delete it here. | |
0 | 22 * |
23 * This program is distributed in the hope that it will be useful, but | |
24 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
26 * General Public License for more details. | |
27 * | |
28 * You should have received a copy of the GNU General Public License | |
29 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
30 **/ | |
31 | |
32 | |
33 #pragma once | |
34 | |
35 #include "DicomTag.h" | |
36 #include "DicomValue.h" | |
562
f64e3838d6e1
refactoring enumerations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
398
diff
changeset
|
37 #include "../Enumerations.h" |
0 | 38 |
567 | 39 #include <set> |
0 | 40 #include <map> |
41 #include <json/json.h> | |
42 | |
59 | 43 namespace Orthanc |
0 | 44 { |
45 class DicomMap : public boost::noncopyable | |
46 { | |
47 private: | |
48 friend class DicomArray; | |
49 friend class FromDcmtkBridge; | |
50 friend class ToDcmtkBridge; | |
51 | |
52 typedef std::map<DicomTag, DicomValue*> Map; | |
53 | |
54 Map map_; | |
55 | |
56 // Warning: This takes the ownership of "value" | |
57 void SetValue(uint16_t group, | |
58 uint16_t element, | |
59 DicomValue* value); | |
60 | |
61 void SetValue(DicomTag tag, | |
62 DicomValue* value); | |
63 | |
64 void ExtractTags(DicomMap& source, | |
65 const DicomTag* tags, | |
66 size_t count) const; | |
567 | 67 |
68 static void GetMainDicomTagsInternal(std::set<DicomTag>& result, ResourceType level); | |
0 | 69 |
70 public: | |
71 DicomMap() | |
72 { | |
73 } | |
74 | |
75 ~DicomMap() | |
76 { | |
77 Clear(); | |
78 } | |
1331
77e129ba64e4
Prevent freeze on C-FIND if no DICOM tag is to be returned
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1310
diff
changeset
|
79 |
77e129ba64e4
Prevent freeze on C-FIND if no DICOM tag is to be returned
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1310
diff
changeset
|
80 size_t GetSize() const |
77e129ba64e4
Prevent freeze on C-FIND if no DICOM tag is to be returned
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1310
diff
changeset
|
81 { |
77e129ba64e4
Prevent freeze on C-FIND if no DICOM tag is to be returned
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1310
diff
changeset
|
82 return map_.size(); |
77e129ba64e4
Prevent freeze on C-FIND if no DICOM tag is to be returned
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1310
diff
changeset
|
83 } |
1310
61ce8147f30d
custom database back-end
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
84 |
61ce8147f30d
custom database back-end
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
85 DicomMap* Clone() const; |
0 | 86 |
1310
61ce8147f30d
custom database back-end
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1288
diff
changeset
|
87 void Assign(const DicomMap& other); |
0 | 88 |
89 void Clear(); | |
90 | |
91 void SetValue(uint16_t group, | |
92 uint16_t element, | |
93 const DicomValue& value) | |
94 { | |
95 SetValue(group, element, value.Clone()); | |
96 } | |
97 | |
98 void SetValue(const DicomTag& tag, | |
99 const DicomValue& value) | |
100 { | |
101 SetValue(tag, value.Clone()); | |
102 } | |
103 | |
104 void SetValue(const DicomTag& tag, | |
105 const std::string& str) | |
106 { | |
1737
ec66a16aa398
removal of DicomStringValue and DicomNullValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1364
diff
changeset
|
107 SetValue(tag, new DicomValue(str, false)); |
0 | 108 } |
109 | |
110 void SetValue(uint16_t group, | |
111 uint16_t element, | |
112 const std::string& str) | |
113 { | |
1737
ec66a16aa398
removal of DicomStringValue and DicomNullValue
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1364
diff
changeset
|
114 SetValue(group, element, new DicomValue(str, false)); |
0 | 115 } |
116 | |
117 bool HasTag(uint16_t group, uint16_t element) const | |
118 { | |
119 return HasTag(DicomTag(group, element)); | |
120 } | |
121 | |
122 bool HasTag(const DicomTag& tag) const | |
123 { | |
124 return map_.find(tag) != map_.end(); | |
125 } | |
126 | |
127 const DicomValue& GetValue(uint16_t group, uint16_t element) const | |
128 { | |
129 return GetValue(DicomTag(group, element)); | |
130 } | |
131 | |
132 const DicomValue& GetValue(const DicomTag& tag) const; | |
133 | |
1228
e0f7014d39a4
Instances without PatientID are now allowed
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1206
diff
changeset
|
134 // DO NOT delete the returned value! |
80 | 135 const DicomValue* TestAndGetValue(uint16_t group, uint16_t element) const |
136 { | |
137 return TestAndGetValue(DicomTag(group, element)); | |
138 } | |
139 | |
1228
e0f7014d39a4
Instances without PatientID are now allowed
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1206
diff
changeset
|
140 // DO NOT delete the returned value! |
80 | 141 const DicomValue* TestAndGetValue(const DicomTag& tag) const; |
142 | |
0 | 143 void Remove(const DicomTag& tag); |
144 | |
145 void ExtractPatientInformation(DicomMap& result) const; | |
146 | |
147 void ExtractStudyInformation(DicomMap& result) const; | |
148 | |
149 void ExtractSeriesInformation(DicomMap& result) const; | |
150 | |
151 void ExtractInstanceInformation(DicomMap& result) const; | |
152 | |
153 static void SetupFindPatientTemplate(DicomMap& result); | |
154 | |
155 static void SetupFindStudyTemplate(DicomMap& result); | |
156 | |
157 static void SetupFindSeriesTemplate(DicomMap& result); | |
158 | |
159 static void SetupFindInstanceTemplate(DicomMap& result); | |
160 | |
161 void CopyTagIfExists(const DicomMap& source, | |
162 const DicomTag& tag); | |
562
f64e3838d6e1
refactoring enumerations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
398
diff
changeset
|
163 |
f64e3838d6e1
refactoring enumerations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
398
diff
changeset
|
164 static bool IsMainDicomTag(const DicomTag& tag, ResourceType level); |
f64e3838d6e1
refactoring enumerations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
398
diff
changeset
|
165 |
f64e3838d6e1
refactoring enumerations
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
398
diff
changeset
|
166 static bool IsMainDicomTag(const DicomTag& tag); |
567 | 167 |
168 static void GetMainDicomTags(std::set<DicomTag>& result, ResourceType level); | |
169 | |
170 static void GetMainDicomTags(std::set<DicomTag>& result); | |
1206
f5b0207967bc
Fix issue 19 (YBR_FULL are decoded incorrectly)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
171 |
f5b0207967bc
Fix issue 19 (YBR_FULL are decoded incorrectly)
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
689
diff
changeset
|
172 void Print(FILE* fp) const; |
1360 | 173 |
174 void GetTags(std::set<DicomTag>& tags) const; | |
1749
99f4a05f39fa
various types of constraints
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1737
diff
changeset
|
175 |
99f4a05f39fa
various types of constraints
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1737
diff
changeset
|
176 static void LoadMainDicomTags(const DicomTag*& tags, |
99f4a05f39fa
various types of constraints
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1737
diff
changeset
|
177 size_t& size, |
99f4a05f39fa
various types of constraints
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1737
diff
changeset
|
178 ResourceType level); |
0 | 179 }; |
180 } |