Mercurial > hg > orthanc-python
annotate Sources/Autogenerated/sdk_OrthancPluginFindMatcher.impl.h @ 137:cc0765aae484
fix signature of orthanc.RestOutput.SendHttpStatus()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 05 Sep 2023 13:32:32 +0200 |
parents | c55b0583084b |
children | 71d305c29cfa |
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 static void RegisterOrthancPluginFindMatcherClass(PyObject* module) | |
94 { | |
95 sdk_OrthancPluginFindMatcher_Type.tp_new = PyType_GenericNew; | |
96 sdk_OrthancPluginFindMatcher_Type.tp_flags = Py_TPFLAGS_DEFAULT; | |
97 sdk_OrthancPluginFindMatcher_Type.tp_doc = "Generated from Orthanc C class: OrthancPluginFindMatcher"; | |
98 sdk_OrthancPluginFindMatcher_Type.tp_methods = sdk_OrthancPluginFindMatcher_Methods; | |
99 sdk_OrthancPluginFindMatcher_Type.tp_init = (initproc) sdk_OrthancPluginFindMatcher_Constructor; | |
100 | |
101 /** | |
102 * "tp_dealloc is called when the reference count of the object goes | |
103 * down to zero. This is where you destroy the object and its | |
104 * members. It should then free the memory occupied by the object by | |
105 * calling tp_free." | |
106 * https://stackoverflow.com/a/24863227/881731 | |
107 **/ | |
108 sdk_OrthancPluginFindMatcher_Type.tp_dealloc = sdk_OrthancPluginFindMatcher_Destructor; | |
109 | |
110 if (PyType_Ready(&sdk_OrthancPluginFindMatcher_Type) < 0) | |
111 { | |
112 OrthancPlugins::LogError("Cannot register Python class: OrthancPluginFindMatcher"); | |
113 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError); | |
114 } | |
115 | |
116 Py_INCREF(&sdk_OrthancPluginFindMatcher_Type); | |
117 if (PyModule_AddObject(module, "FindMatcher", (PyObject *)&sdk_OrthancPluginFindMatcher_Type) < 0) | |
118 { | |
119 OrthancPlugins::LogError("Cannot register Python class: OrthancPluginFindMatcher"); | |
120 Py_DECREF(&sdk_OrthancPluginFindMatcher_Type); | |
121 ORTHANC_PLUGINS_THROW_EXCEPTION(InternalError); | |
122 } | |
123 } | |
124 | |
125 | |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
126 PyTypeObject* GetOrthancPluginFindMatcherType() |
42 | 127 { |
63
32de70a1e4c7
New functions from the SDK wrapped in Python: CreateDicom, RegisterFindCallback, RegisterMoveCallback
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
56
diff
changeset
|
128 return &sdk_OrthancPluginFindMatcher_Type; |
42 | 129 } |