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