Mercurial > hg > orthanc-python
annotate Sources/Autogenerated/sdk_OrthancPluginFindMatcher.impl.h @ 212:2db6c1f6417f
documented orthanc.RegisterStorageArea()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 03 Jul 2024 14:39:25 +0200 |
parents | 55473de7694f |
children | 3678a028f1f6 |
rev | line source |
---|---|
42 | 1 /** |
2 * Python plugin for Orthanc | |
166
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
155
diff
changeset
|
3 * Copyright (C) 2020-2023 Osimis S.A., Belgium |
6fada29b6759
updated copyright, as Orthanc Team now replaces Osimis
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
155
diff
changeset
|
4 * Copyright (C) 2024-2024 Orthanc Team SRL, Belgium |
155
71d305c29cfa
updated year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
131
diff
changeset
|
5 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
42 | 6 * |
7 * This program is free software: you can redistribute it and/or | |
8 * modify it under the terms of the GNU Affero General Public License | |
9 * as published by the Free Software Foundation, either version 3 of | |
10 * the License, or (at your option) any later version. | |
11 * | |
12 * This program is distributed in the hope that it will be useful, but | |
13 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
15 * Affero General Public License for more details. | |
16 * | |
17 * You should have received a copy of the GNU Affero General Public License | |
18 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 **/ | |
20 | |
21 | |
186
55473de7694f
added warning about auto-generated files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
171
diff
changeset
|
22 // WARNING: Auto-generated file. Do not modify it by hand. |
55473de7694f
added warning about auto-generated files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
171
diff
changeset
|
23 |
55473de7694f
added warning about auto-generated files
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
171
diff
changeset
|
24 |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
25 // Forward declaration of the autogenerated methods |
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
26 static PyObject *sdk_OrthancPluginFindMatcher_OrthancPluginFindMatcherIsMatch( |
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
27 sdk_OrthancPluginFindMatcher_Object* self, PyObject *args); |
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
28 // End of forward declarations |
42 | 29 |
30 | |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
31 // Forward declaration of the custom methods |
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
32 // End of forward declarations |
42 | 33 |
34 | |
35 static PyMethodDef sdk_OrthancPluginFindMatcher_Methods[] = { | |
36 { "FindMatcherIsMatch", | |
37 (PyCFunction) sdk_OrthancPluginFindMatcher_OrthancPluginFindMatcherIsMatch, METH_VARARGS, | |
38 "Generated from C function OrthancPluginFindMatcherIsMatch()" }, | |
39 { NULL } /* Sentinel */ | |
40 }; | |
41 | |
42 | |
43 static int sdk_OrthancPluginFindMatcher_Constructor( | |
44 sdk_OrthancPluginFindMatcher_Object *self, PyObject *args, PyObject *kwds) | |
45 { | |
46 PythonLock::LogCall("Creating Python object of class OrthancPluginFindMatcher"); | |
47 | |
48 self->object_ = NULL; | |
49 self->borrowed_ = false; | |
50 | |
51 long long object = 0; | |
52 unsigned char borrowed = false; | |
53 | |
54 if (PyArg_ParseTuple(args, "Lb", &object, &borrowed)) | |
55 { | |
56 self->object_ = reinterpret_cast<OrthancPluginFindMatcher*>(static_cast<intptr_t>(object)); | |
57 self->borrowed_ = borrowed; | |
58 return 0; | |
59 } | |
60 else | |
61 { | |
62 PyErr_SetString(PyExc_ValueError, "Expected a pair (pointer, borrowed) in the constructor"); | |
63 return -1; | |
64 } | |
65 } | |
66 | |
67 | |
68 /** | |
69 * Static global structure => the fields that are beyond the last | |
70 * initialized field are set to zero. | |
71 * https://stackoverflow.com/a/11152199/881731 | |
72 **/ | |
73 static PyTypeObject sdk_OrthancPluginFindMatcher_Type = { | |
74 PyVarObject_HEAD_INIT(NULL, 0) | |
75 "orthanc.FindMatcher", /* tp_name */ | |
76 sizeof(sdk_OrthancPluginFindMatcher_Object), /* tp_basicsize */ | |
77 }; | |
78 | |
79 | |
80 static void sdk_OrthancPluginFindMatcher_Destructor(PyObject *self) | |
81 { | |
82 PythonLock::LogCall("Destroying Python object of class OrthancPluginFindMatcher"); | |
83 | |
84 sdk_OrthancPluginFindMatcher_Object& tmp = *((sdk_OrthancPluginFindMatcher_Object*) self); | |
85 | |
86 if (tmp.object_ != NULL && | |
87 !tmp.borrowed_) | |
88 { | |
89 OrthancPluginFreeFindMatcher(OrthancPlugins::GetGlobalContext(), tmp.object_); | |
90 tmp.object_ = NULL; | |
91 } | |
92 | |
93 Py_TYPE(self)->tp_free((PyObject *)self); | |
94 } | |
95 | |
96 | |
97 static void RegisterOrthancPluginFindMatcherClass(PyObject* module) | |
98 { | |
99 sdk_OrthancPluginFindMatcher_Type.tp_new = PyType_GenericNew; | |
100 sdk_OrthancPluginFindMatcher_Type.tp_flags = Py_TPFLAGS_DEFAULT; | |
101 sdk_OrthancPluginFindMatcher_Type.tp_doc = "Generated from Orthanc C class: OrthancPluginFindMatcher"; | |
102 sdk_OrthancPluginFindMatcher_Type.tp_methods = sdk_OrthancPluginFindMatcher_Methods; | |
103 sdk_OrthancPluginFindMatcher_Type.tp_init = (initproc) sdk_OrthancPluginFindMatcher_Constructor; | |
104 | |
105 /** | |
106 * "tp_dealloc is called when the reference count of the object goes | |
107 * down to zero. This is where you destroy the object and its | |
108 * members. It should then free the memory occupied by the object by | |
109 * calling tp_free." | |
110 * https://stackoverflow.com/a/24863227/881731 | |
111 **/ | |
112 sdk_OrthancPluginFindMatcher_Type.tp_dealloc = sdk_OrthancPluginFindMatcher_Destructor; | |
113 | |
114 if (PyType_Ready(&sdk_OrthancPluginFindMatcher_Type) < 0) | |
115 { | |
171
c8de83fe7faa
removed deprecation warnings
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
166
diff
changeset
|
116 ORTHANC_PLUGINS_LOG_ERROR("Cannot register Python class: OrthancPluginFindMatcher"); |
42 | 117 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError); |
118 } | |
119 | |
120 Py_INCREF(&sdk_OrthancPluginFindMatcher_Type); | |
121 if (PyModule_AddObject(module, "FindMatcher", (PyObject *)&sdk_OrthancPluginFindMatcher_Type) < 0) | |
122 { | |
171
c8de83fe7faa
removed deprecation warnings
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
166
diff
changeset
|
123 ORTHANC_PLUGINS_LOG_ERROR("Cannot register Python class: OrthancPluginFindMatcher"); |
42 | 124 Py_DECREF(&sdk_OrthancPluginFindMatcher_Type); |
125 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError); | |
126 } | |
127 } | |
128 | |
129 | |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
130 PyTypeObject* GetOrthancPluginFindMatcherType() |
42 | 131 { |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
132 return &sdk_OrthancPluginFindMatcher_Type; |
42 | 133 } |