lib: make default query implementation return INVALID_OBJECT, remove UNSUPPORTED...
[babeltrace.git] / src / bindings / python / bt2 / bt2 / native_bt_component_class.i
CommitLineData
6fa6bfa1
SM
1/*
2 * The MIT License (MIT)
3 *
4 * Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24
fb25b9e3 25%include <babeltrace2/graph/component-class.h>
e4b56bb9
SM
26%include <babeltrace2/graph/component-class-const.h>
27%include <babeltrace2/graph/component-class-source-const.h>
28%include <babeltrace2/graph/component-class-source.h>
29%include <babeltrace2/graph/component-class-filter-const.h>
30%include <babeltrace2/graph/component-class-filter.h>
31%include <babeltrace2/graph/component-class-sink-const.h>
32%include <babeltrace2/graph/component-class-sink.h>
33%include <babeltrace2/graph/self-component-class-source.h>
34%include <babeltrace2/graph/self-component-class-filter.h>
35%include <babeltrace2/graph/self-component-class-sink.h>
6fa6bfa1
SM
36
37%{
38/*
39 * This hash table associates a BT component class object address to a
40 * user-defined Python class (PyObject *). The keys and values are NOT
41 * owned by this hash table. The Python class objects are owned by the
42 * Python module, which should not be unloaded until it is not possible
43 * to create a user Python component anyway.
44 *
45 * This hash table is written to when a user-defined Python component
fb25b9e3 46 * class is created by one of the bt_bt2_component_class_*_create()
6fa6bfa1
SM
47 * functions.
48 *
49 * This function is read from when a user calls bt_component_create()
50 * with a component class pointer created by one of the functions above.
51 * In this case, the original Python class needs to be found to
52 * instantiate it and associate the created Python component object with
53 * a BT component object instance.
54 */
55
56static GHashTable *bt_cc_ptr_to_py_cls;
57
efb177a7
SM
58static
59void register_cc_ptr_to_py_cls(struct bt_component_class *bt_cc,
6fa6bfa1
SM
60 PyObject *py_cls)
61{
62 if (!bt_cc_ptr_to_py_cls) {
63 /*
64 * Lazy-initializing this GHashTable because GLib
65 * might not be initialized yet and it needs to be
66 * before we call g_hash_table_new()
67 */
68 BT_LOGD_STR("Creating native component class to Python component class hash table.");
69 bt_cc_ptr_to_py_cls = g_hash_table_new(g_direct_hash, g_direct_equal);
70 BT_ASSERT(bt_cc_ptr_to_py_cls);
71 }
72
73 g_hash_table_insert(bt_cc_ptr_to_py_cls, (gpointer) bt_cc,
74 (gpointer) py_cls);
75}
76
efb177a7
SM
77static
78PyObject *lookup_cc_ptr_to_py_cls(const bt_component_class *bt_cc)
6fa6bfa1
SM
79{
80 if (!bt_cc_ptr_to_py_cls) {
81 BT_LOGW("Cannot look up Python component class because hash table is NULL: "
82 "comp-cls-addr=%p", bt_cc);
83 return NULL;
84 }
85
86 return (PyObject *) g_hash_table_lookup(bt_cc_ptr_to_py_cls,
87 (gconstpointer) bt_cc);
88}
89
90
91/*
92 * Useful Python objects.
93 */
94
95static PyObject *py_mod_bt2 = NULL;
96static PyObject *py_mod_bt2_exc_error_type = NULL;
493428a0 97static PyObject *py_mod_bt2_exc_memory_error = NULL;
6fa6bfa1
SM
98static PyObject *py_mod_bt2_exc_try_again_type = NULL;
99static PyObject *py_mod_bt2_exc_stop_type = NULL;
fa4c33e3 100static PyObject *py_mod_bt2_exc_msg_iter_canceled_type = NULL;
fb25b9e3
PP
101static PyObject *py_mod_bt2_exc_invalid_object_type = NULL;
102static PyObject *py_mod_bt2_exc_invalid_params_type = NULL;
6fa6bfa1 103
efb177a7 104static
fb25b9e3 105void bt_bt2_cc_init_from_bt2(void)
6fa6bfa1
SM
106{
107 /*
108 * This is called once the bt2 package is loaded.
109 *
110 * Those modules and functions are needed while the package is
111 * used. Loading them here is safe because we know the bt2
112 * package is imported, and we know that the user cannot use the
113 * code here without importing bt2 first.
114 */
115 py_mod_bt2 = PyImport_ImportModule("bt2");
116 BT_ASSERT(py_mod_bt2);
117 py_mod_bt2_exc_error_type =
614743a5 118 PyObject_GetAttrString(py_mod_bt2, "_Error");
6fa6bfa1 119 BT_ASSERT(py_mod_bt2_exc_error_type);
493428a0 120 py_mod_bt2_exc_memory_error =
614743a5 121 PyObject_GetAttrString(py_mod_bt2, "_MemoryError");
493428a0 122 BT_ASSERT(py_mod_bt2_exc_memory_error);
6fa6bfa1
SM
123 py_mod_bt2_exc_try_again_type =
124 PyObject_GetAttrString(py_mod_bt2, "TryAgain");
125 BT_ASSERT(py_mod_bt2_exc_try_again_type);
126 py_mod_bt2_exc_stop_type =
127 PyObject_GetAttrString(py_mod_bt2, "Stop");
128 BT_ASSERT(py_mod_bt2_exc_stop_type);
fb25b9e3
PP
129 py_mod_bt2_exc_invalid_object_type =
130 PyObject_GetAttrString(py_mod_bt2, "InvalidObject");
131 BT_ASSERT(py_mod_bt2_exc_invalid_object_type);
132 py_mod_bt2_exc_invalid_params_type =
133 PyObject_GetAttrString(py_mod_bt2, "InvalidParams");
134 BT_ASSERT(py_mod_bt2_exc_invalid_params_type);
6fa6bfa1
SM
135}
136
efb177a7 137static
fb25b9e3 138void bt_bt2_cc_exit_handler(void)
6fa6bfa1
SM
139{
140 /*
141 * This is an exit handler (set by the bt2 package).
142 *
143 * We only give back the references that we took in
fb25b9e3 144 * bt_bt2_cc_init_from_bt2() here. The global variables continue
6fa6bfa1
SM
145 * to exist for the code of this file, but they are now borrowed
146 * references. If this code is executed, it means that somehow
147 * the modules are still loaded, so it should be safe to use
148 * them even without a strong reference.
149 *
150 * We cannot do this in the library's destructor because it
151 * gets executed once Python is already finalized.
152 */
153 Py_XDECREF(py_mod_bt2);
154 Py_XDECREF(py_mod_bt2_exc_error_type);
155 Py_XDECREF(py_mod_bt2_exc_try_again_type);
156 Py_XDECREF(py_mod_bt2_exc_stop_type);
fa4c33e3 157 Py_XDECREF(py_mod_bt2_exc_msg_iter_canceled_type);
fb25b9e3
PP
158 Py_XDECREF(py_mod_bt2_exc_invalid_object_type);
159 Py_XDECREF(py_mod_bt2_exc_invalid_params_type);
6fa6bfa1
SM
160}
161
162
163/* Library destructor */
164
165__attribute__((destructor))
efb177a7 166static
fb25b9e3 167void native_comp_class_dtor(void) {
6fa6bfa1
SM
168 /* Destroy component class association hash table */
169 if (bt_cc_ptr_to_py_cls) {
170 BT_LOGD_STR("Destroying native component class to Python component class hash table.");
171 g_hash_table_destroy(bt_cc_ptr_to_py_cls);
172 }
173}
174
3b2be708
SM
175static
176void restore_current_thread_error_and_append_exception_chain_recursive(
177 PyObject *py_exc_value,
178 bt_self_component_class *self_component_class,
179 bt_self_component *self_component,
180 bt_self_message_iterator *self_message_iterator,
181 const char *module_name)
182{
183 PyObject *py_exc_cause_value;
184 PyObject *py_exc_type = NULL;
185 PyObject *py_exc_tb = NULL;
186 GString *gstr = NULL;
187
188 /* If this exception has a cause, handle that one first. */
189 py_exc_cause_value = PyException_GetCause(py_exc_value);
190 if (py_exc_cause_value) {
191 restore_current_thread_error_and_append_exception_chain_recursive(
192 py_exc_cause_value, self_component_class,
193 self_component, self_message_iterator, module_name);
194 }
195
196 /*
614743a5 197 * If the raised exception is a bt2._Error, restore the wrapped error.
3b2be708
SM
198 */
199 if (PyErr_GivenExceptionMatches(py_exc_value, py_mod_bt2_exc_error_type)) {
200 PyObject *py_error_swig_ptr;
201 const bt_error *error;
202 int ret;
203
204 /*
614743a5 205 * We never raise a bt2._Error with a cause: it should be the
3b2be708
SM
206 * end of the chain.
207 */
208 BT_ASSERT(!py_exc_cause_value);
209
210 /*
211 * We steal the error object from the exception, to move
212 * it back as the current thread's error.
213 */
214 py_error_swig_ptr = PyObject_GetAttrString(py_exc_value, "_ptr");
215 BT_ASSERT(py_error_swig_ptr);
216
217 ret = PyObject_SetAttrString(py_exc_value, "_ptr", Py_None);
218 BT_ASSERT(ret == 0);
219
220 ret = SWIG_ConvertPtr(py_error_swig_ptr, (void **) &error,
221 SWIGTYPE_p_bt_error, 0);
222 BT_ASSERT(ret == 0);
223
224 BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(error);
225
226 Py_DECREF(py_error_swig_ptr);
227 }
228
229 py_exc_type = PyObject_Type(py_exc_value);
230 py_exc_tb = PyException_GetTraceback(py_exc_value);
231
232 gstr = bt_py_common_format_exception(py_exc_type, py_exc_value,
233 py_exc_tb, BT_LOG_OUTPUT_LEVEL, false);
234 if (!gstr) {
235 /* bt_py_common_format_exception has already warned. */
236 goto end;
237 }
238
239 if (self_component_class) {
240 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_COMPONENT_CLASS(
241 self_component_class, "%s", gstr->str);
242 } else if (self_component) {
243 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_COMPONENT(
244 self_component, "%s", gstr->str);
245 } else if (self_message_iterator) {
246 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_MESSAGE_ITERATOR(
247 self_message_iterator, "%s", gstr->str);
248 } else {
249 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_UNKNOWN(
250 module_name, "%s", gstr->str);
251 }
252
253end:
254 if (gstr) {
255 g_string_free(gstr, TRUE);
256 }
257
258 Py_XDECREF(py_exc_cause_value);
259 Py_XDECREF(py_exc_type);
260 Py_XDECREF(py_exc_tb);
261}
262
263/*
264 * If you have the following code:
265 *
266 * try:
267 * try:
268 * something_that_raises_bt2_error()
614743a5 269 * except bt2._Error as e1:
3b2be708
SM
270 * raise ValueError from e1
271 * except ValueError as e2:
272 * raise TypeError from e2
273 *
274 * We will have the following exception chain:
275 *
614743a5 276 * TypeError -> ValueError -> bt2._Error
3b2be708
SM
277 *
278 * Where the TypeError is the current exception (obtained from PyErr_Fetch).
279 *
614743a5 280 * The bt2._Error contains a `struct bt_error *` that used to be the current
3b2be708
SM
281 * thread's error, at the moment the exception was raised.
282 *
614743a5 283 * This function gets to the bt2._Error and restores the wrapped
3b2be708
SM
284 * `struct bt_error *` as the current thread's error.
285 *
286 * Then, for each exception in the chain, starting with the oldest one, it adds
287 * an error cause to the current thread's error.
288 */
289static
290void restore_bt_error_and_append_current_exception_chain(
291 bt_self_component_class *self_component_class,
292 bt_self_component *self_component,
293 bt_self_message_iterator *self_message_iterator,
294 const char *module_name)
295{
296 BT_ASSERT(PyErr_Occurred());
297
298 /* Used to access and restore the current exception. */
299 PyObject *py_exc_type;
300 PyObject *py_exc_value;
301 PyObject *py_exc_tb;
302
303 /* Fetch and normalize the Python exception. */
304 PyErr_Fetch(&py_exc_type, &py_exc_value, &py_exc_tb);
305 PyErr_NormalizeException(&py_exc_type, &py_exc_value, &py_exc_tb);
306 BT_ASSERT(py_exc_type);
307 BT_ASSERT(py_exc_value);
308 BT_ASSERT(py_exc_tb);
309
310 /*
311 * Set the exception's traceback so it's possible to get it using
312 * PyException_GetTraceback in
313 * restore_current_thread_error_and_append_exception_chain_recursive.
314 */
315 PyException_SetTraceback(py_exc_value, py_exc_tb);
316
317 restore_current_thread_error_and_append_exception_chain_recursive(py_exc_value,
318 self_component_class, self_component, self_message_iterator,
319 module_name);
320
321 PyErr_Restore(py_exc_type, py_exc_value, py_exc_tb);
322}
323
fb25b9e3 324static inline
f8d71b59
SM
325void log_exception_and_maybe_append_error(int log_level,
326 bool append_error,
327 bt_self_component_class *self_component_class,
328 bt_self_component *self_component,
3b2be708
SM
329 bt_self_message_iterator *self_message_iterator,
330 const char *module_name)
6fa6bfa1 331{
2d7aa9b6 332 GString *gstr;
6fa6bfa1 333
8e01f2d9 334 BT_ASSERT(PyErr_Occurred());
f33c35fb 335 gstr = bt_py_common_format_current_exception(BT_LOG_OUTPUT_LEVEL);
2d7aa9b6 336 if (!gstr) {
f33c35fb 337 /* bt_py_common_format_current_exception() logs errors */
6fa6bfa1
SM
338 goto end;
339 }
340
fb25b9e3 341 BT_LOG_WRITE(log_level, BT_LOG_TAG, "%s", gstr->str);
6fa6bfa1 342
f8d71b59 343 if (append_error) {
3b2be708
SM
344 restore_bt_error_and_append_current_exception_chain(
345 self_component_class, self_component,
346 self_message_iterator, module_name);
347
f8d71b59
SM
348 }
349
6fa6bfa1 350end:
2d7aa9b6
PP
351 if (gstr) {
352 g_string_free(gstr, TRUE);
6fa6bfa1 353 }
6fa6bfa1
SM
354}
355
fb25b9e3 356static inline
3b2be708 357void loge_exception(const char *module_name)
6fa6bfa1 358{
3b2be708
SM
359 log_exception_and_maybe_append_error(BT_LOG_ERROR, true, NULL, NULL,
360 NULL, module_name);
f8d71b59
SM
361}
362
363static
364void loge_exception_message_iterator(
365 bt_self_message_iterator *self_message_iterator)
366{
3b2be708
SM
367 log_exception_and_maybe_append_error(BT_LOG_ERROR, true, NULL, NULL,
368 self_message_iterator, NULL);
6fa6bfa1
SM
369}
370
fb25b9e3
PP
371static inline
372void logw_exception(void)
6fa6bfa1 373{
3b2be708
SM
374 log_exception_and_maybe_append_error(BT_LOG_WARNING, false, NULL, NULL,
375 NULL, NULL);
6fa6bfa1
SM
376}
377
fb25b9e3 378static inline
f8d71b59
SM
379int py_exc_to_status(bt_self_component_class *self_component_class,
380 bt_self_component *self_component,
3b2be708
SM
381 bt_self_message_iterator *self_message_iterator,
382 const char *module_name)
6fa6bfa1 383{
fb25b9e3 384 int status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
385 PyObject *exc = PyErr_Occurred();
386
387 if (!exc) {
388 goto end;
389 }
390
391 if (PyErr_GivenExceptionMatches(exc,
fb25b9e3
PP
392 py_mod_bt2_exc_try_again_type)) {
393 status = __BT_FUNC_STATUS_AGAIN;
6fa6bfa1 394 } else if (PyErr_GivenExceptionMatches(exc,
fb25b9e3
PP
395 py_mod_bt2_exc_stop_type)) {
396 status = __BT_FUNC_STATUS_END;
6fa6bfa1 397 } else if (PyErr_GivenExceptionMatches(exc,
fb25b9e3
PP
398 py_mod_bt2_exc_invalid_object_type)) {
399 status = __BT_FUNC_STATUS_INVALID_OBJECT;
400 } else if (PyErr_GivenExceptionMatches(exc,
401 py_mod_bt2_exc_invalid_params_type)) {
402 status = __BT_FUNC_STATUS_INVALID_PARAMS;
6fa6bfa1 403 } else {
fb25b9e3 404 /* Unknown exception: convert to general error */
f8d71b59
SM
405 log_exception_and_maybe_append_error(BT_LOG_WARNING, true,
406 self_component_class, self_component,
3b2be708 407 self_message_iterator, module_name);
493428a0
SM
408
409 if (PyErr_GivenExceptionMatches(exc,
410 py_mod_bt2_exc_memory_error)) {
411 status = __BT_FUNC_STATUS_MEMORY_ERROR;
412 } else {
413 status = __BT_FUNC_STATUS_ERROR;
414 }
6fa6bfa1
SM
415 }
416
417end:
418 PyErr_Clear();
419 return status;
420}
421
f8d71b59
SM
422static
423int py_exc_to_status_component_class(bt_self_component_class *self_component_class)
424{
3b2be708 425 return py_exc_to_status(self_component_class, NULL, NULL, NULL);
f8d71b59
SM
426}
427
428static
429int py_exc_to_status_component(bt_self_component *self_component)
430{
3b2be708 431 return py_exc_to_status(NULL, self_component, NULL, NULL);
f8d71b59
SM
432}
433
434static
435int py_exc_to_status_message_iterator(
436 bt_self_message_iterator *self_message_iterator)
437{
3b2be708 438 return py_exc_to_status(NULL, NULL, self_message_iterator, NULL);
f8d71b59
SM
439}
440
fb25b9e3
PP
441/* Component class proxy methods (delegate to the attached Python object) */
442
efb177a7 443static
fb25b9e3 444bt_component_class_init_method_status component_class_init(
6fa6bfa1
SM
445 bt_self_component *self_component,
446 void *self_component_v,
447 swig_type_info *self_comp_cls_type_swig_type,
448 const bt_value *params,
449 void *init_method_data)
450{
451 const bt_component *component = bt_self_component_as_component(self_component);
452 const bt_component_class *component_class = bt_component_borrow_class_const(component);
fb25b9e3 453 bt_component_class_init_method_status status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
454 PyObject *py_cls = NULL;
455 PyObject *py_comp = NULL;
456 PyObject *py_params_ptr = NULL;
457 PyObject *py_comp_ptr = NULL;
458
459 (void) init_method_data;
460
461 BT_ASSERT(self_component);
462 BT_ASSERT(self_component_v);
463 BT_ASSERT(self_comp_cls_type_swig_type);
464
465 /*
466 * Get the user-defined Python class which created this
467 * component's class in the first place (borrowed
468 * reference).
469 */
470 py_cls = lookup_cc_ptr_to_py_cls(component_class);
471 if (!py_cls) {
472 BT_LOGE("Cannot find Python class associated to native component class: "
473 "comp-cls-addr=%p", component_class);
474 goto error;
475 }
476
477 /* Parameters pointer -> SWIG pointer Python object */
478 py_params_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(params),
479 SWIGTYPE_p_bt_value, 0);
480 if (!py_params_ptr) {
481 BT_LOGE_STR("Failed to create a SWIG pointer object.");
482 goto error;
483 }
484
485 py_comp_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(self_component_v),
486 self_comp_cls_type_swig_type, 0);
487 if (!py_comp_ptr) {
488 BT_LOGE_STR("Failed to create a SWIG pointer object.");
489 goto error;
490 }
491
492 /*
493 * Do the equivalent of this:
494 *
deec48a6 495 * py_comp = py_cls._bt_init_from_native(py_comp_ptr, py_params_ptr)
6fa6bfa1 496 *
deec48a6 497 * _UserComponentType._bt_init_from_native() calls the Python
6fa6bfa1
SM
498 * component object's __init__() function.
499 */
500 py_comp = PyObject_CallMethod(py_cls,
deec48a6 501 "_bt_init_from_native", "(OO)", py_comp_ptr, py_params_ptr);
6fa6bfa1 502 if (!py_comp) {
deec48a6 503 BT_LOGW("Failed to call Python class's _bt_init_from_native() method: "
6fa6bfa1 504 "py-cls-addr=%p", py_cls);
f8d71b59
SM
505 status = py_exc_to_status_component(self_component);
506 goto end;
6fa6bfa1
SM
507 }
508
509 /*
510 * Our user Python component object is now fully created and
511 * initialized by the user. Since we just created it, this
512 * native component is its only (persistent) owner.
513 */
514 bt_self_component_set_data(self_component, py_comp);
515 py_comp = NULL;
516 goto end;
517
518error:
fb25b9e3 519 status = __BT_FUNC_STATUS_ERROR;
6fa6bfa1
SM
520
521 /*
522 * Clear any exception: we're returning a bad status anyway. If
523 * this call originated from Python (creation from a plugin's
524 * component class, for example), then the user gets an
525 * appropriate creation error.
526 */
527 PyErr_Clear();
528
529end:
530 Py_XDECREF(py_comp);
531 Py_XDECREF(py_params_ptr);
532 Py_XDECREF(py_comp_ptr);
533 return status;
534}
535
536/*
537 * Method of bt_component_class_source to initialize a bt_self_component_source
538 * of that class.
539 */
540
efb177a7 541static
fb25b9e3 542bt_component_class_init_method_status component_class_source_init(
efb177a7 543 bt_self_component_source *self_component_source,
6fa6bfa1
SM
544 const bt_value *params, void *init_method_data)
545{
546 bt_self_component *self_component = bt_self_component_source_as_self_component(self_component_source);
fb25b9e3 547 return component_class_init(
6fa6bfa1
SM
548 self_component,
549 self_component_source,
550 SWIGTYPE_p_bt_self_component_source,
551 params, init_method_data);
552}
553
efb177a7 554static
fb25b9e3 555bt_component_class_init_method_status component_class_filter_init(
efb177a7 556 bt_self_component_filter *self_component_filter,
6fa6bfa1
SM
557 const bt_value *params, void *init_method_data)
558{
559 bt_self_component *self_component = bt_self_component_filter_as_self_component(self_component_filter);
fb25b9e3 560 return component_class_init(
6fa6bfa1
SM
561 self_component,
562 self_component_filter,
563 SWIGTYPE_p_bt_self_component_filter,
564 params, init_method_data);
565}
566
efb177a7 567static
fb25b9e3 568bt_component_class_init_method_status component_class_sink_init(
efb177a7 569 bt_self_component_sink *self_component_sink,
6fa6bfa1
SM
570 const bt_value *params, void *init_method_data)
571{
572 bt_self_component *self_component = bt_self_component_sink_as_self_component(self_component_sink);
fb25b9e3 573 return component_class_init(
6fa6bfa1
SM
574 self_component,
575 self_component_sink,
576 SWIGTYPE_p_bt_self_component_sink,
577 params, init_method_data);
578}
579
efb177a7 580static
fb25b9e3 581void component_class_finalize(bt_self_component *self_component)
6fa6bfa1
SM
582{
583 PyObject *py_comp = bt_self_component_get_data(self_component);
584 BT_ASSERT(py_comp);
585
586 /* Call user's _finalize() method */
587 PyObject *py_method_result = PyObject_CallMethod(py_comp,
588 "_finalize", NULL);
589
590 if (PyErr_Occurred()) {
fb25b9e3
PP
591 BT_LOGW("User component's _finalize() method raised an exception: ignoring:");
592 logw_exception();
6fa6bfa1
SM
593 }
594
595 /*
596 * Ignore any exception raised by the _finalize() method because
597 * it won't change anything at this point: the component is
598 * being destroyed anyway.
599 */
600 PyErr_Clear();
601 Py_XDECREF(py_method_result);
602 Py_DECREF(py_comp);
603}
604
efb177a7 605static
fb25b9e3 606void component_class_source_finalize(bt_self_component_source *self_component_source)
6fa6bfa1
SM
607{
608 bt_self_component *self_component = bt_self_component_source_as_self_component(self_component_source);
fb25b9e3 609 component_class_finalize(self_component);
6fa6bfa1
SM
610}
611
efb177a7 612static
fb25b9e3 613void component_class_filter_finalize(bt_self_component_filter *self_component_filter)
6fa6bfa1
SM
614{
615 bt_self_component *self_component = bt_self_component_filter_as_self_component(self_component_filter);
fb25b9e3 616 component_class_finalize(self_component);
6fa6bfa1
SM
617}
618
efb177a7 619static
fb25b9e3 620void component_class_sink_finalize(bt_self_component_sink *self_component_sink)
6fa6bfa1
SM
621{
622 bt_self_component *self_component = bt_self_component_sink_as_self_component(self_component_sink);
fb25b9e3 623 component_class_finalize(self_component);
6fa6bfa1
SM
624}
625
39ddfa44 626static
fb25b9e3 627bt_bool component_class_can_seek_beginning(
39ddfa44
SM
628 bt_self_message_iterator *self_message_iterator)
629{
630 PyObject *py_iter;
631 PyObject *py_result = NULL;
632 bt_bool can_seek_beginning = false;
633
634 py_iter = bt_self_message_iterator_get_data(self_message_iterator);
635 BT_ASSERT(py_iter);
636
deec48a6 637 py_result = PyObject_GetAttrString(py_iter, "_bt_can_seek_beginning_from_native");
39ddfa44
SM
638
639 BT_ASSERT(!py_result || PyBool_Check(py_result));
640
641 if (py_result) {
642 can_seek_beginning = PyObject_IsTrue(py_result);
643 } else {
644 /*
645 * Once can_seek_beginning can report errors, convert the
646 * exception to a status. For now, log and return false;
647 */
f8d71b59 648 loge_exception_message_iterator(self_message_iterator);
39ddfa44
SM
649 PyErr_Clear();
650 }
651
652 Py_XDECREF(py_result);
653
654 return can_seek_beginning;
655}
656
657static
fb25b9e3
PP
658bt_component_class_message_iterator_seek_beginning_method_status
659component_class_seek_beginning(bt_self_message_iterator *self_message_iterator)
39ddfa44
SM
660{
661 PyObject *py_iter;
662 PyObject *py_result;
fb25b9e3 663 bt_component_class_message_iterator_seek_beginning_method_status status;
39ddfa44
SM
664
665 py_iter = bt_self_message_iterator_get_data(self_message_iterator);
666 BT_ASSERT(py_iter);
deec48a6 667 py_result = PyObject_CallMethod(py_iter, "_bt_seek_beginning_from_native",
fb25b9e3 668 NULL);
39ddfa44 669 BT_ASSERT(!py_result || py_result == Py_None);
3b2be708 670 status = py_exc_to_status_message_iterator(self_message_iterator);
39ddfa44 671 Py_XDECREF(py_result);
39ddfa44
SM
672 return status;
673}
674
efb177a7 675static
fb25b9e3 676bt_component_class_port_connected_method_status component_class_port_connected(
6fa6bfa1
SM
677 bt_self_component *self_component,
678 void *self_component_port,
679 swig_type_info *self_component_port_swig_type,
680 bt_port_type self_component_port_type,
681 const void *other_port,
682 swig_type_info *other_port_swig_type)
683{
fb25b9e3 684 bt_component_class_port_connected_method_status status;
6fa6bfa1
SM
685 PyObject *py_comp = NULL;
686 PyObject *py_self_port_ptr = NULL;
687 PyObject *py_other_port_ptr = NULL;
688 PyObject *py_method_result = NULL;
689
690 py_comp = bt_self_component_get_data(self_component);
691 BT_ASSERT(py_comp);
6fa6bfa1
SM
692 py_self_port_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(self_component_port),
693 self_component_port_swig_type, 0);
694 if (!py_self_port_ptr) {
695 BT_LOGF_STR("Failed to create a SWIG pointer object.");
fb25b9e3 696 status = __BT_FUNC_STATUS_MEMORY_ERROR;
6fa6bfa1
SM
697 goto end;
698 }
699
700 py_other_port_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(other_port),
701 other_port_swig_type, 0);
702 if (!py_other_port_ptr) {
703 BT_LOGF_STR("Failed to create a SWIG pointer object.");
fb25b9e3 704 status = __BT_FUNC_STATUS_MEMORY_ERROR;
6fa6bfa1
SM
705 goto end; }
706
707 py_method_result = PyObject_CallMethod(py_comp,
deec48a6 708 "_bt_port_connected_from_native", "(OiO)", py_self_port_ptr,
6fa6bfa1 709 self_component_port_type, py_other_port_ptr);
6fa6bfa1 710 BT_ASSERT(!py_method_result || py_method_result == Py_None);
f8d71b59 711 status = py_exc_to_status_component(self_component);
6fa6bfa1
SM
712
713end:
714 Py_XDECREF(py_self_port_ptr);
715 Py_XDECREF(py_other_port_ptr);
716 Py_XDECREF(py_method_result);
6fa6bfa1
SM
717 return status;
718}
719
efb177a7 720static
fb25b9e3
PP
721bt_component_class_port_connected_method_status
722component_class_source_output_port_connected(
6fa6bfa1
SM
723 bt_self_component_source *self_component_source,
724 bt_self_component_port_output *self_component_port_output,
725 const bt_port_input *other_port_input)
726{
727 bt_self_component *self_component = bt_self_component_source_as_self_component(self_component_source);
728
fb25b9e3 729 return component_class_port_connected(
6fa6bfa1
SM
730 self_component,
731 self_component_port_output,
732 SWIGTYPE_p_bt_self_component_port_output,
733 BT_PORT_TYPE_OUTPUT,
734 other_port_input,
735 SWIGTYPE_p_bt_port_input);
736}
737
efb177a7 738static
fb25b9e3
PP
739bt_component_class_port_connected_method_status
740component_class_filter_input_port_connected(
6fa6bfa1
SM
741 bt_self_component_filter *self_component_filter,
742 bt_self_component_port_input *self_component_port_input,
743 const bt_port_output *other_port_output)
744{
745 bt_self_component *self_component = bt_self_component_filter_as_self_component(self_component_filter);
746
fb25b9e3 747 return component_class_port_connected(
6fa6bfa1
SM
748 self_component,
749 self_component_port_input,
750 SWIGTYPE_p_bt_self_component_port_input,
751 BT_PORT_TYPE_INPUT,
752 other_port_output,
753 SWIGTYPE_p_bt_port_output);
754}
755
efb177a7 756static
fb25b9e3
PP
757bt_component_class_port_connected_method_status
758component_class_filter_output_port_connected(
6fa6bfa1
SM
759 bt_self_component_filter *self_component_filter,
760 bt_self_component_port_output *self_component_port_output,
761 const bt_port_input *other_port_input)
762{
763 bt_self_component *self_component = bt_self_component_filter_as_self_component(self_component_filter);
764
fb25b9e3 765 return component_class_port_connected(
6fa6bfa1
SM
766 self_component,
767 self_component_port_output,
768 SWIGTYPE_p_bt_self_component_port_output,
769 BT_PORT_TYPE_OUTPUT,
770 other_port_input,
771 SWIGTYPE_p_bt_port_input);
772}
773
efb177a7 774static
fb25b9e3
PP
775bt_component_class_port_connected_method_status
776component_class_sink_input_port_connected(
6fa6bfa1
SM
777 bt_self_component_sink *self_component_sink,
778 bt_self_component_port_input *self_component_port_input,
779 const bt_port_output *other_port_output)
780{
781 bt_self_component *self_component = bt_self_component_sink_as_self_component(self_component_sink);
782
fb25b9e3 783 return component_class_port_connected(
6fa6bfa1
SM
784 self_component,
785 self_component_port_input,
786 SWIGTYPE_p_bt_self_component_port_input,
787 BT_PORT_TYPE_INPUT,
788 other_port_output,
789 SWIGTYPE_p_bt_port_output);
790}
791
efb177a7 792static
fb25b9e3
PP
793bt_component_class_sink_graph_is_configured_method_status
794component_class_sink_graph_is_configured(
efb177a7 795 bt_self_component_sink *self_component_sink)
6fa6bfa1
SM
796{
797 PyObject *py_comp = NULL;
798 PyObject *py_method_result = NULL;
fb25b9e3 799 bt_component_class_sink_graph_is_configured_method_status status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
800 bt_self_component *self_component = bt_self_component_sink_as_self_component(self_component_sink);
801
802 py_comp = bt_self_component_get_data(self_component);
803 py_method_result = PyObject_CallMethod(py_comp,
deec48a6 804 "_bt_graph_is_configured_from_native", NULL);
6fa6bfa1 805 BT_ASSERT(!py_method_result || py_method_result == Py_None);
f8d71b59 806 status = py_exc_to_status_component(self_component);
6fa6bfa1 807 Py_XDECREF(py_method_result);
6fa6bfa1
SM
808 return status;
809}
810
efb177a7 811static
fb25b9e3 812bt_component_class_query_method_status component_class_query(
6fa6bfa1 813 const bt_component_class *component_class,
f8d71b59 814 bt_self_component_class *self_component_class,
6fa6bfa1
SM
815 const bt_query_executor *query_executor,
816 const char *object, const bt_value *params,
83da519a 817 bt_logging_level log_level,
6fa6bfa1
SM
818 const bt_value **result)
819{
820 PyObject *py_cls = NULL;
821 PyObject *py_params_ptr = NULL;
822 PyObject *py_query_exec_ptr = NULL;
823 PyObject *py_query_func = NULL;
824 PyObject *py_object = NULL;
825 PyObject *py_results_addr = NULL;
fb25b9e3 826 bt_component_class_query_method_status status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
827
828 py_cls = lookup_cc_ptr_to_py_cls(component_class);
829 if (!py_cls) {
830 BT_LOGE("Cannot find Python class associated to native component class: "
831 "comp-cls-addr=%p", component_class);
832 goto error;
833 }
834
835 py_params_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(params),
836 SWIGTYPE_p_bt_value, 0);
837 if (!py_params_ptr) {
838 BT_LOGE_STR("Failed to create a SWIG pointer object.");
839 goto error;
840 }
841
842 py_query_exec_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(query_executor),
843 SWIGTYPE_p_bt_query_executor, 0);
844 if (!py_query_exec_ptr) {
845 BT_LOGE_STR("Failed to create a SWIG pointer object.");
846 goto error;
847 }
848
849 py_object = SWIG_FromCharPtr(object);
850 if (!py_object) {
851 BT_LOGE_STR("Failed to create a Python string.");
852 goto error;
853 }
854
855 py_results_addr = PyObject_CallMethod(py_cls,
deec48a6 856 "_bt_query_from_native", "(OOOi)", py_query_exec_ptr,
83da519a 857 py_object, py_params_ptr, (int) log_level);
6fa6bfa1 858 if (!py_results_addr) {
deec48a6 859 BT_LOGW("Failed to call Python class's _bt_query_from_native() method: "
6fa6bfa1 860 "py-cls-addr=%p", py_cls);
f8d71b59 861 status = py_exc_to_status_component_class(self_component_class);
6fa6bfa1
SM
862 goto end;
863 }
864
865 /*
866 * The returned object, on success, is an integer object
867 * (PyLong) containing the address of a BT value object (new
868 * reference).
869 */
c240a5d8 870 *result = PyLong_AsVoidPtr(py_results_addr);
6fa6bfa1
SM
871 BT_ASSERT(!PyErr_Occurred());
872 BT_ASSERT(*result);
873 goto end;
874
875error:
876 PyErr_Clear();
fb25b9e3 877 status = __BT_FUNC_STATUS_ERROR;
6fa6bfa1
SM
878
879end:
880 Py_XDECREF(py_params_ptr);
881 Py_XDECREF(py_query_exec_ptr);
882 Py_XDECREF(py_query_func);
883 Py_XDECREF(py_object);
884 Py_XDECREF(py_results_addr);
885 return status;
886}
887
efb177a7 888static
fb25b9e3 889bt_component_class_query_method_status component_class_source_query(
6fa6bfa1
SM
890 bt_self_component_class_source *self_component_class_source,
891 const bt_query_executor *query_executor,
892 const char *object, const bt_value *params,
83da519a 893 bt_logging_level log_level,
6fa6bfa1
SM
894 const bt_value **result)
895{
896 const bt_component_class_source *component_class_source = bt_self_component_class_source_as_component_class_source(self_component_class_source);
897 const bt_component_class *component_class = bt_component_class_source_as_component_class_const(component_class_source);
f8d71b59 898 bt_self_component_class *self_component_class = bt_self_component_class_source_as_self_component_class(self_component_class_source);
fb25b9e3 899
f8d71b59 900 return component_class_query(component_class, self_component_class, query_executor, object, params, log_level, result);
6fa6bfa1
SM
901}
902
efb177a7 903static
fb25b9e3 904bt_component_class_query_method_status component_class_filter_query(
6fa6bfa1
SM
905 bt_self_component_class_filter *self_component_class_filter,
906 const bt_query_executor *query_executor,
907 const char *object, const bt_value *params,
83da519a 908 bt_logging_level log_level,
6fa6bfa1
SM
909 const bt_value **result)
910{
911 const bt_component_class_filter *component_class_filter = bt_self_component_class_filter_as_component_class_filter(self_component_class_filter);
912 const bt_component_class *component_class = bt_component_class_filter_as_component_class_const(component_class_filter);
f8d71b59 913 bt_self_component_class *self_component_class = bt_self_component_class_filter_as_self_component_class(self_component_class_filter);
fb25b9e3 914
f8d71b59 915 return component_class_query(component_class, self_component_class, query_executor, object, params, log_level, result);
6fa6bfa1
SM
916}
917
efb177a7 918static
fb25b9e3 919bt_component_class_query_method_status component_class_sink_query(
6fa6bfa1
SM
920 bt_self_component_class_sink *self_component_class_sink,
921 const bt_query_executor *query_executor,
922 const char *object, const bt_value *params,
83da519a 923 bt_logging_level log_level,
6fa6bfa1
SM
924 const bt_value **result)
925{
926 const bt_component_class_sink *component_class_sink = bt_self_component_class_sink_as_component_class_sink(self_component_class_sink);
927 const bt_component_class *component_class = bt_component_class_sink_as_component_class_const(component_class_sink);
f8d71b59 928 bt_self_component_class *self_component_class = bt_self_component_class_sink_as_self_component_class(self_component_class_sink);
fb25b9e3 929
f8d71b59 930 return component_class_query(component_class, self_component_class, query_executor, object, params, log_level, result);
6fa6bfa1
SM
931}
932
efb177a7 933static
fb25b9e3
PP
934bt_component_class_message_iterator_init_method_status
935component_class_message_iterator_init(
6fa6bfa1
SM
936 bt_self_message_iterator *self_message_iterator,
937 bt_self_component *self_component,
938 bt_self_component_port_output *self_component_port_output)
939{
fb25b9e3 940 bt_component_class_message_iterator_init_method_status status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
941 PyObject *py_comp_cls = NULL;
942 PyObject *py_iter_cls = NULL;
943 PyObject *py_iter_ptr = NULL;
a4dcfa96 944 PyObject *py_component_port_output_ptr = NULL;
6fa6bfa1
SM
945 PyObject *py_init_method_result = NULL;
946 PyObject *py_iter = NULL;
947 PyObject *py_comp;
948
949 py_comp = bt_self_component_get_data(self_component);
950
fa4c33e3 951 /* Find user's Python message iterator class */
6fa6bfa1
SM
952 py_comp_cls = PyObject_GetAttrString(py_comp, "__class__");
953 if (!py_comp_cls) {
954 BT_LOGE_STR("Cannot get Python object's `__class__` attribute.");
f8d71b59 955 goto python_error;
6fa6bfa1
SM
956 }
957
958 py_iter_cls = PyObject_GetAttrString(py_comp_cls, "_iter_cls");
959 if (!py_iter_cls) {
960 BT_LOGE_STR("Cannot get Python class's `_iter_cls` attribute.");
f8d71b59 961 goto python_error;
6fa6bfa1
SM
962 }
963
964 py_iter_ptr = SWIG_NewPointerObj(SWIG_as_voidptr(self_message_iterator),
965 SWIGTYPE_p_bt_self_message_iterator, 0);
966 if (!py_iter_ptr) {
f8d71b59
SM
967 const char *err = "Failed to create a SWIG pointer object.";
968
969 BT_LOGE_STR(err);
970 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_MESSAGE_ITERATOR(
971 self_message_iterator, err);
6fa6bfa1
SM
972 goto error;
973 }
974
975 /*
fa4c33e3 976 * Create object with borrowed native message iterator
6fa6bfa1
SM
977 * reference:
978 *
979 * py_iter = py_iter_cls.__new__(py_iter_cls, py_iter_ptr)
980 */
981 py_iter = PyObject_CallMethod(py_iter_cls, "__new__",
982 "(OO)", py_iter_cls, py_iter_ptr);
983 if (!py_iter) {
984 BT_LOGE("Failed to call Python class's __new__() method: "
985 "py-cls-addr=%p", py_iter_cls);
f8d71b59 986 goto python_error;
6fa6bfa1
SM
987 }
988
989 /*
990 * Initialize object:
991 *
a4dcfa96
SM
992 * py_iter.__init__(self_output_port)
993 *
994 * through the _init_for_native helper static method.
6fa6bfa1
SM
995 *
996 * At this point, py_iter._ptr is set, so this initialization
997 * function has access to self._component (which gives it the
998 * user Python component object from which the iterator was
999 * created).
1000 */
fb25b9e3
PP
1001 py_component_port_output_ptr = SWIG_NewPointerObj(
1002 SWIG_as_voidptr(self_component_port_output),
a4dcfa96
SM
1003 SWIGTYPE_p_bt_self_component_port_output, 0);
1004 if (!py_component_port_output_ptr) {
f8d71b59
SM
1005 const char *err = "Failed to create a SWIG pointer object.";
1006
1007 BT_LOGE_STR(err);
1008 BT_CURRENT_THREAD_ERROR_APPEND_CAUSE_FROM_MESSAGE_ITERATOR(
1009 self_message_iterator, err);
a4dcfa96
SM
1010 goto error;
1011 }
1012
fb25b9e3 1013 py_init_method_result = PyObject_CallMethod(py_iter,
deec48a6 1014 "_bt_init_from_native", "O", py_component_port_output_ptr);
6fa6bfa1 1015 if (!py_init_method_result) {
f8d71b59
SM
1016 BT_LOGE_STR("User's __init__() method failed:");
1017 goto python_error;
6fa6bfa1
SM
1018 }
1019
1020 /*
1021 * Since the Python code can never instantiate a user-defined
fa4c33e3
SM
1022 * message iterator class, the native message iterator
1023 * object does NOT belong to a user Python message iterator
6fa6bfa1 1024 * object (borrowed reference). However this Python object is
fa4c33e3 1025 * owned by this native message iterator object.
6fa6bfa1 1026 *
fa4c33e3
SM
1027 * In the Python world, the lifetime of the native message
1028 * iterator is managed by a _GenericMessageIterator
6fa6bfa1
SM
1029 * instance:
1030 *
fa4c33e3
SM
1031 * _GenericMessageIterator instance:
1032 * owns a native bt_message_iterator object (iter)
6fa6bfa1
SM
1033 * owns a _UserMessageIterator instance (py_iter)
1034 * self._ptr is a borrowed reference to the
fa4c33e3 1035 * native bt_private_connection_private_message_iterator
6fa6bfa1
SM
1036 * object (iter)
1037 */
1038 bt_self_message_iterator_set_data(self_message_iterator, py_iter);
1039 py_iter = NULL;
1040 goto end;
1041
f8d71b59
SM
1042python_error:
1043 /* Handling of errors that cause a Python exception to be set. */
1044 status = py_exc_to_status_message_iterator(self_message_iterator);
1045 BT_ASSERT(status != __BT_FUNC_STATUS_OK);
1046 goto end;
6fa6bfa1 1047
f8d71b59
SM
1048error:
1049 /* Handling of errors that don't cause a Python exception to be set. */
1050 status = __BT_FUNC_STATUS_ERROR;
6fa6bfa1
SM
1051
1052end:
f8d71b59
SM
1053 BT_ASSERT(!PyErr_Occurred());
1054
6fa6bfa1
SM
1055 Py_XDECREF(py_comp_cls);
1056 Py_XDECREF(py_iter_cls);
1057 Py_XDECREF(py_iter_ptr);
a4dcfa96 1058 Py_XDECREF(py_component_port_output_ptr);
6fa6bfa1
SM
1059 Py_XDECREF(py_init_method_result);
1060 Py_XDECREF(py_iter);
1061 return status;
1062}
1063
efb177a7 1064static
fb25b9e3
PP
1065bt_component_class_message_iterator_init_method_status
1066component_class_source_message_iterator_init(
6fa6bfa1
SM
1067 bt_self_message_iterator *self_message_iterator,
1068 bt_self_component_source *self_component_source,
1069 bt_self_component_port_output *self_component_port_output)
1070{
1071 bt_self_component *self_component = bt_self_component_source_as_self_component(self_component_source);
fb25b9e3
PP
1072
1073 return component_class_message_iterator_init(self_message_iterator, self_component, self_component_port_output);
6fa6bfa1
SM
1074}
1075
efb177a7 1076static
fb25b9e3
PP
1077bt_component_class_message_iterator_init_method_status
1078component_class_filter_message_iterator_init(
6fa6bfa1
SM
1079 bt_self_message_iterator *self_message_iterator,
1080 bt_self_component_filter *self_component_filter,
1081 bt_self_component_port_output *self_component_port_output)
1082{
1083 bt_self_component *self_component = bt_self_component_filter_as_self_component(self_component_filter);
fb25b9e3
PP
1084
1085 return component_class_message_iterator_init(self_message_iterator, self_component, self_component_port_output);
6fa6bfa1
SM
1086}
1087
efb177a7 1088static
fb25b9e3 1089void component_class_message_iterator_finalize(
6fa6bfa1
SM
1090 bt_self_message_iterator *message_iterator)
1091{
1092 PyObject *py_message_iter = bt_self_message_iterator_get_data(message_iterator);
1093 PyObject *py_method_result = NULL;
1094
1095 BT_ASSERT(py_message_iter);
1096
1097 /* Call user's _finalize() method */
1098 py_method_result = PyObject_CallMethod(py_message_iter,
1099 "_finalize", NULL);
1100
1101 if (PyErr_Occurred()) {
fb25b9e3
PP
1102 BT_LOGW("User's _finalize() method raised an exception: ignoring:");
1103 logw_exception();
6fa6bfa1
SM
1104 }
1105
1106 /*
1107 * Ignore any exception raised by the _finalize() method because
1108 * it won't change anything at this point: the component is
1109 * being destroyed anyway.
1110 */
1111 PyErr_Clear();
1112 Py_XDECREF(py_method_result);
1113 Py_DECREF(py_message_iter);
1114}
1115
1116/* Valid for both sources and filters. */
1117
efb177a7 1118static
fb25b9e3
PP
1119bt_component_class_message_iterator_next_method_status
1120component_class_message_iterator_next(
efb177a7
SM
1121 bt_self_message_iterator *message_iterator,
1122 bt_message_array_const msgs, uint64_t capacity,
1123 uint64_t *count)
6fa6bfa1 1124{
fb25b9e3 1125 bt_component_class_message_iterator_next_method_status status = __BT_FUNC_STATUS_OK;
6fa6bfa1
SM
1126 PyObject *py_message_iter = bt_self_message_iterator_get_data(message_iterator);
1127 PyObject *py_method_result = NULL;
1128
1129 BT_ASSERT(py_message_iter);
1130 py_method_result = PyObject_CallMethod(py_message_iter,
deec48a6 1131 "_bt_next_from_native", NULL);
6fa6bfa1 1132 if (!py_method_result) {
f8d71b59 1133 status = py_exc_to_status_message_iterator(message_iterator);
fb25b9e3 1134 BT_ASSERT(status != __BT_FUNC_STATUS_OK);
6fa6bfa1
SM
1135 goto end;
1136 }
1137
1138 /*
1139 * The returned object, on success, is an integer object
fa4c33e3 1140 * (PyLong) containing the address of a native message
6fa6bfa1
SM
1141 * object (which is now ours).
1142 */
c240a5d8 1143 msgs[0] = PyLong_AsVoidPtr(py_method_result);
6fa6bfa1
SM
1144 *count = 1;
1145
1146 /* Clear potential overflow error; should never happen */
1147 BT_ASSERT(!PyErr_Occurred());
1148 goto end;
1149
1150end:
1151 Py_XDECREF(py_method_result);
1152 return status;
1153}
1154
efb177a7 1155static
fb25b9e3
PP
1156bt_component_class_sink_consume_method_status
1157component_class_sink_consume(bt_self_component_sink *self_component_sink)
6fa6bfa1
SM
1158{
1159 bt_self_component *self_component = bt_self_component_sink_as_self_component(self_component_sink);
1160 PyObject *py_comp = bt_self_component_get_data(self_component);
1161 PyObject *py_method_result = NULL;
fb25b9e3 1162 bt_component_class_sink_consume_method_status status;
6fa6bfa1
SM
1163
1164 BT_ASSERT(py_comp);
1165 py_method_result = PyObject_CallMethod(py_comp,
1166 "_consume", NULL);
f8d71b59 1167 status = py_exc_to_status_component(self_component);
fb25b9e3 1168 if (!py_method_result && status == __BT_FUNC_STATUS_OK) {
6fa6bfa1
SM
1169 /* Pretty sure this should never happen, but just in case */
1170 BT_LOGE("User's _consume() method failed without raising an exception: "
1171 "status=%d", status);
fb25b9e3 1172 status = __BT_FUNC_STATUS_ERROR;
6fa6bfa1
SM
1173 }
1174
1175 Py_XDECREF(py_method_result);
1176 return status;
1177}
1178
1179static
fb25b9e3 1180int component_class_set_help_and_desc(
6fa6bfa1
SM
1181 bt_component_class *component_class,
1182 const char *description, const char *help)
1183{
1184 int ret;
1185
1186 if (description) {
1187 ret = bt_component_class_set_description(component_class, description);
1188 if (ret) {
1189 BT_LOGE("Cannot set component class's description: "
1190 "comp-cls-addr=%p", component_class);
1191 goto end;
1192 }
1193 }
1194
1195 if (help) {
1196 ret = bt_component_class_set_help(component_class, help);
1197 if (ret) {
1198 BT_LOGE("Cannot set component class's help text: "
1199 "comp-cls-addr=%p", component_class);
1200 goto end;
1201 }
1202 }
1203
1204 ret = 0;
1205
1206end:
1207 return ret;
1208}
1209
1210static
fb25b9e3 1211bt_component_class_source *bt_bt2_component_class_source_create(
6fa6bfa1
SM
1212 PyObject *py_cls, const char *name, const char *description,
1213 const char *help)
1214{
1215 bt_component_class_source *component_class_source;
1216 bt_component_class *component_class;
1217 int ret;
1218
1219 BT_ASSERT(py_cls);
6fa6bfa1 1220 component_class_source = bt_component_class_source_create(name,
fb25b9e3 1221 component_class_message_iterator_next);
6fa6bfa1
SM
1222 if (!component_class_source) {
1223 BT_LOGE_STR("Cannot create source component class.");
1224 goto end;
1225 }
1226
1227 component_class = bt_component_class_source_as_component_class(component_class_source);
1228
fb25b9e3 1229 if (component_class_set_help_and_desc(component_class, description, help)) {
6fa6bfa1
SM
1230 goto end;
1231 }
1232
fb25b9e3 1233 ret = bt_component_class_source_set_init_method(component_class_source, component_class_source_init);
6fa6bfa1 1234 BT_ASSERT(ret == 0);
fb25b9e3 1235 ret = bt_component_class_source_set_finalize_method(component_class_source, component_class_source_finalize);
39ddfa44
SM
1236 BT_ASSERT(ret == 0);
1237 ret = bt_component_class_source_set_message_iterator_can_seek_beginning_method(component_class_source,
fb25b9e3 1238 component_class_can_seek_beginning);
39ddfa44
SM
1239 BT_ASSERT(ret == 0);
1240 ret = bt_component_class_source_set_message_iterator_seek_beginning_method(component_class_source,
fb25b9e3 1241 component_class_seek_beginning);
6fa6bfa1 1242 BT_ASSERT(ret == 0);
6fa6bfa1 1243 ret = bt_component_class_source_set_output_port_connected_method(component_class_source,
fb25b9e3 1244 component_class_source_output_port_connected);
6fa6bfa1 1245 BT_ASSERT(ret == 0);
fb25b9e3 1246 ret = bt_component_class_source_set_query_method(component_class_source, component_class_source_query);
6fa6bfa1
SM
1247 BT_ASSERT(ret == 0);
1248 ret = bt_component_class_source_set_message_iterator_init_method(
fb25b9e3 1249 component_class_source, component_class_source_message_iterator_init);
6fa6bfa1
SM
1250 BT_ASSERT(ret == 0);
1251 ret = bt_component_class_source_set_message_iterator_finalize_method(
fb25b9e3 1252 component_class_source, component_class_message_iterator_finalize);
6fa6bfa1 1253 BT_ASSERT(ret == 0);
6fa6bfa1
SM
1254 register_cc_ptr_to_py_cls(component_class, py_cls);
1255
1256end:
1257 return component_class_source;
1258}
1259
1260static
fb25b9e3 1261bt_component_class_filter *bt_bt2_component_class_filter_create(
6fa6bfa1
SM
1262 PyObject *py_cls, const char *name, const char *description,
1263 const char *help)
1264{
1265 bt_component_class *component_class;
1266 bt_component_class_filter *component_class_filter;
1267 int ret;
1268
1269 BT_ASSERT(py_cls);
6fa6bfa1 1270 component_class_filter = bt_component_class_filter_create(name,
fb25b9e3 1271 component_class_message_iterator_next);
6fa6bfa1
SM
1272 if (!component_class_filter) {
1273 BT_LOGE_STR("Cannot create filter component class.");
1274 goto end;
1275 }
1276
1277 component_class = bt_component_class_filter_as_component_class(component_class_filter);
1278
fb25b9e3 1279 if (component_class_set_help_and_desc(component_class, description, help)) {
6fa6bfa1
SM
1280 goto end;
1281 }
1282
fb25b9e3 1283 ret = bt_component_class_filter_set_init_method(component_class_filter, component_class_filter_init);
6fa6bfa1 1284 BT_ASSERT(ret == 0);
fb25b9e3 1285 ret = bt_component_class_filter_set_finalize_method (component_class_filter, component_class_filter_finalize);
6fa6bfa1 1286 BT_ASSERT(ret == 0);
39ddfa44 1287 ret = bt_component_class_filter_set_message_iterator_can_seek_beginning_method(component_class_filter,
fb25b9e3 1288 component_class_can_seek_beginning);
39ddfa44
SM
1289 BT_ASSERT(ret == 0);
1290 ret = bt_component_class_filter_set_message_iterator_seek_beginning_method(component_class_filter,
fb25b9e3 1291 component_class_seek_beginning);
39ddfa44 1292 BT_ASSERT(ret == 0);
6fa6bfa1 1293 ret = bt_component_class_filter_set_input_port_connected_method(component_class_filter,
fb25b9e3 1294 component_class_filter_input_port_connected);
6fa6bfa1
SM
1295 BT_ASSERT(ret == 0);
1296 ret = bt_component_class_filter_set_output_port_connected_method(component_class_filter,
fb25b9e3 1297 component_class_filter_output_port_connected);
6fa6bfa1 1298 BT_ASSERT(ret == 0);
fb25b9e3 1299 ret = bt_component_class_filter_set_query_method(component_class_filter, component_class_filter_query);
6fa6bfa1
SM
1300 BT_ASSERT(ret == 0);
1301 ret = bt_component_class_filter_set_message_iterator_init_method(
fb25b9e3 1302 component_class_filter, component_class_filter_message_iterator_init);
6fa6bfa1
SM
1303 BT_ASSERT(ret == 0);
1304 ret = bt_component_class_filter_set_message_iterator_finalize_method(
fb25b9e3 1305 component_class_filter, component_class_message_iterator_finalize);
6fa6bfa1 1306 BT_ASSERT(ret == 0);
6fa6bfa1
SM
1307 register_cc_ptr_to_py_cls(component_class, py_cls);
1308
1309end:
1310 return component_class_filter;
1311}
1312
1313static
fb25b9e3 1314bt_component_class_sink *bt_bt2_component_class_sink_create(
6fa6bfa1
SM
1315 PyObject *py_cls, const char *name, const char *description,
1316 const char *help)
1317{
1318 bt_component_class_sink *component_class_sink;
1319 bt_component_class *component_class;
1320 int ret;
1321
1322 BT_ASSERT(py_cls);
fb25b9e3 1323 component_class_sink = bt_component_class_sink_create(name, component_class_sink_consume);
6fa6bfa1
SM
1324
1325 if (!component_class_sink) {
1326 BT_LOGE_STR("Cannot create sink component class.");
1327 goto end;
1328 }
1329
1330 component_class = bt_component_class_sink_as_component_class(component_class_sink);
1331
fb25b9e3 1332 if (component_class_set_help_and_desc(component_class, description, help)) {
6fa6bfa1
SM
1333 goto end;
1334 }
1335
fb25b9e3 1336 ret = bt_component_class_sink_set_init_method(component_class_sink, component_class_sink_init);
6fa6bfa1 1337 BT_ASSERT(ret == 0);
fb25b9e3 1338 ret = bt_component_class_sink_set_finalize_method(component_class_sink, component_class_sink_finalize);
6fa6bfa1 1339 BT_ASSERT(ret == 0);
6fa6bfa1 1340 ret = bt_component_class_sink_set_input_port_connected_method(component_class_sink,
fb25b9e3 1341 component_class_sink_input_port_connected);
6fa6bfa1
SM
1342 BT_ASSERT(ret == 0);
1343 ret = bt_component_class_sink_set_graph_is_configured_method(component_class_sink,
fb25b9e3 1344 component_class_sink_graph_is_configured);
6fa6bfa1 1345 BT_ASSERT(ret == 0);
fb25b9e3 1346 ret = bt_component_class_sink_set_query_method(component_class_sink, component_class_sink_query);
6fa6bfa1 1347 BT_ASSERT(ret == 0);
6fa6bfa1
SM
1348 register_cc_ptr_to_py_cls(component_class, py_cls);
1349
1350end:
1351 return component_class_sink;
1352}
1353%}
1354
fb25b9e3 1355struct bt_component_class_source *bt_bt2_component_class_source_create(
6fa6bfa1
SM
1356 PyObject *py_cls, const char *name, const char *description,
1357 const char *help);
fb25b9e3 1358struct bt_component_class_filter *bt_bt2_component_class_filter_create(
6fa6bfa1
SM
1359 PyObject *py_cls, const char *name, const char *description,
1360 const char *help);
fb25b9e3 1361struct bt_component_class_sink *bt_bt2_component_class_sink_create(
6fa6bfa1
SM
1362 PyObject *py_cls, const char *name, const char *description,
1363 const char *help);
fb25b9e3
PP
1364void bt_bt2_cc_init_from_bt2(void);
1365void bt_bt2_cc_exit_handler(void);
This page took 0.095715 seconds and 4 git commands to generate.