Mercurial > hg > orthanc
annotate OrthancServer/DicomModification.cpp @ 937:1530ff8b8417
fix darwin build
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 24 Jun 2014 17:58:33 +0200 |
parents | b4b46e3e6017 |
children | 2f76b92addd4 |
rev | line source |
---|---|
786 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2014 Medical Physics Department, CHU of Liege, | |
4 * Belgium | |
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. | |
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. | |
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 | |
831
84513f2ee1f3
pch for unit tests and server
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
824
diff
changeset
|
33 #include "PrecompiledHeadersServer.h" |
786 | 34 #include "DicomModification.h" |
35 | |
36 #include "../Core/OrthancException.h" | |
790 | 37 #include "FromDcmtkBridge.h" |
786 | 38 |
795 | 39 #include <memory> // For std::auto_ptr |
916
b4b46e3e6017
more explicit error message
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
40 #include <glog/logging.h> |
795 | 41 |
786 | 42 namespace Orthanc |
43 { | |
44 void DicomModification::MapDicomIdentifier(ParsedDicomFile& dicom, | |
788 | 45 ResourceType level) |
786 | 46 { |
47 std::auto_ptr<DicomTag> tag; | |
48 | |
49 switch (level) | |
50 { | |
788 | 51 case ResourceType_Study: |
786 | 52 tag.reset(new DicomTag(DICOM_TAG_STUDY_INSTANCE_UID)); |
53 break; | |
54 | |
788 | 55 case ResourceType_Series: |
786 | 56 tag.reset(new DicomTag(DICOM_TAG_SERIES_INSTANCE_UID)); |
57 break; | |
58 | |
788 | 59 case ResourceType_Instance: |
786 | 60 tag.reset(new DicomTag(DICOM_TAG_SOP_INSTANCE_UID)); |
61 break; | |
62 | |
63 default: | |
64 throw OrthancException(ErrorCode_InternalError); | |
65 } | |
66 | |
67 std::string original; | |
68 if (!dicom.GetTagValue(original, *tag)) | |
69 { | |
70 original = ""; | |
71 } | |
72 | |
73 std::string mapped; | |
74 | |
75 UidMap::const_iterator previous = uidMap_.find(std::make_pair(level, original)); | |
76 if (previous == uidMap_.end()) | |
77 { | |
78 mapped = FromDcmtkBridge::GenerateUniqueIdentifier(level); | |
79 uidMap_.insert(std::make_pair(std::make_pair(level, original), mapped)); | |
80 } | |
81 else | |
82 { | |
83 mapped = previous->second; | |
84 } | |
85 | |
86 dicom.Replace(*tag, mapped); | |
87 } | |
88 | |
89 DicomModification::DicomModification() | |
90 { | |
91 removePrivateTags_ = false; | |
788 | 92 level_ = ResourceType_Instance; |
786 | 93 } |
94 | |
787
ac18946afa74
refactoring of anonymization/modification
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
786
diff
changeset
|
95 void DicomModification::Keep(const DicomTag& tag) |
786 | 96 { |
97 removals_.erase(tag); | |
98 replacements_.erase(tag); | |
99 } | |
100 | |
101 void DicomModification::Remove(const DicomTag& tag) | |
102 { | |
103 removals_.insert(tag); | |
104 replacements_.erase(tag); | |
105 } | |
106 | |
107 bool DicomModification::IsRemoved(const DicomTag& tag) const | |
108 { | |
109 return removals_.find(tag) != removals_.end(); | |
110 } | |
111 | |
112 void DicomModification::Replace(const DicomTag& tag, | |
113 const std::string& value) | |
114 { | |
115 removals_.erase(tag); | |
116 replacements_[tag] = value; | |
117 } | |
118 | |
119 bool DicomModification::IsReplaced(const DicomTag& tag) const | |
120 { | |
121 return replacements_.find(tag) != replacements_.end(); | |
122 } | |
123 | |
124 const std::string& DicomModification::GetReplacement(const DicomTag& tag) const | |
125 { | |
126 Replacements::const_iterator it = replacements_.find(tag); | |
127 | |
128 if (it == replacements_.end()) | |
129 { | |
130 throw OrthancException(ErrorCode_InexistentItem); | |
131 } | |
132 else | |
133 { | |
134 return it->second; | |
135 } | |
136 } | |
137 | |
138 void DicomModification::SetRemovePrivateTags(bool removed) | |
139 { | |
140 removePrivateTags_ = removed; | |
141 } | |
142 | |
788 | 143 void DicomModification::SetLevel(ResourceType level) |
786 | 144 { |
145 uidMap_.clear(); | |
146 level_ = level; | |
147 } | |
148 | |
149 void DicomModification::SetupAnonymization() | |
150 { | |
151 removals_.clear(); | |
152 replacements_.clear(); | |
153 removePrivateTags_ = true; | |
788 | 154 level_ = ResourceType_Patient; |
786 | 155 uidMap_.clear(); |
156 | |
157 // This is Table E.1-1 from PS 3.15-2008 - DICOM Part 15: Security and System Management Profiles | |
158 removals_.insert(DicomTag(0x0008, 0x0014)); // Instance Creator UID | |
159 //removals_.insert(DicomTag(0x0008, 0x0018)); // SOP Instance UID => set in Apply() | |
160 removals_.insert(DicomTag(0x0008, 0x0050)); // Accession Number | |
161 removals_.insert(DicomTag(0x0008, 0x0080)); // Institution Name | |
162 removals_.insert(DicomTag(0x0008, 0x0081)); // Institution Address | |
163 removals_.insert(DicomTag(0x0008, 0x0090)); // Referring Physician's Name | |
164 removals_.insert(DicomTag(0x0008, 0x0092)); // Referring Physician's Address | |
165 removals_.insert(DicomTag(0x0008, 0x0094)); // Referring Physician's Telephone Numbers | |
166 removals_.insert(DicomTag(0x0008, 0x1010)); // Station Name | |
167 removals_.insert(DicomTag(0x0008, 0x1030)); // Study Description | |
168 removals_.insert(DicomTag(0x0008, 0x103e)); // Series Description | |
169 removals_.insert(DicomTag(0x0008, 0x1040)); // Institutional Department Name | |
170 removals_.insert(DicomTag(0x0008, 0x1048)); // Physician(s) of Record | |
171 removals_.insert(DicomTag(0x0008, 0x1050)); // Performing Physicians' Name | |
172 removals_.insert(DicomTag(0x0008, 0x1060)); // Name of Physician(s) Reading Study | |
173 removals_.insert(DicomTag(0x0008, 0x1070)); // Operators' Name | |
174 removals_.insert(DicomTag(0x0008, 0x1080)); // Admitting Diagnoses Description | |
175 removals_.insert(DicomTag(0x0008, 0x1155)); // Referenced SOP Instance UID | |
176 removals_.insert(DicomTag(0x0008, 0x2111)); // Derivation Description | |
177 //removals_.insert(DicomTag(0x0010, 0x0010)); // Patient's Name => cf. below (*) | |
178 //removals_.insert(DicomTag(0x0010, 0x0020)); // Patient ID => cf. below (*) | |
179 removals_.insert(DicomTag(0x0010, 0x0030)); // Patient's Birth Date | |
180 removals_.insert(DicomTag(0x0010, 0x0032)); // Patient's Birth Time | |
181 removals_.insert(DicomTag(0x0010, 0x0040)); // Patient's Sex | |
182 removals_.insert(DicomTag(0x0010, 0x1000)); // Other Patient Ids | |
183 removals_.insert(DicomTag(0x0010, 0x1001)); // Other Patient Names | |
184 removals_.insert(DicomTag(0x0010, 0x1010)); // Patient's Age | |
185 removals_.insert(DicomTag(0x0010, 0x1020)); // Patient's Size | |
186 removals_.insert(DicomTag(0x0010, 0x1030)); // Patient's Weight | |
187 removals_.insert(DicomTag(0x0010, 0x1090)); // Medical Record Locator | |
188 removals_.insert(DicomTag(0x0010, 0x2160)); // Ethnic Group | |
189 removals_.insert(DicomTag(0x0010, 0x2180)); // Occupation | |
190 removals_.insert(DicomTag(0x0010, 0x21b0)); // Additional Patient's History | |
191 removals_.insert(DicomTag(0x0010, 0x4000)); // Patient Comments | |
192 removals_.insert(DicomTag(0x0018, 0x1000)); // Device Serial Number | |
193 removals_.insert(DicomTag(0x0018, 0x1030)); // Protocol Name | |
194 //removals_.insert(DicomTag(0x0020, 0x000d)); // Study Instance UID => set in Apply() | |
195 //removals_.insert(DicomTag(0x0020, 0x000e)); // Series Instance UID => set in Apply() | |
196 removals_.insert(DicomTag(0x0020, 0x0010)); // Study ID | |
197 removals_.insert(DicomTag(0x0020, 0x0052)); // Frame of Reference UID | |
198 removals_.insert(DicomTag(0x0020, 0x0200)); // Synchronization Frame of Reference UID | |
199 removals_.insert(DicomTag(0x0020, 0x4000)); // Image Comments | |
200 removals_.insert(DicomTag(0x0040, 0x0275)); // Request Attributes Sequence | |
201 removals_.insert(DicomTag(0x0040, 0xa124)); // UID | |
202 removals_.insert(DicomTag(0x0040, 0xa730)); // Content Sequence | |
203 removals_.insert(DicomTag(0x0088, 0x0140)); // Storage Media File-set UID | |
204 removals_.insert(DicomTag(0x3006, 0x0024)); // Referenced Frame of Reference UID | |
205 removals_.insert(DicomTag(0x3006, 0x00c2)); // Related Frame of Reference UID | |
206 | |
207 // Some more removals (from the experience of DICOM files at the CHU of Liege) | |
208 removals_.insert(DicomTag(0x0010, 0x1040)); // Patient's Address | |
209 removals_.insert(DicomTag(0x0032, 0x1032)); // Requesting Physician | |
210 removals_.insert(DicomTag(0x0010, 0x2154)); // PatientTelephoneNumbers | |
211 removals_.insert(DicomTag(0x0010, 0x2000)); // Medical Alerts | |
212 | |
213 // Set the DeidentificationMethod tag | |
214 replacements_.insert(std::make_pair(DicomTag(0x0012, 0x0063), "Orthanc " ORTHANC_VERSION " - PS 3.15-2008 Table E.1-1")); | |
215 | |
216 // Set the PatientIdentityRemoved tag | |
217 replacements_.insert(std::make_pair(DicomTag(0x0012, 0x0062), "YES")); | |
218 | |
219 // (*) Choose a random patient name and ID | |
788 | 220 std::string patientId = FromDcmtkBridge::GenerateUniqueIdentifier(ResourceType_Patient); |
786 | 221 replacements_[DICOM_TAG_PATIENT_ID] = patientId; |
222 replacements_[DICOM_TAG_PATIENT_NAME] = patientId; | |
223 } | |
224 | |
225 void DicomModification::Apply(ParsedDicomFile& toModify) | |
226 { | |
227 // Check the request | |
788 | 228 assert(ResourceType_Patient + 1 == ResourceType_Study && |
229 ResourceType_Study + 1 == ResourceType_Series && | |
230 ResourceType_Series + 1 == ResourceType_Instance); | |
786 | 231 |
232 if (IsRemoved(DICOM_TAG_PATIENT_ID) || | |
233 IsRemoved(DICOM_TAG_STUDY_INSTANCE_UID) || | |
234 IsRemoved(DICOM_TAG_SERIES_INSTANCE_UID) || | |
235 IsRemoved(DICOM_TAG_SOP_INSTANCE_UID)) | |
236 { | |
237 throw OrthancException(ErrorCode_BadRequest); | |
238 } | |
239 | |
788 | 240 if (level_ == ResourceType_Patient && !IsReplaced(DICOM_TAG_PATIENT_ID)) |
786 | 241 { |
916
b4b46e3e6017
more explicit error message
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
831
diff
changeset
|
242 LOG(ERROR) << "When modifying a patient, her PatientID is required to be modified"; |
786 | 243 throw OrthancException(ErrorCode_BadRequest); |
244 } | |
245 | |
788 | 246 if (level_ > ResourceType_Patient && IsReplaced(DICOM_TAG_PATIENT_ID)) |
786 | 247 { |
248 throw OrthancException(ErrorCode_BadRequest); | |
249 } | |
250 | |
788 | 251 if (level_ > ResourceType_Study && IsReplaced(DICOM_TAG_STUDY_INSTANCE_UID)) |
786 | 252 { |
253 throw OrthancException(ErrorCode_BadRequest); | |
254 } | |
255 | |
788 | 256 if (level_ > ResourceType_Series && IsReplaced(DICOM_TAG_SERIES_INSTANCE_UID)) |
786 | 257 { |
258 throw OrthancException(ErrorCode_BadRequest); | |
259 } | |
260 | |
261 // (1) Remove the private tags, if need be | |
262 if (removePrivateTags_) | |
263 { | |
264 toModify.RemovePrivateTags(); | |
265 } | |
266 | |
267 // (2) Remove the tags specified by the user | |
268 for (Removals::const_iterator it = removals_.begin(); | |
269 it != removals_.end(); ++it) | |
270 { | |
271 toModify.Remove(*it); | |
272 } | |
273 | |
274 // (3) Replace the tags | |
275 for (Replacements::const_iterator it = replacements_.begin(); | |
276 it != replacements_.end(); ++it) | |
277 { | |
789 | 278 toModify.Replace(it->first, it->second, DicomReplaceMode_InsertIfAbsent); |
786 | 279 } |
280 | |
281 // (4) Update the DICOM identifiers | |
788 | 282 if (level_ <= ResourceType_Study) |
786 | 283 { |
788 | 284 MapDicomIdentifier(toModify, ResourceType_Study); |
786 | 285 } |
286 | |
788 | 287 if (level_ <= ResourceType_Series) |
786 | 288 { |
788 | 289 MapDicomIdentifier(toModify, ResourceType_Series); |
786 | 290 } |
291 | |
788 | 292 if (level_ <= ResourceType_Instance) // Always true |
786 | 293 { |
788 | 294 MapDicomIdentifier(toModify, ResourceType_Instance); |
786 | 295 } |
296 } | |
297 } |