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