Mercurial > hg > orthanc-book
annotate Sphinx/source/plugins/python.rst @ 555:6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 08 Dec 2020 16:46:50 +0100 |
parents | 4f3a6145ae34 |
children | 6a3d48510b0b |
rev | line source |
---|---|
343
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
1 .. _python-plugin: |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
2 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
3 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
4 Python plugin for Orthanc |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
5 ========================= |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
6 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
7 .. contents:: |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
8 |
371
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
9 |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
10 Overview |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
11 -------- |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
12 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
13 This plugin can be used to write :ref:`Orthanc plugins |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
14 <creating-plugins>` using the `Python programming language |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
15 <https://en.wikipedia.org/wiki/Python_(programming_language)>`__ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
16 instead of the more complex C/C++ programming languages. |
343
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
17 |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
18 Python plugins have access to more features and a more consistent SDK |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
19 than :ref:`Lua scripts <lua>`. The Python API is automatically |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
20 generated from the `Orthanc plugin SDK in C |
554 | 21 <https://hg.orthanc-server.com/orthanc/file/Orthanc-1.8.1/OrthancServer/Plugins/Include/orthanc/OrthancCPlugin.h>`__ |
345 | 22 using the `Clang <https://en.wikipedia.org/wiki/Clang>`__ compiler |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
23 front-end. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
24 |
462 | 25 As of release 2.0 of the plugin, the coverage of the C SDK is about |
26 75% (119 functions are automatically wrapped in Python out of a total | |
27 of 157 functions in the Orthanc SDK 1.7.2). | |
343
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
28 |
371
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
29 |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
30 Source code |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
31 ----------- |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
32 |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
33 * Link to the `official releases of this plugin |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
34 <https://www.orthanc-server.com/browse.php?path=/plugin-python>`__. |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
35 |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
36 * Link to the `code repository |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
37 <https://hg.orthanc-server.com/orthanc-python/>`__. |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
38 |
5cb37e6b014b
explicit links to the source code of python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
39 |
353 | 40 Licensing |
41 --------- | |
42 | |
43 Pay attention to the fact that this plugin is licensed under the terms | |
44 of the `AGPL license | |
45 <https://en.wikipedia.org/wiki/GNU_Affero_General_Public_License>`__. | |
46 | |
47 This has an important consequence: If you distribute Orthanc to | |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
48 clients together with one Python script, or if you put an Orthanc |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
49 server equipped with one Python script on a Web portal, you **must** |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
50 disclose the source code of your Python script to the Orthanc |
354 | 51 community under the terms of the AGPL license. |
52 | |
53 We suggest you to put the source code of your Python scripts on the | |
54 dedicated `"OrthancContributed" repository on GitHub | |
55 <https://github.com/jodogne/OrthancContributed/tree/master/Plugins>`__, | |
56 and/or to send it to the `Orthanc Users | |
57 <https://groups.google.com/forum/#!forum/orthanc-users>`__ discussion | |
58 group. | |
353 | 59 |
60 Check out the :ref:`FAQ about licensing <licensing>` for more context. | |
61 | |
62 | |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
63 Usage |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
64 ----- |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
65 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
66 Docker |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
67 ...... |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
68 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
69 .. highlight:: json |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
70 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
71 The most direct way of starting Orthanc together with the Python |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
72 plugin is through :ref:`Docker <docker>`. Let's create the file |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
73 ``/tmp/hello.py`` that contains the following basic Python script:: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
74 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
75 print('Hello world!') |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
76 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
77 .. highlight:: json |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
78 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
79 Let's also create the file ``/tmp/orthanc.json`` that contains the |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
80 following minimal :ref:`configuration for Orthanc <configuration>`:: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
81 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
82 { |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
83 "StorageDirectory" : "/var/lib/orthanc/db", |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
84 "RemoteAccessAllowed" : true, |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
85 "Plugins" : [ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
86 "/usr/local/share/orthanc/plugins" |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
87 ], |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
88 "PythonScript" : "/etc/orthanc/hello.py" |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
89 } |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
90 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
91 .. highlight:: bash |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
92 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
93 Given these two files, Orthanc can be started as follows:: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
94 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
95 $ docker run -p 4242:4242 -p 8042:8042 --rm \ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
96 -v /tmp/orthanc.json:/etc/orthanc/orthanc.json:ro \ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
97 -v /tmp/hello.py:/etc/orthanc/hello.py:ro \ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
98 jodogne/orthanc-python |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
99 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
100 .. highlight:: text |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
101 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
102 You'll see the following excerpt in the log, which indicates that the Python plugin is properly loaded:: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
103 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
104 W0331 15:48:12.990661 PluginsManager.cpp:269] Registering plugin 'python' (version mainline) |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
105 W0331 15:48:12.990691 PluginsManager.cpp:168] Python plugin is initializing |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
106 W0331 15:48:12.990743 PluginsManager.cpp:168] Using Python script "hello.py" from directory: /etc/orthanc |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
107 W0331 15:48:12.990819 PluginsManager.cpp:168] Program name: /usr/local/sbin/Orthanc |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
108 Hello world! |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
109 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
110 |
405 | 111 `Here <https://bitbucket.org/osimis/orthanc-setup-samples/src/master/docker/python/>`__ is a full example |
112 of a more complex setup using the :ref:`osimis/orthanc <docker-osimis>` images. | |
113 | |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
114 Compiling from source |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
115 ..................... |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
116 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
117 .. highlight:: bash |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
118 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
119 The procedure to compile this plugin from source is similar to that |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
120 for the :ref:`core of Orthanc <compiling>`. The following commands |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
121 should work for most UNIX-like distribution (including GNU/Linux):: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
122 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
123 $ mkdir Build |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
124 $ cd Build |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
125 $ cmake .. -DPYTHON_VERSION=3.7 -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
126 $ make |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
127 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
128 Before running CMake, make sure that the Python interpreter and its |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
129 associated development library are installed. On Ubuntu 18.04 LTS, you |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
130 would for instance install packages ``libpython3.7-dev`` and |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
131 ``python3.7``. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
132 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
133 The compilation will produce the shared library ``OrthancPython``, |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
134 that can be loaded by properly setting the ``Plugins`` |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
135 :ref:`configuration option <configuration>` of Orthanc. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
136 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
137 **Warning:** The shared library is only compatible with the Python |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
138 interpreter whose version corresponds to the value of the |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
139 ``PYTHON_VERSION`` argument that was given to CMake. |
501
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
140 |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
141 **Note for OS X:** As indicated by `Stephen Douglas Scotti |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
142 <https://groups.google.com/g/orthanc-users/c/RnmZKFv8FaY/m/HhvOD2A2CAAJ>`__, |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
143 here is a sample invocation of CMake to force the version of Python to |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
144 be used on OS X:: |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
145 |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
146 $ cmake .. -DPYTHON_VERSION=3.8 -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release \ |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
147 -DPYTHON_LIBRARY=/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/libpython3.8.dylib \ |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
148 -DPYTHON_INCLUDE_DIR=/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/include/python3.8/ |
98592b9e7ad5
force version of python on os x
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
490
diff
changeset
|
149 |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
150 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
151 Microsoft Windows |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
152 ................. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
153 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
154 Pre-compiled binaries for Microsoft Windows `are also available |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
155 <https://www.orthanc-server.com/browse.php?path=/plugin-python>`__. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
156 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
157 Beware that one version of the Python plugin can only be run against |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
158 one version of the Python interpreter. This version is clearly |
442
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
159 indicated in the filename of the precompiled binaries. |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
160 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
161 .. highlight:: text |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
162 |
442
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
163 You are of course free to compile the plugin from sources. You'll have |
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
164 to explicitly specify the path to your Python installation while |
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
165 invoking CMake. For instance:: |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
166 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
167 C:\orthanc-python\Build> cmake .. -DPYTHON_VERSION=2.7 -DPYTHON_WINDOWS_ROOT=C:/Python27 \ |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
168 -DSTATIC_BUILD=ON -DCMAKE_BUILD_TYPE=Release -G "Visual Studio 15 2017" |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
169 |
442
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
170 **Note about debug builds**: Usually, building Python modules such as the Python |
377
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
171 plugin for Orthanc in debug mode (where ``_DEBUG`` is defined) leads to a module |
442
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
172 (``.exe`` or ``.dll``) that requires a debug build of Python, and debug versions of all |
377
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
173 the Python libraries. This is quite cumbersome, for it requires building Python |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
174 on your own or downloading additional debug files. |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
175 |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
176 Since using a debug build of Python is only necessary in very specific cases |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
177 (such as the debugging of code at the boundary between Python and an extension), |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
178 we have changed the default behavior to use the release Python library by default. |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
179 |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
180 This means that you are able to build this plugin in debug mode with the |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
181 standard Python distribution. |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
182 |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
183 In case you need to use the Python debug libraries, you can instruct the build |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
184 system to do so by setting the ``PYTHON_WINDOWS_USE_RELEASE_LIBS`` CMake option, |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
185 that is ``ON`` by default, to ``OFF``. The previous build example would then be, |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
186 should you require a full debug build:: |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
187 |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
188 C:\orthanc-python\Build> cmake .. -DPYTHON_VERSION=2.7 -DPYTHON_WINDOWS_ROOT=C:/Python27 \ |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
189 -DSTATIC_BUILD=ON -DPYTHON_WINDOWS_USE_RELEASE_LIBS=OFF \ |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
190 -DCMAKE_BUILD_TYPE=Debug -G "Visual Studio 15 2017" |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
191 |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
192 Please note that this CMake option only impacts **debug** builds under Windows, |
ffe62e6c086f
Added a note about the debug libraries when building under Windows with Visual Studio.
Benjamin Golinvaux <bgo@osimis.io>
parents:
375
diff
changeset
|
193 when using (any version of) the Microsoft Visual Studio compiler. |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
194 |
442
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
195 The precompiled binaries all use release (i.e. non-debug) versions of Python. |
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
196 |
8b2c648c0f46
clarifications about windows precompiled binaries
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
405
diff
changeset
|
197 |
364
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
198 Configuration options |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
199 --------------------- |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
200 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
201 The only two configuration options that are available for this plugin |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
202 are the following: |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
203 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
204 * ``PythonScript`` indicates where the Python script is located. If |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
205 this configuration option is not provided, the Python plugin is not |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
206 started. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
207 |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
208 * ``PythonVerbose`` is a Boolean value to make the Python interpreter |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
209 verbose. |
234de55ed125
usage of the python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
354
diff
changeset
|
210 |
343
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
211 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
212 Samples |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
213 ------- |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
214 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
215 Extending the REST API |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
216 ...................... |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
217 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
218 .. highlight:: python |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
219 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
220 Here is a basic Python script that registers two new routes in the |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
221 REST API:: |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
222 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
223 import orthanc |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
224 import pprint |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
225 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
226 def OnRest(output, uri, **request): |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
227 pprint.pprint(request) |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
228 print('Accessing uri: %s' % uri) |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
229 output.AnswerBuffer('ok\n', 'text/plain') |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
230 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
231 orthanc.RegisterRestCallback('/(to)(t)o', OnRest) |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
232 orthanc.RegisterRestCallback('/tata', OnRest) |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
233 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
234 .. highlight:: json |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
235 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
236 Here is the associated minimal configuration file for Orthanc |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
237 (provided the Python script is saved as ``rest.py``):: |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
238 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
239 { |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
240 "Plugins" : [ "." ], |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
241 "PythonScript" : "rest.py", |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
242 "PythonVerbose" : false |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
243 } |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
244 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
245 .. highlight:: bash |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
246 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
247 The route can then be accessed as:: |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
248 |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
249 $ curl http://localhost:8042/toto |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
250 ok |
fff45618262d
creating the documentation of the Python plugin
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
diff
changeset
|
251 |
469
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
252 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
253 .. _python-changes: |
345 | 254 |
255 Listening to changes | |
256 .................... | |
257 | |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
258 .. highlight:: python |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
259 |
345 | 260 This sample uploads a DICOM file as soon as Orthanc is started:: |
261 | |
262 import orthanc | |
263 | |
264 def OnChange(changeType, level, resource): | |
265 if changeType == orthanc.ChangeType.ORTHANC_STARTED: | |
266 print('Started') | |
267 | |
268 with open('/tmp/sample.dcm', 'rb') as f: | |
269 orthanc.RestApiPost('/instances', f.read()) | |
270 | |
271 elif changeType == orthanc.ChangeType.ORTHANC_STOPPED: | |
272 print('Stopped') | |
273 | |
274 elif changeType == orthanc.ChangeType.NEW_INSTANCE: | |
275 print('A new instance was uploaded: %s' % resource) | |
276 | |
277 orthanc.RegisterOnChangeCallback(OnChange) | |
278 | |
279 | |
280 Accessing the content of a new instance | |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
281 ....................................... |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
282 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
283 .. highlight:: python |
345 | 284 |
285 :: | |
286 | |
287 import orthanc | |
288 import json | |
289 import pprint | |
290 | |
291 def OnStoredInstance(dicom, instanceId): | |
292 print('Received instance %s of size %d (transfer syntax %s, SOP class UID %s)' % ( | |
293 instanceId, dicom.GetInstanceSize(), | |
294 dicom.GetInstanceMetadata('TransferSyntax'), | |
295 dicom.GetInstanceMetadata('SopClassUid'))) | |
296 | |
297 # Print the origin information | |
298 if dicom.GetInstanceOrigin() == orthanc.InstanceOrigin.DICOM_PROTOCOL: | |
299 print('This instance was received through the DICOM protocol') | |
300 elif dicom.GetInstanceOrigin() == orthanc.InstanceOrigin.REST_API: | |
301 print('This instance was received through the REST API') | |
302 | |
303 # Print the DICOM tags | |
304 pprint.pprint(json.loads(dicom.GetInstanceSimplifiedJson())) | |
305 | |
306 orthanc.RegisterOnStoredInstanceCallback(OnStoredInstance) | |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
307 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
308 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
309 Calling pydicom |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
310 ............... |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
311 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
312 .. highlight:: python |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
313 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
314 Here is a sample Python plugin that registers a REST callback to dump |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
315 the content of the dataset of one given DICOM instance stored in |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
316 Orthanc, using `pydicom <https://pydicom.github.io/>`__:: |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
317 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
318 import io |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
319 import orthanc |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
320 import pydicom |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
321 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
322 def DecodeInstance(output, uri, **request): |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
323 if request['method'] == 'GET': |
347 | 324 # Retrieve the instance ID from the regular expression (*) |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
325 instanceId = request['groups'][0] |
347 | 326 # Get the content of the DICOM file |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
327 f = orthanc.GetDicomForInstance(instanceId) |
347 | 328 # Parse it using pydicom |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
329 dicom = pydicom.dcmread(io.BytesIO(f)) |
347 | 330 # Return a string representation the dataset to the caller |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
331 output.AnswerBuffer(str(dicom), 'text/plain') |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
332 else: |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
333 output.SendMethodNotAllowed('GET') |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
334 |
347 | 335 orthanc.RegisterRestCallback('/pydicom/(.*)', DecodeInstance) # (*) |
346
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
336 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
337 .. highlight:: bash |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
338 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
339 This can be called as follows:: |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
340 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
341 $ curl http://localhost:8042/pydicom/19816330-cb02e1cf-df3a8fe8-bf510623-ccefe9f5 |
bdf8757449e3
more python samples
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
345
diff
changeset
|
342 |
347 | 343 |
344 Auto-routing studies | |
345 .................... | |
346 | |
347 .. highlight:: python | |
348 | |
349 Here is a sample Python plugin that routes any :ref:`stable study | |
350 <lua-callbacks>` to a modality named ``samples`` (as declared in the | |
351 ``DicomModalities`` configuration option):: | |
352 | |
353 import orthanc | |
354 | |
355 def OnChange(changeType, level, resourceId): | |
356 if changeType == orthanc.ChangeType.STABLE_STUDY: | |
357 print('Stable study: %s' % resourceId) | |
358 orthanc.RestApiPost('/modalities/sample/store', resourceId) | |
359 | |
360 orthanc.RegisterOnChangeCallback(OnChange) | |
348 | 361 |
362 | |
539 | 363 Note that, if you want to use an orthanc plugin to transfer the study, |
364 you should use the ``RestApiPostAfterPlugins()`` method:: | |
365 | |
366 import orthanc | |
367 | |
368 def OnChange(changeType, level, resourceId): | |
369 if changeType == orthanc.ChangeType.STABLE_STUDY: | |
370 print('Stable study: %s' % resourceId) | |
371 orthanc.RestApiPostAfterPlugins('/dicom-web/servers/sample/store', resourceId) | |
372 | |
373 orthanc.RegisterOnChangeCallback(OnChange) | |
374 | |
375 | |
352 | 376 Rendering a thumbnail using PIL/Pillow |
377 ...................................... | |
348 | 378 |
379 .. highlight:: python | |
380 | |
381 :: | |
382 | |
383 from PIL import Image | |
384 import io | |
385 import orthanc | |
386 | |
387 def DecodeInstance(output, uri, **request): | |
388 if request['method'] == 'GET': | |
389 # Retrieve the instance ID from the regular expression (*) | |
390 instanceId = request['groups'][0] | |
391 | |
392 # Render the instance, then open it in Python using PIL/Pillow | |
393 png = orthanc.RestApiGet('/instances/%s/rendered' % instanceId) | |
394 image = Image.open(io.BytesIO(png)) | |
395 | |
396 # Downsize the image as a 64x64 thumbnail | |
397 image.thumbnail((64, 64), Image.ANTIALIAS) | |
398 | |
399 # Save the thumbnail as JPEG, then send the buffer to the caller | |
400 jpeg = io.BytesIO() | |
401 image.save(jpeg, format = "JPEG", quality = 80) | |
402 jpeg.seek(0) | |
403 output.AnswerBuffer(jpeg.read(), 'text/plain') | |
404 | |
405 else: | |
406 output.SendMethodNotAllowed('GET') | |
407 | |
408 orthanc.RegisterRestCallback('/pydicom/(.*)', DecodeInstance) # (*) | |
351 | 409 |
410 | |
369
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
411 .. _python-introspection: |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
412 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
413 Inspecting the available API |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
414 ............................ |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
415 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
416 .. highlight:: python |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
417 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
418 Thanks to Python's introspection primitives, it is possible to inspect |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
419 the API of the ``orthanc`` module in order to dump all the available |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
420 features:: |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
421 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
422 import inspect |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
423 import numbers |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
424 import orthanc |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
425 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
426 # Loop over the members of the "orthanc" module |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
427 for (name, obj) in inspect.getmembers(orthanc): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
428 if inspect.isroutine(obj): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
429 print('Function %s():\n Documentation: %s\n' % (name, inspect.getdoc(obj))) |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
430 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
431 elif inspect.isclass(obj): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
432 print('Class %s:\n Documentation: %s' % (name, inspect.getdoc(obj))) |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
433 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
434 # Loop over the members of the class |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
435 for (subname, subobj) in inspect.getmembers(obj): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
436 if isinstance(subobj, numbers.Number): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
437 print(' - Enumeration value %s: %s' % (subname, subobj)) |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
438 elif (not subname.startswith('_') and |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
439 inspect.ismethoddescriptor(subobj)): |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
440 print(' - Method %s(): %s' % (subname, inspect.getdoc(subobj))) |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
441 print('') |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
442 |
373
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
443 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
444 .. _python-scheduler: |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
445 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
446 Scheduling a task for periodic execution |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
447 ........................................ |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
448 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
449 .. highlight:: python |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
450 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
451 The following Python script will periodically (every second) run the |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
452 function ``Hello()`` thanks to the ``threading`` module:: |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
453 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
454 import orthanc |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
455 import threading |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
456 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
457 TIMER = None |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
458 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
459 def Hello(): |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
460 global TIMER |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
461 TIMER = None |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
462 orthanc.LogWarning("In Hello()") |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
463 # Do stuff... |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
464 TIMER = threading.Timer(1, Hello) # Re-schedule after 1 second |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
465 TIMER.start() |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
466 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
467 def OnChange(changeType, level, resource): |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
468 if changeType == orthanc.ChangeType.ORTHANC_STARTED: |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
469 orthanc.LogWarning("Starting the scheduler") |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
470 Hello() |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
471 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
472 elif changeType == orthanc.ChangeType.ORTHANC_STOPPED: |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
473 if TIMER != None: |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
474 orthanc.LogWarning("Stopping the scheduler") |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
475 TIMER.cancel() |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
476 |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
477 orthanc.RegisterOnChangeCallback(OnChange) |
847996394688
Scheduling a task for periodic execution
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
369
diff
changeset
|
478 |
378
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
479 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
480 .. _python-metadata: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
481 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
482 Filtering and returning metadata |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
483 ................................ |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
484 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
485 Besides the main DICOM tags, Orthanc associates some metadata to each |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
486 resource it stores (this includes the date of last update, the |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
487 transfer syntax, the remote AET...). People are often interested in |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
488 getting such metadata while calling the ``/tools/find`` route in the |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
489 :ref:`REST API <rest-find>`, or even in filtering this metadata the |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
490 same way they look for DICOM tags. |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
491 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
492 This feature is not built in the core of Orthanc, as metadata is not |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
493 indexed in the Orthanc database, contrarily to the main DICOM |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
494 tags. Filtering metadata requires a linear search over all the |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
495 matching resources, which induces a cost in the performance. |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
496 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
497 .. highlight:: python |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
498 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
499 Nevertheless, here is a full sample Python script that overwrites the |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
500 ``/tools/find`` route in order to give access to metadata:: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
501 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
502 import json |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
503 import orthanc |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
504 import re |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
505 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
506 # Get the path in the REST API to the given resource that was returned |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
507 # by a call to "/tools/find" |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
508 def GetPath(resource): |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
509 if resource['Type'] == 'Patient': |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
510 return '/patients/%s' % resource['ID'] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
511 elif resource['Type'] == 'Study': |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
512 return '/studies/%s' % resource['ID'] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
513 elif resource['Type'] == 'Series': |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
514 return '/series/%s' % resource['ID'] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
515 elif resource['Type'] == 'Instance': |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
516 return '/instances/%s' % resource['ID'] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
517 else: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
518 raise Exception('Unknown resource level') |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
519 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
520 def FindWithMetadata(output, uri, **request): |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
521 # The "/tools/find" route expects a POST method |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
522 if request['method'] != 'POST': |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
523 output.SendMethodNotAllowed('POST') |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
524 else: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
525 # Parse the query provided by the user, and backup the "Expand" field |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
526 query = json.loads(request['body']) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
527 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
528 if 'Expand' in query: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
529 originalExpand = query['Expand'] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
530 else: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
531 originalExpand = False |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
532 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
533 # Call the core "/tools/find" route |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
534 query['Expand'] = True |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
535 answers = orthanc.RestApiPost('/tools/find', json.dumps(query)) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
536 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
537 # Loop over the matching resources |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
538 filteredAnswers = [] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
539 for answer in json.loads(answers): |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
540 try: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
541 # Read the metadata that is associated with the resource |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
542 metadata = json.loads(orthanc.RestApiGet('%s/metadata?expand' % GetPath(answer))) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
543 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
544 # Check whether the metadata matches the regular expressions |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
545 # that were provided in the "Metadata" field of the user request |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
546 isMetadataMatch = True |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
547 if 'Metadata' in query: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
548 for (name, pattern) in query['Metadata'].items(): |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
549 if name in metadata: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
550 value = metadata[name] |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
551 else: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
552 value = '' |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
553 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
554 if re.match(pattern, value) == None: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
555 isMetadataMatch = False |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
556 break |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
557 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
558 # If all the metadata matches the provided regular |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
559 # expressions, add the resource to the filtered answers |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
560 if isMetadataMatch: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
561 if originalExpand: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
562 answer['Metadata'] = metadata |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
563 filteredAnswers.append(answer) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
564 else: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
565 filteredAnswers.append(answer['ID']) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
566 except: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
567 # The resource was deleted since the call to "/tools/find" |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
568 pass |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
569 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
570 # Return the filtered answers in the JSON format |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
571 output.AnswerBuffer(json.dumps(filteredAnswers, indent = 3), 'application/json') |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
572 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
573 orthanc.RegisterRestCallback('/tools/find', FindWithMetadata) |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
574 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
575 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
576 **Warning:** In the sample above, the filtering of the metadata is |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
577 done using Python's `library for regular expressions |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
578 <https://docs.python.org/3/library/re.html>`__. It is evidently |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
579 possible to adapt this script in order to use the DICOM conventions |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
580 about `attribute matching |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
581 <http://dicom.nema.org/medical/dicom/2019e/output/chtml/part04/sect_C.2.2.2.html>`__. |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
582 |
469
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
583 .. highlight:: bash |
378
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
584 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
585 Here is a sample call to retrieve all the studies that were last |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
586 updated in 2019 thanks to this Python script:: |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
587 |
16dc3561b41e
Filtering and returning metadata using Python
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
375
diff
changeset
|
588 $ curl http://localhost:8042/tools/find -d '{"Level":"Study","Query":{},"Expand":true,"Metadata":{"LastUpdate":"^2019.*$"}}' |
369
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
589 |
181b02cea7ab
inspecting Python API
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
364
diff
changeset
|
590 |
469
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
591 .. _python-paging: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
592 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
593 Implementing basic paging |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
594 ......................... |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
595 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
596 .. highlight:: python |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
597 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
598 As explained in the FAQ, the :ref:`Orthanc Explorer interface is |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
599 low-level <improving-interface>`, and is not adapted for |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
600 end-users. One common need is to implement paging of studies, which |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
601 calls for server-side sorting of studies. This can be done using the |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
602 following sample Python plugin that registers a new route |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
603 ``/sort-studies`` in the REST API of Orthanc:: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
604 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
605 import json |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
606 import orthanc |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
607 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
608 def GetStudyDate(study): |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
609 if 'StudyDate' in study['MainDicomTags']: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
610 return study['MainDicomTags']['StudyDate'] |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
611 else: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
612 return '' |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
613 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
614 def SortStudiesByDate(output, uri, **request): |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
615 if request['method'] == 'GET': |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
616 # Retrieve all the studies |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
617 studies = json.loads(orthanc.RestApiGet('/studies?expand')) |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
618 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
619 # Sort the studies according to the "StudyDate" DICOM tag |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
620 studies = sorted(studies, key = GetStudyDate) |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
621 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
622 # Read the limit/offset arguments provided by the user |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
623 offset = 0 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
624 if 'offset' in request['get']: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
625 offset = int(request['get']['offset']) |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
626 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
627 limit = 0 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
628 if 'limit' in request['get']: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
629 limit = int(request['get']['limit']) |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
630 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
631 # Truncate the list of studies |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
632 if limit == 0: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
633 studies = studies[offset : ] |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
634 else: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
635 studies = studies[offset : offset + limit] |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
636 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
637 # Return the truncated list of studies |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
638 output.AnswerBuffer(json.dumps(studies), 'application/json') |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
639 else: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
640 output.SendMethodNotAllowed('GET') |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
641 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
642 orthanc.RegisterRestCallback('/sort-studies', SortStudiesByDate) |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
643 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
644 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
645 .. highlight:: bash |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
646 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
647 Here is a sample call to this new REST route, that could be issued by |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
648 any JavaScript framework (the ``json_pp`` command-line pretty-prints a |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
649 JSON file):: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
650 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
651 $ curl http://localhost:8042/sort-studies | json_pp |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
652 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
653 This route also implement paging (i.e. it can limit and offset the |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
654 returned studies):: |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
655 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
656 $ curl 'http://localhost:8042/sort-studies?offset=2&limit=2' | json_pp |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
657 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
658 Obviously, this basic sample can be improved in many ways. To improve |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
659 performance, one could for instance cache the result of |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
660 ``/studies?expand`` in memory by :ref:`listening to changes |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
661 <python-changes>` in the list of studies |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
662 (cf. ``orthanc.ChangeType.NEW_STUDY`` and |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
663 ``orthanc.ChangeType.DELETED``). |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
664 |
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
665 |
551
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
666 .. _python_excel: |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
667 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
668 Creating a Microsoft Excel report |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
669 ................................. |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
670 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
671 .. highlight:: python |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
672 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
673 As Orthanc plugins have access to any installed Python module, it is |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
674 very easy to implement a server-side plugin that generates a report in |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
675 the Microsoft Excel ``.xls`` format. Here is a working example:: |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
676 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
677 import StringIO |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
678 import json |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
679 import orthanc |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
680 import xlwt |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
681 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
682 def CreateExcelReport(output, uri, **request): |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
683 if request['method'] != 'GET' : |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
684 output.SendMethodNotAllowed('GET') |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
685 else: |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
686 # Create an Excel writer |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
687 excel = xlwt.Workbook() |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
688 sheet = excel.add_sheet('Studies') |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
689 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
690 # Loop over the studies stored in Orthanc |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
691 row = 0 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
692 studies = orthanc.RestApiGet('/studies?expand') |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
693 for study in json.loads(studies): |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
694 sheet.write(row, 0, study['PatientMainDicomTags'].get('PatientID')) |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
695 sheet.write(row, 1, study['PatientMainDicomTags'].get('PatientName')) |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
696 sheet.write(row, 2, study['MainDicomTags'].get('StudyDescription')) |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
697 row += 1 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
698 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
699 # Serialize the Excel workbook to a string, and return it to the caller |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
700 # https://stackoverflow.com/a/15649139/881731 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
701 b = StringIO.StringIO() |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
702 excel.save(b) |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
703 output.AnswerBuffer(b.getvalue(), 'application/vnd.ms-excel') |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
704 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
705 orthanc.RegisterRestCallback('/report.xls', CreateExcelReport) |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
706 |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
707 If opening the ``http://localhost:8042/report.xls`` URI, this Python |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
708 will generate a workbook with one sheet that contains the list of |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
709 studies, with the patient ID, the patient name and the study |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
710 description. |
d0332c5a2cb8
Python plugin: excel generation example
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
539
diff
changeset
|
711 |
469
46949efa5818
Implementing basic paging using a Python script
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
712 |
351 | 713 Performance and concurrency |
714 --------------------------- | |
715 | |
471
a735476a0e6e
note about fork on windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
716 **Important:** This section only applies to UNIX-like systems. The |
a735476a0e6e
note about fork on windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
717 ``multiprocessing`` package will not work on Microsoft Windows as the |
a735476a0e6e
note about fork on windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
718 latter OS has a different model for `forking processes |
a735476a0e6e
note about fork on windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
719 <https://en.wikipedia.org/wiki/Fork_(system_call)>`__. |
a735476a0e6e
note about fork on windows
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
462
diff
changeset
|
720 |
555
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
721 Using slave processes |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
722 ..................... |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
723 |
351 | 724 .. highlight:: python |
725 | |
726 Let us consider the following sample Python script that makes a | |
727 CPU-intensive computation on a REST callback:: | |
728 | |
729 import math | |
730 import orthanc | |
731 import time | |
732 | |
733 # CPU-intensive computation taking about 4 seconds | |
734 def SlowComputation(): | |
735 start = time.time() | |
736 for i in range(1000): | |
737 for j in range(30000): | |
738 math.sqrt(float(j)) | |
739 end = time.time() | |
740 duration = (end - start) | |
741 return 'computation done in %.03f seconds\n' % duration | |
742 | |
743 def OnRest(output, uri, **request): | |
744 answer = SlowComputation() | |
745 output.AnswerBuffer(answer, 'text/plain') | |
746 | |
747 orthanc.RegisterRestCallback('/computation', OnRest) | |
748 | |
749 | |
750 .. highlight:: text | |
751 | |
752 Calling this REST route from the command-line returns the time that is | |
753 needed to compute 30 million times a squared root on your CPU:: | |
754 | |
755 $ curl http://localhost:8042/computation | |
756 computation done in 4.208 seconds | |
757 | |
758 Now, let us call this route three times concurrently (we use bash):: | |
759 | |
760 $ (curl http://localhost:8042/computation & curl http://localhost:8042/computation & curl http://localhost:8042/computation ) | |
761 computation done in 11.262 seconds | |
762 computation done in 12.457 seconds | |
763 computation done in 13.360 seconds | |
764 | |
765 As can be seen, the computation time has tripled. This means that the | |
766 computations were not distributed across the available CPU cores. | |
767 This might seem surprising, as Orthanc is a threaded server (in | |
768 Orthanc, a pool of C++ threads serves concurrent requests). | |
769 | |
770 The explanation is that the Python interpreter (`CPython | |
771 <https://en.wikipedia.org/wiki/CPython>`__ actually) is built on the | |
772 top of a so-called `Global Interpreter Lock (GIL) | |
773 <https://en.wikipedia.org/wiki/Global_interpreter_lock>`__. The GIL is | |
774 basically a mutex that protects all the calls to the Python | |
775 interpreter. If multiple C++ threads from Orthanc call a Python | |
353 | 776 callback, only one can proceed at any given time. Note however that |
777 the GIL only applies to the Python script: The baseline REST API of | |
778 Orthanc is not affected by the GIL. | |
351 | 779 |
780 .. highlight:: python | |
781 | |
782 The solution is to use the `multiprocessing primitives | |
783 <https://docs.python.org/3/library/multiprocessing.html>`__ of Python. | |
784 The "master" Python interpreter that is initially started by the | |
785 Orthanc plugin, can start several `children processes | |
786 <https://en.wikipedia.org/wiki/Process_(computing)>`__, each of these | |
787 processes running a separate Python interpreter. This allows to | |
788 offload intensive computations from the "master" Python interpreter of | |
789 Orthanc onto those "slave" interpreters. The ``multiprocessing`` | |
790 library is actually quite straightforward to use:: | |
791 | |
792 import math | |
793 import multiprocessing | |
794 import orthanc | |
795 import signal | |
796 import time | |
797 | |
798 # CPU-intensive computation taking about 4 seconds | |
799 # (same code as above) | |
800 def SlowComputation(): | |
801 start = time.time() | |
802 for i in range(1000): | |
803 for j in range(30000): | |
804 math.sqrt(float(j)) | |
805 end = time.time() | |
806 duration = (end - start) | |
807 return 'computation done in %.03f seconds\n' % duration | |
808 | |
809 # Ignore CTRL+C in the slave processes | |
810 def Initializer(): | |
811 signal.signal(signal.SIGINT, signal.SIG_IGN) | |
812 | |
813 # Create a pool of 4 slave Python interpreters | |
814 POOL = multiprocessing.Pool(4, initializer = Initializer) | |
815 | |
816 def OnRest(output, uri, **request): | |
817 # Offload the call to "SlowComputation" onto one slave process. | |
818 # The GIL is unlocked until the slave sends its answer back. | |
819 answer = POOL.apply(SlowComputation) | |
820 output.AnswerBuffer(answer, 'text/plain') | |
821 | |
822 orthanc.RegisterRestCallback('/computation', OnRest) | |
823 | |
824 .. highlight:: text | |
825 | |
826 Here is now the result of calling this route three times concurrently:: | |
827 | |
828 $ (curl http://localhost:8042/computation & curl http://localhost:8042/computation & curl http://localhost:8042/computation ) | |
829 computation done in 4.211 seconds | |
830 computation done in 4.215 seconds | |
831 computation done in 4.225 seconds | |
832 | |
833 As can be seen, the calls to the Python computation now fully run in | |
834 parallel (the time is cut down from 12 seconds to 4 seconds, the same | |
835 as for one isolated request). | |
836 | |
837 Note also how the ``multiprocessing`` library allows to make a fine | |
838 control over the computational resources that are available to the | |
839 Python script: The number of "slave" interpreters can be easily | |
840 changed in the constructor of the ``multiprocessing.Pool`` object, and | |
841 are fully independent of the threads used by the Orthanc server. | |
842 | |
555
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
843 Obviously, an in-depth discussion about the ``multiprocessing`` |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
844 library is out of the scope of this document. There are many |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
845 references available on Internet. Also, note that ``threading`` is not |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
846 useful here, as Python multithreading is also limited by the GIL, and |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
847 is more targeted at dealing with costly I/O operations or with the |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
848 :ref:`scheduling of commands <python-scheduler>`. |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
849 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
850 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
851 Slave processes and the "orthanc" module |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
852 ........................................ |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
853 |
352 | 854 .. highlight:: python |
855 | |
555
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
856 Very importantly, pay attention to the fact that **only the "master" |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
857 Python interpreter has access to the Orthanc SDK**. The "slave" |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
858 processes have no access to the ``orthanc`` module. |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
859 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
860 You must write your Python plugin so as that all the calls to |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
861 ``orthanc`` are moved from the slaves process to the master |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
862 process. For instance, here is how you would parse a DICOM file in a |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
863 slave process:: |
352 | 864 |
865 import pydicom | |
866 import io | |
867 | |
868 def OffloadedDicomParsing(dicom): | |
869 # No access to the "orthanc" library here, as we are in the slave process | |
870 dataset = pydicom.dcmread(io.BytesIO(dicom)) | |
871 return str(dataset) | |
872 | |
873 def OnRest(output, uri, **request): | |
874 # The call to "orthanc.RestApiGet()" is only possible in the master process | |
875 dicom = orthanc.RestApiGet('/instances/19816330-cb02e1cf-df3a8fe8-bf510623-ccefe9f5/file') | |
876 answer = POOL.apply(OffloadedDicomParsing, args = (dicom, )) | |
877 output.AnswerBuffer(answer, 'text/plain') | |
878 | |
879 Communication primitives such as ``multiprocessing.Queue`` are | |
880 available to exchange messages from the "slave" Python interpreters to | |
555
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
881 the "master" Python interpreter for more advanced scenarios. |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
882 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
883 NB: Starting with release 3.0 of the Python plugin, it is possible to |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
884 call the REST API of Orthanc from a slave process in a more direct |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
885 way. The function ``orthanc.GenerateRestApiAuthorizationToken()`` can |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
886 be used to create an authorization token that provides full access to |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
887 the REST API of Orthanc (without have to set credentials in your |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
888 plugin). Any HTTP client library for Python, such as `requests |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
889 <https://requests.readthedocs.io/en/master/>`__, can then be used to |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
890 access the REST API of Orthanc. Here is a minimal example:: |
352 | 891 |
555
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
892 import json |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
893 import multiprocessing |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
894 import orthanc |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
895 import requests |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
896 import signal |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
897 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
898 TOKEN = orthanc.GenerateRestApiAuthorizationToken() |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
899 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
900 def SlaveProcess(): |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
901 r = requests.get('http://localhost:8042/instances', |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
902 headers = { 'Authorization' : TOKEN }) |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
903 return json.dumps(r.json()) |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
904 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
905 def Initializer(): |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
906 signal.signal(signal.SIGINT, signal.SIG_IGN) |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
907 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
908 POOL = multiprocessing.Pool(4, initializer = Initializer) |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
909 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
910 def OnRest(output, uri, **request): |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
911 answer = POOL.apply(SlaveProcess) |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
912 output.AnswerBuffer(answer, 'text/plain') |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
913 |
6fb469a3c382
Python plugin: documentation of orthanc.GenerateRestApiAuthorizationToken()
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
554
diff
changeset
|
914 orthanc.RegisterRestCallback('/computation', OnRest) |