Mercurial > hg > orthanc
view Resources/GenerateAnonymizationProfile.py @ 2312:8700dcaa02e5 issue-46-anonymization
GenerateAnonymizationProfile.py
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 12 Jul 2017 16:44:33 +0200 |
parents | |
children | d19e716b79fa |
line wrap: on
line source
#!/usr/bin/env python # Orthanc - A Lightweight, RESTful DICOM Store # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics # Department, University Hospital of Liege, Belgium # Copyright (C) 2017 Osimis, Belgium # # This program is free software: you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. import re import sys import xml.etree.ElementTree as ET # Usage: # ./GenerateAnonymizationProfile.py ~/Subversion/dicom-specification/2017c/part15.xml if len(sys.argv) != 2: raise Exception('Please provide the path to the part15.xml file from the DICOM standard') with open(sys.argv[1], 'r') as f: root = ET.fromstring(f.read()) br = '{http://docbook.org/ns/docbook}' # Shorthand variable LINES = [] def FormatLine(command, name): indentation = 65 if len(command) > indentation: raise Exception('Too long command') line = ' ' + command + (' ' * (indentation - len(command))) + '// ' + name LINES.append(line) def FormatUnknown(rawTag, name, profile): FormatLine('// TODO: %s with rule %s' % (rawTag, profile), name) RAW_TAG_RE = re.compile(r'^\(\s*([0-9A-F]{4})\s*,\s*([0-9A-F]{4})\s*\)$') for table in root.iter('%stable' % br): if table.attrib['label'] == 'E.1-1': for row in table.find('%stbody' % br).iter('%str' % br): rawTag = row.find('%std[2]/%spara' % (br, br)).text name = row.find('%std[1]/%spara' % (br, br)).text profile = row.find('%std[5]/%spara' % (br, br)).text if len(name.strip()) == 0: continue match = RAW_TAG_RE.match(rawTag) if match == None: FormatUnknown(rawTag, name, profile) else: tag = '0x%s, 0x%s' % (match.group(1).lower(), match.group(2).lower()) if name in [ 'SOP Instance UID', 'Series Instance UID', 'Study Instance UID', ]: FormatLine('// Tag (%s) is set in Apply()' % tag, name) if name in [ 'Patient\'s Name', 'Patient ID', ]: FormatLine('// Tag (%s) is set below (*)' % tag, name) elif profile == 'X': FormatLine('removals_.insert(DicomTag(%s));' % tag, name) elif profile.startswith('X/'): FormatLine('removals_.insert(DicomTag(%s)); /* %s */' % (tag, profile), name) elif profile == 'Z': FormatLine('clearings_.insert(DicomTag(%s));' % tag, name) elif profile == 'D' or profile.startswith('Z/'): FormatLine('clearings_.insert(DicomTag(%s)); /* %s */' % (tag, profile), name) elif profile == 'U': FormatLine('clearings_.insert(DicomTag(%s)); /* TODO UID */' % (tag), name) else: FormatUnknown(rawTag, name, profile) for line in sorted(LINES): print line