comparison OrthancServer/Resources/DicomConformanceStatement.py @ 4044:d25f4c0fa160 framework

splitting code into OrthancFramework and OrthancServer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 10 Jun 2020 20:30:34 +0200
parents Resources/DicomConformanceStatement.py@94f4a18a79cc
children d9473bd5ed43
comparison
equal deleted inserted replaced
4043:6c6239aec462 4044:d25f4c0fa160
1 #!/usr/bin/python
2
3 # Orthanc - A Lightweight, RESTful DICOM Store
4 # Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics
5 # Department, University Hospital of Liege, Belgium
6 # Copyright (C) 2017-2020 Osimis S.A., Belgium
7 #
8 # This program is free software: you can redistribute it and/or
9 # modify it under the terms of the GNU General Public License as
10 # published by the Free Software Foundation, either version 3 of the
11 # License, or (at your option) any later version.
12 #
13 # In addition, as a special exception, the copyright holders of this
14 # program give permission to link the code of its release with the
15 # OpenSSL project's "OpenSSL" library (or with modified versions of it
16 # that use the same license as the "OpenSSL" library), and distribute
17 # the linked executables. You must obey the GNU General Public License
18 # in all respects for all of the code used other than "OpenSSL". If you
19 # modify file(s) with this exception, you may extend this exception to
20 # your version of the file(s), but you are not obligated to do so. If
21 # you do not wish to do so, delete this exception statement from your
22 # version. If you delete this exception statement from all source files
23 # in the program, then also delete it here.
24 #
25 # This program is distributed in the hope that it will be useful, but
26 # WITHOUT ANY WARRANTY; without even the implied warranty of
27 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
28 # General Public License for more details.
29 #
30 # You should have received a copy of the GNU General Public License
31 # along with this program. If not, see <http://www.gnu.org/licenses/>.
32
33
34
35
36 # This file injects the UID information into the DICOM conformance
37 # statement of Orthanc
38
39 import re
40
41 # Read the conformance statement of Orthanc
42 with open('DicomConformanceStatement.txt', 'r') as f:
43 statements = f.readlines()
44
45 # Create an index of all the DICOM UIDs that are known to DCMTK
46 uids = {}
47 with open('/usr/include/dcmtk/dcmdata/dcuid.h', 'r') as dcmtk:
48 for l in dcmtk.readlines():
49 m = re.match(r'#define UID_(.+?)\s*"(.+?)"', l)
50 if m != None:
51 uids[m.group(1)] = m.group(2)
52
53 # Loop over the lines of the statement, looking for the "|" separator
54 with open('/tmp/DicomConformanceStatement.txt', 'w') as f:
55 for l in statements:
56 m = re.match(r'(\s*)(.*?)(\s*)\|.*$', l)
57 if m != None:
58 name = m.group(2)
59 uid = uids[name]
60 f.write('%s%s%s| %s\n' % (m.group(1), name, m.group(3), uid))
61
62 else:
63 # No "|" in this line, just output it
64 f.write(l)