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