cpp-common/bt2: use bt2c::CStringView in parameters and return values throughout
[babeltrace.git] / src / cpp-common / bt2 / plugin-dev.hpp
CommitLineData
af38ae4f
PP
1/*
2 * Copyright (c) 2023 Simon Marchi <simon.marchi@efficios.com>
3 * Copyright (c) 2023 Philippe Proulx <pproulx@efficios.com>
4 *
5 * SPDX-License-Identifier: MIT
6 */
7
8#ifndef BABELTRACE_CPP_COMMON_BT2_PLUGIN_DEV_HPP
9#define BABELTRACE_CPP_COMMON_BT2_PLUGIN_DEV_HPP
10
11#include <cstdint>
12
13#include <glib.h>
14
15#include <babeltrace2/babeltrace.h>
16
e7f0f07b 17#include "cpp-common/bt2c/c-string-view.hpp"
af38ae4f
PP
18#include "cpp-common/bt2c/logging.hpp"
19#include "cpp-common/vendor/fmt/core.h"
20
21#include "exc.hpp"
22#include "wrap.hpp"
23
24namespace bt2 {
25namespace internal {
26
15030982 27constexpr bt2c::CStringView unhandledExcLogStr() noexcept
af38ae4f
PP
28{
29 return "Unhandled exception.";
30}
31
15030982 32constexpr bt2c::CStringView unhandledExcLogTag() noexcept
af38ae4f
PP
33{
34 return "PLUGIN-DEV-HPP";
35}
36
37/*
38 * Base class of any component class bridge.
39 *
40 * `UserCompClsT` is the actual C++ user component class and `LibTypesT`
41 * is a structure offering the following specific library types:
42 *
43 * `SelfCompCls`:
44 * Self component class.
45 *
46 * `SelfComp`:
47 * Self component.
48 *
49 * `SelfCompCfg`:
50 * Self component configuration.
51 */
52template <typename UserCompClsT, typename LibTypesT>
53class CompClsBridge
54{
55private:
56 using _LibSelfCompPtr = typename LibTypesT::SelfComp *;
57
58public:
59 static UserCompClsT& userCompFromLibSelfCompPtr(const _LibSelfCompPtr libSelfCompPtr) noexcept
60 {
61 return wrap(libSelfCompPtr).template data<UserCompClsT>();
62 }
63
64 static bt_component_class_initialize_method_status init(const _LibSelfCompPtr libSelfCompPtr,
65 typename LibTypesT::SelfCompCfg *,
66 const bt_value * const libParamsPtr,
67 void *) noexcept
68 {
69 const auto selfComp = wrap(libSelfCompPtr);
70
71 try {
72 const auto comp = new UserCompClsT {selfComp, wrap(libParamsPtr).asMap()};
73
74 selfComp.data(*comp);
75 } catch (const std::bad_alloc&) {
76 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
77 } catch (const Error&) {
78 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
79 } catch (...) {
80 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING, static_cast<int>(selfComp.loggingLevel()),
81 unhandledExcLogTag(), unhandledExcLogStr());
82 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
83 }
84
85 return BT_COMPONENT_CLASS_INITIALIZE_METHOD_STATUS_OK;
86 }
87
88 static void finalize(const _LibSelfCompPtr libSelfCompPtr) noexcept
89 {
90 delete &userCompFromLibSelfCompPtr(libSelfCompPtr);
91 }
92
93 static bt_component_class_get_supported_mip_versions_method_status
94 getSupportedMipVersions(typename LibTypesT::SelfCompCls * const libSelfCompClsPtr,
95 const bt_value * const libParamsPtr, void *,
96 const bt_logging_level logLevel,
97 bt_integer_range_set_unsigned * const libSupportedVersionsPtr) noexcept
98 {
99 try {
100 UserCompClsT::getSupportedMipVersions(wrap(libSelfCompClsPtr), wrap(libParamsPtr),
101 static_cast<LoggingLevel>(logLevel),
102 wrap(libSupportedVersionsPtr));
103 return BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_OK;
104 } catch (const std::bad_alloc&) {
105 return BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_MEMORY_ERROR;
106 } catch (const Error&) {
107 return BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_ERROR;
108 } catch (...) {
109 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING, static_cast<int>(logLevel), unhandledExcLogTag(),
110 unhandledExcLogStr());
111 return BT_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_STATUS_ERROR;
112 }
113 }
114
115 static bt_component_class_query_method_status
116 query(typename LibTypesT::SelfCompCls * const libSelfCompClsPtr,
117 bt_private_query_executor * const libPrivQueryExecPtr, const char * const object,
118 const bt_value * const libParamsPtr, void *,
119 const bt_value ** const libResultPtr) noexcept
120 {
121 const auto privQueryExec = wrap(libPrivQueryExecPtr);
122
123 try {
124 auto result = UserCompClsT::query(wrap(libSelfCompClsPtr), privQueryExec, object,
125 wrap(libParamsPtr));
126
127 *libResultPtr = result.release().libObjPtr();
128 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_OK;
129 } catch (const TryAgain&) {
130 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_AGAIN;
131 } catch (const UnknownObject&) {
132 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_UNKNOWN_OBJECT;
133 } catch (const std::bad_alloc&) {
134 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_MEMORY_ERROR;
135 } catch (const Error&) {
136 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR;
137 } catch (...) {
138 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING, static_cast<int>(privQueryExec.loggingLevel()),
139 unhandledExcLogTag(), unhandledExcLogStr());
140 return BT_COMPONENT_CLASS_QUERY_METHOD_STATUS_ERROR;
141 }
142 }
143};
144
145template <typename SpecCompClsBridgeT, typename LibTypesT>
146struct CompClsBridgeWithInputPorts
147{
148 static bt_component_class_port_connected_method_status
149 inputPortConnected(typename LibTypesT::SelfComp * const libSelfCompPtr,
150 bt_self_component_port_input * const libSelfCompPortPtr,
151 const bt_port_output * const libOtherPortPtr) noexcept
152 {
153 try {
154 SpecCompClsBridgeT::userCompFromLibSelfCompPtr(libSelfCompPtr)
155 .inputPortConnected(wrap(libSelfCompPortPtr), wrap(libOtherPortPtr));
156 } catch (const std::bad_alloc&) {
157 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_MEMORY_ERROR;
158 } catch (const Error&) {
159 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR;
160 } catch (...) {
161 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING,
162 static_cast<int>(wrap(libSelfCompPtr).loggingLevel()),
163 unhandledExcLogTag(), unhandledExcLogStr());
164 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR;
165 }
166
167 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_OK;
168 }
169};
170
171template <typename SpecCompClsBridgeT, typename LibTypesT>
172struct CompClsBridgeWithOutputPorts
173{
174 static bt_component_class_port_connected_method_status
175 outputPortConnected(typename LibTypesT::SelfComp * const libSelfCompPtr,
176 bt_self_component_port_output * const libSelfCompPortPtr,
177 const bt_port_input * const libOtherPortPtr) noexcept
178 {
179 try {
180 SpecCompClsBridgeT::userCompFromLibSelfCompPtr(libSelfCompPtr)
181 .outputPortConnected(wrap(libSelfCompPortPtr), wrap(libOtherPortPtr));
182 } catch (const std::bad_alloc&) {
183 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_MEMORY_ERROR;
184 } catch (const Error&) {
185 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR;
186 } catch (...) {
187 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING,
188 static_cast<int>(wrap(libSelfCompPtr).loggingLevel()),
189 unhandledExcLogTag(), unhandledExcLogStr());
190 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_ERROR;
191 }
192
193 return BT_COMPONENT_CLASS_PORT_CONNECTED_METHOD_STATUS_OK;
194 }
195};
196
197struct SrcCompClsLibTypes final
198{
199 using SelfCompCls = bt_self_component_class_source;
200 using SelfComp = bt_self_component_source;
201 using SelfCompCfg = bt_self_component_source_configuration;
202};
203
204template <typename UserCompClsT>
205class SrcCompClsBridge final :
206 public CompClsBridge<UserCompClsT, SrcCompClsLibTypes>,
207 public CompClsBridgeWithOutputPorts<SrcCompClsBridge<UserCompClsT>, SrcCompClsLibTypes>
208{
209};
210
211struct FltCompClsLibTypes final
212{
213 using SelfCompCls = bt_self_component_class_filter;
214 using SelfComp = bt_self_component_filter;
215 using SelfCompCfg = bt_self_component_filter_configuration;
216};
217
218template <typename UserCompClsT>
219class FltCompClsBridge final :
220 public CompClsBridge<UserCompClsT, FltCompClsLibTypes>,
221 public CompClsBridgeWithInputPorts<FltCompClsBridge<UserCompClsT>, FltCompClsLibTypes>,
222 public CompClsBridgeWithOutputPorts<FltCompClsBridge<UserCompClsT>, FltCompClsLibTypes>
223{
224};
225
226struct SinkCompClsLibTypes final
227{
228 using SelfCompCls = bt_self_component_class_sink;
229 using SelfComp = bt_self_component_sink;
230 using SelfCompCfg = bt_self_component_sink_configuration;
231};
232
233template <typename UserCompClsT>
234class SinkCompClsBridge final :
235 CompClsBridge<UserCompClsT, SinkCompClsLibTypes>,
236 CompClsBridgeWithInputPorts<SinkCompClsBridge<UserCompClsT>, SinkCompClsLibTypes>
237{
238private:
239 using CompClsBridge<UserCompClsT, SinkCompClsLibTypes>::userCompFromLibSelfCompPtr;
240
241public:
242 static bt_component_class_sink_consume_method_status
243 consume(bt_self_component_sink * const libSelfCompPtr) noexcept
244 {
245 try {
246 if (userCompFromLibSelfCompPtr(libSelfCompPtr).consume()) {
247 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_OK;
248 } else {
249 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_END;
250 }
251 } catch (const TryAgain&) {
252 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_AGAIN;
253 } catch (const std::bad_alloc&) {
254 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_MEMORY_ERROR;
255 } catch (const Error&) {
256 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_ERROR;
257 } catch (...) {
258 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING,
259 static_cast<int>(wrap(libSelfCompPtr).loggingLevel()),
260 unhandledExcLogTag(), unhandledExcLogStr());
261 return BT_COMPONENT_CLASS_SINK_CONSUME_METHOD_STATUS_ERROR;
262 }
263 }
264
265 static bt_component_class_sink_graph_is_configured_method_status
266 graphIsConfigured(bt_self_component_sink * const libSelfCompPtr) noexcept
267 {
268 try {
269 userCompFromLibSelfCompPtr(libSelfCompPtr).graphIsConfigured();
270 } catch (const std::bad_alloc&) {
271 return BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_MEMORY_ERROR;
272 } catch (const Error&) {
273 return BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_ERROR;
274 } catch (...) {
275 BT_LOG_WRITE_CUR_LVL(BT_LOG_WARNING,
276 static_cast<int>(wrap(libSelfCompPtr).loggingLevel()),
277 unhandledExcLogTag(), unhandledExcLogStr());
278 return BT_COMPONENT_CLASS_SINK_GRAPH_IS_CONFIGURED_METHOD_STATUS_ERROR;
279 }
280 }
281};
282
283template <typename UserMsgIterT>
284class MsgIterClsBridge final
285{
286public:
287 static UserMsgIterT&
288 userMsgIterFromLibSelfMsgIterPtr(bt_self_message_iterator * const libSelfMsgIterPtr) noexcept
289 {
290 return bt2::wrap(libSelfMsgIterPtr).data<UserMsgIterT>();
291 }
292
293 static bt_message_iterator_class_initialize_method_status
294 init(bt_self_message_iterator * const libSelfMsgIterPtr,
295 bt_self_message_iterator_configuration * const libSelfMsgIterConfigPtr,
296 bt_self_component_port_output * const libSelfCompPortPtr) noexcept
297 {
298 const auto selfMsgIter = bt2::wrap(libSelfMsgIterPtr);
299
300 try {
301 const auto msgIter = new UserMsgIterT {selfMsgIter, bt2::wrap(libSelfMsgIterConfigPtr),
302 bt2::wrap(libSelfCompPortPtr)};
303
304 selfMsgIter.data(*msgIter);
305 } catch (const std::bad_alloc&) {
306 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_MEMORY_ERROR;
307 } catch (const bt2::Error&) {
308 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
309 } catch (...) {
310 BT_LOG_WRITE_CUR_LVL(
311 BT_LOG_WARNING,
312 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
313 unhandledExcLogTag(), unhandledExcLogStr());
314 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_ERROR;
315 }
316
317 return BT_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_STATUS_OK;
318 }
319
320 static void finalize(bt_self_message_iterator * const libSelfMsgIterPtr) noexcept
321 {
322 delete &userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr);
323 }
324
325 static bt_message_iterator_class_next_method_status
326 next(bt_self_message_iterator * const libSelfMsgIterPtr, bt_message_array_const libMsgsPtr,
327 const uint64_t capacity, uint64_t * const count) noexcept
328 {
329 try {
330 auto msgArray = bt2::ConstMessageArray::wrapEmpty(libMsgsPtr, capacity);
331 auto& msgIter = userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr);
332
333 msgIter.next(msgArray);
334 *count = msgArray.release();
335
336 if (G_LIKELY(*count > 0)) {
337 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_OK;
338 } else {
339 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_END;
340 }
341 } catch (const bt2::TryAgain&) {
342 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_AGAIN;
343 } catch (const std::bad_alloc&) {
344 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_MEMORY_ERROR;
345 } catch (const bt2::Error&) {
346 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
347 } catch (...) {
348 BT_LOG_WRITE_CUR_LVL(
349 BT_LOG_WARNING,
350 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
351 unhandledExcLogTag(), unhandledExcLogStr());
352 return BT_MESSAGE_ITERATOR_CLASS_NEXT_METHOD_STATUS_ERROR;
353 }
354 }
355
356 static bt_message_iterator_class_can_seek_beginning_method_status
357 canSeekBeginning(bt_self_message_iterator * const libSelfMsgIterPtr,
358 bt_bool * const canSeek) noexcept
359 {
360 try {
361 *canSeek = static_cast<bt_bool>(
362 userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr).canSeekBeginning());
363 } catch (const bt2::TryAgain&) {
364 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_BEGINNING_METHOD_STATUS_AGAIN;
365 } catch (const std::bad_alloc&) {
366 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_BEGINNING_METHOD_STATUS_MEMORY_ERROR;
367 } catch (const bt2::Error&) {
368 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_BEGINNING_METHOD_STATUS_ERROR;
369 } catch (...) {
370 BT_LOG_WRITE_CUR_LVL(
371 BT_LOG_WARNING,
372 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
373 unhandledExcLogTag(), unhandledExcLogStr());
374 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_BEGINNING_METHOD_STATUS_ERROR;
375 }
376
377 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_BEGINNING_METHOD_STATUS_OK;
378 }
379
380 static bt_message_iterator_class_seek_beginning_method_status
381 seekBeginning(bt_self_message_iterator * const libSelfMsgIterPtr) noexcept
382 {
383 try {
384 userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr).seekBeginning();
385 } catch (const bt2::TryAgain&) {
386 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_AGAIN;
387 } catch (const std::bad_alloc&) {
388 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_MEMORY_ERROR;
389 } catch (const bt2::Error&) {
390 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_ERROR;
391 } catch (...) {
392 BT_LOG_WRITE_CUR_LVL(
393 BT_LOG_WARNING,
394 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
395 unhandledExcLogTag(), unhandledExcLogStr());
396 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_ERROR;
397 }
398
399 return BT_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHOD_STATUS_OK;
400 }
401
402 static bt_message_iterator_class_can_seek_ns_from_origin_method_status
403 canSeekNsFromOrigin(bt_self_message_iterator * const libSelfMsgIterPtr,
404 const std::int64_t nsFromOrigin, bt_bool * const canSeek) noexcept
405 {
406 try {
407 *canSeek = static_cast<bt_bool>(userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr)
408 .canSeekNsFromOrigin(nsFromOrigin));
409 } catch (const bt2::TryAgain&) {
410 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_AGAIN;
411 } catch (const std::bad_alloc&) {
412 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_MEMORY_ERROR;
413 } catch (const bt2::Error&) {
414 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_ERROR;
415 } catch (...) {
416 BT_LOG_WRITE_CUR_LVL(
417 BT_LOG_WARNING,
418 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
419 unhandledExcLogTag(), unhandledExcLogStr());
420 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_ERROR;
421 }
422
423 return BT_MESSAGE_ITERATOR_CLASS_CAN_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_OK;
424 }
425
426 static bt_message_iterator_class_seek_ns_from_origin_method_status
427 seekNsFromOrigin(bt_self_message_iterator * const libSelfMsgIterPtr,
428 const std::int64_t nsFromOrigin) noexcept
429 {
430 try {
431 userMsgIterFromLibSelfMsgIterPtr(libSelfMsgIterPtr).seekNsFromOrigin(nsFromOrigin);
432 } catch (const bt2::TryAgain&) {
433 return BT_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_AGAIN;
434 } catch (const std::bad_alloc&) {
435 return BT_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_MEMORY_ERROR;
436 } catch (const bt2::Error&) {
437 return BT_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_ERROR;
438 } catch (...) {
439 BT_LOG_WRITE_CUR_LVL(
440 BT_LOG_WARNING,
441 static_cast<int>(wrap(libSelfMsgIterPtr).component().loggingLevel()),
442 unhandledExcLogTag(), unhandledExcLogStr());
443 return BT_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_ERROR;
444 }
445
446 return BT_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHOD_STATUS_OK;
447 }
448};
449
450} /* namespace internal */
451
452template <typename UserMessageIteratorT, typename UserComponentT>
453class UserMessageIterator;
454
455/*
456 * Base class of any user component.
457 *
458 * See the specific `bt2::UserSourceComponent`,
459 * `bt2::UserFilterComponent`, and `bt2::UserSinkComponent`.
460 */
461template <typename SelfCompT>
462class UserComponent
463{
464 /* Give a related message iterator access to this logger */
465 template <typename, typename>
466 friend class UserMessageIterator;
467
468protected:
469 explicit UserComponent(const SelfCompT selfComp, const std::string& logTag) :
470 _mLogger {selfComp, fmt::format("{}/[{}]", logTag, selfComp.name())}, _mSelfComp {selfComp}
471 {
472 }
473
474protected:
e7f0f07b 475 bt2c::CStringView _name() const noexcept
af38ae4f
PP
476 {
477 return _mSelfComp.name();
478 }
479
480 LoggingLevel _loggingLevel() const noexcept
481 {
482 return _mSelfComp.loggingLevel();
483 }
484
485 std::uint64_t _graphMipVersion() const noexcept
486 {
487 return _mSelfComp.graphMipVersion();
488 }
489
490 SelfCompT _selfComp() noexcept
491 {
492 return _mSelfComp;
493 }
494
495 bt2c::Logger _mLogger;
496
497private:
498 SelfCompT _mSelfComp;
499};
500
501/*
502 * Base class of a user source component `UserComponentT` (CRTP).
503 *
504 * `UserComponentT::UserComponentT()` must accept a
505 * `bt2::SelfSourceComponent` parameter, which it needs to forward to
506 * bt2::UserSourceComponent::UserSourceComponent(), and a
507 * `bt2::ConstValue` parameter (initialization parameters).
508 */
509template <typename UserComponentT>
510class UserSourceComponent : public UserComponent<SelfSourceComponent>
511{
512protected:
513 using _OutputPorts = SelfSourceComponent::OutputPorts;
514
515 explicit UserSourceComponent(const SelfSourceComponent selfComp, const std::string& logTag) :
516 UserComponent<SelfSourceComponent> {selfComp, logTag}
517 {
518 }
519
520public:
521 static Value::Shared query(const SelfComponentClass selfCompCls,
15030982
SM
522 const PrivateQueryExecutor privQueryExec,
523 const bt2c::CStringView obj, const ConstValue params)
af38ae4f
PP
524 {
525 return UserComponentT::_query(selfCompCls, privQueryExec, obj, params);
526 }
527
528 static void getSupportedMipVersions(const SelfComponentClass selfCompCls,
529 const ConstValue params, const LoggingLevel loggingLevel,
530 const UnsignedIntegerRangeSet ranges)
531 {
532 UserComponentT::_getSupportedMipVersions(selfCompCls, params, loggingLevel, ranges);
533 }
534
535 void outputPortConnected(const SelfComponentOutputPort outputPort,
536 const ConstInputPort inputPort)
537 {
538 static_cast<UserComponentT&>(*this).outputPortConnected(outputPort, inputPort);
539 }
540
541protected:
542 /* Overloadable */
15030982
SM
543 static Value::Shared _query(SelfComponentClass, PrivateQueryExecutor, bt2c::CStringView,
544 ConstValue)
af38ae4f
PP
545 {
546 throw UnknownObject {};
547 }
548
549 /* Overloadable */
550 static void _getSupportedMipVersions(SelfComponentClass, ConstValue, LoggingLevel,
551 const UnsignedIntegerRangeSet ranges)
552 {
553 ranges.addRange(0, 0);
554 }
555
556 /* Overloadable */
557 void _outputPortConnected(SelfComponentOutputPort, ConstInputPort)
558 {
559 }
560
561 template <typename DataT>
15030982 562 _OutputPorts::Port _addOutputPort(const bt2c::CStringView name, DataT * const data)
af38ae4f
PP
563 {
564 return this->_selfComp().addOutputPort(name, data);
565 }
566
15030982 567 _OutputPorts::Port _addOutputPort(const bt2c::CStringView name)
af38ae4f
PP
568 {
569 return this->_selfComp().addOutputPort(name);
570 }
571
572 _OutputPorts _outputPorts() noexcept
573 {
574 return this->_selfComp().outputPorts();
575 }
576};
577
578/*
579 * Base class of a user filter component `UserComponentT` (CRTP).
580 *
581 * `UserComponentT::UserComponentT()` must accept a
582 * `bt2::SelfFilterComponent` parameter, which it needs to forward to
583 * bt2::UserFilterComponent::UserFilterComponent(), and a
584 * `bt2::ConstValue` parameter (initialization parameters).
585 */
586template <typename UserComponentT>
587class UserFilterComponent : public UserComponent<SelfFilterComponent>
588{
589protected:
590 using _InputPorts = SelfFilterComponent::InputPorts;
591 using _OutputPorts = SelfFilterComponent::OutputPorts;
592
593 explicit UserFilterComponent(const SelfFilterComponent selfComp, const std::string& logTag) :
594 UserComponent<SelfFilterComponent> {selfComp, logTag}
595 {
596 }
597
598public:
599 static Value::Shared query(const SelfComponentClass selfCompCls,
15030982
SM
600 const PrivateQueryExecutor privQueryExec,
601 const bt2c::CStringView obj, const ConstValue params)
af38ae4f
PP
602 {
603 return UserComponentT::_query(selfCompCls, privQueryExec, obj, params);
604 }
605
606 static void getSupportedMipVersions(const SelfComponentClass selfCompCls,
607 const ConstValue params, const LoggingLevel loggingLevel,
608 const UnsignedIntegerRangeSet ranges)
609 {
610 UserComponentT::_getSupportedMipVersions(selfCompCls, params, loggingLevel, ranges);
611 }
612
613 void inputPortConnected(const SelfComponentInputPort inputPort,
614 const ConstOutputPort outputPort)
615 {
616 static_cast<UserComponentT&>(*this)._inputPortConnected(inputPort, outputPort);
617 }
618
619 void outputPortConnected(const SelfComponentOutputPort outputPort,
620 const ConstInputPort inputPort)
621 {
622 static_cast<UserComponentT&>(*this)._outputPortConnected(outputPort, inputPort);
623 }
624
625protected:
626 /* Overloadable */
15030982
SM
627 static Value::Shared _query(SelfComponentClass, PrivateQueryExecutor, bt2c::CStringView,
628 ConstValue)
af38ae4f
PP
629 {
630 throw UnknownObject {};
631 }
632
633 /* Overloadable */
634 static void _getSupportedMipVersions(SelfComponentClass, ConstValue, LoggingLevel,
635 const UnsignedIntegerRangeSet ranges)
636 {
637 ranges.addRange(0, 0);
638 }
639
640 /* Overloadable */
641 void _inputPortConnected(SelfComponentInputPort, ConstOutputPort)
642 {
643 }
644
645 /* Overloadable */
646 void _outputPortConnected(SelfComponentOutputPort, ConstInputPort)
647 {
648 }
649
650 template <typename DataT>
15030982 651 _OutputPorts::Port _addInputPort(const bt2c::CStringView name, DataT * const data)
af38ae4f
PP
652 {
653 return this->_selfComp().addInputPort(name, data);
654 }
655
15030982 656 _InputPorts::Port _addInputPort(const bt2c::CStringView name)
af38ae4f
PP
657 {
658 return this->_selfComp().addInputPort(name);
659 }
660
661 _InputPorts _inputPorts() noexcept
662 {
663 return this->_selfComp().inputPorts();
664 }
665
666 template <typename DataT>
15030982 667 _OutputPorts::Port _addOutputPort(const bt2c::CStringView name, DataT * const data)
af38ae4f
PP
668 {
669 return this->_selfComp().addOutputPort(name, data);
670 }
671
15030982 672 _OutputPorts::Port _addOutputPort(const bt2c::CStringView name)
af38ae4f
PP
673 {
674 return this->_selfComp().addOutputPort(name);
675 }
676
677 _OutputPorts _outputPorts() noexcept
678 {
679 return this->_selfComp().outputPorts();
680 }
681};
682
683/*
684 * Base class of a user sink component `UserComponentT` (CRTP).
685 *
686 * `UserComponentT::UserComponentT()` must accept a
687 * `bt2::SelfSinkComponent` parameter, which it needs to forward to
688 * bt2::UserSinkComponent::UserSinkComponent(), and a `bt2::ConstValue`
689 * parameter (initialization parameters).
690 *
691 * `UserComponentT` must implement:
692 *
693 * bool _consume();
694 *
695 * This method returns `true` if the sink component still needs to
696 * consume, or `false` if it's finished.
697 */
698template <typename UserComponentT>
699class UserSinkComponent : public UserComponent<SelfSinkComponent>
700{
701protected:
702 using _InputPorts = SelfSinkComponent::InputPorts;
703
704 explicit UserSinkComponent(const SelfSinkComponent selfComp, const std::string& logTag) :
705 UserComponent<SelfSinkComponent> {selfComp, logTag}
706 {
707 }
708
709public:
710 static Value::Shared query(const SelfComponentClass selfCompCls,
15030982
SM
711 const PrivateQueryExecutor privQueryExec,
712 const bt2c::CStringView obj, const ConstValue params)
af38ae4f
PP
713 {
714 return UserComponentT::_query(selfCompCls, privQueryExec, obj, params);
715 }
716
717 static void getSupportedMipVersions(const SelfComponentClass selfCompCls,
718 const ConstValue params, const LoggingLevel loggingLevel,
719 const UnsignedIntegerRangeSet ranges)
720 {
721 UserComponentT::_getSupportedMipVersions(selfCompCls, params, loggingLevel, ranges);
722 }
723
724 void graphIsConfigured()
725 {
726 static_cast<UserComponentT&>(*this)._graphIsConfigured();
727 }
728
729 void inputPortConnected(const SelfComponentInputPort inputPort,
730 const ConstOutputPort outputPort)
731 {
732 static_cast<UserComponentT&>(*this)._inputPortConnected(inputPort, outputPort);
733 }
734
735 bool consume()
736 {
737 return static_cast<UserComponentT&>(*this)._consume();
738 }
739
740protected:
741 /* Overloadable */
15030982
SM
742 static Value::Shared _query(SelfComponentClass, PrivateQueryExecutor, bt2c::CStringView,
743 ConstValue)
af38ae4f
PP
744 {
745 throw UnknownObject {};
746 }
747
748 /* Overloadable */
749 static void _getSupportedMipVersions(SelfComponentClass, ConstValue, LoggingLevel,
750 const UnsignedIntegerRangeSet ranges)
751 {
752 ranges.addRange(0, 0);
753 }
754
755 /* Overloadable */
756 void _graphIsConfigured()
757 {
758 }
759
760 /* Overloadable */
761 void _inputPortConnected(SelfComponentInputPort, ConstOutputPort)
762 {
763 }
764
765 MessageIterator::Shared _createMessageIterator(const _InputPorts::Port port)
766 {
767 return this->_selfComp().createMessageIterator(port);
768 }
769
770 template <typename DataT>
15030982 771 _InputPorts::Port _addInputPort(const bt2c::CStringView name, DataT * const data)
af38ae4f
PP
772 {
773 return this->_selfComp().addInputPort(name, data);
774 }
775
15030982 776 _InputPorts::Port _addInputPort(const bt2c::CStringView name)
af38ae4f
PP
777 {
778 return this->_selfComp().addInputPort(name);
779 }
780
781 _InputPorts _inputPorts() noexcept
782 {
783 return this->_selfComp().inputPorts();
784 }
785};
786
787/*
788 * Base class of a user message iterator `UserMessageIteratorT` (CRTP)
789 * of which the parent user component class is `UserComponentT`.
790 *
791 * `UserMessageIteratorT::UserMessageIteratorT()` must accept a
792 * `bt2::SelfMessageIterator` parameter, which it needs to forward to
793 * bt2::UserMessageIterator::UserMessageIterator().
794 *
795 * The public next() method below (called by the bridge) implements the
796 * very common pattern of appending messages into the output array, and,
797 * meanwhile:
798 *
799 * If it catches a `bt2::TryAgain` exception:
800 * If the message array isn't empty, transform this into a success
801 * (don't throw).
802 *
803 * Otherwise rethrow.
804 *
805 * If it catches an error:
806 * If the message array isn't empty, transform this into a success
807 * (don't throw), but save the error of the current thread and the
808 * type of error to throw the next time the user calls next().
809 *
810 * Otherwise rethrow.
811 *
812 * `UserMessageIteratorT` must implement:
813 *
814 * void _next(bt2::ConstMessageArray& messages);
815 *
816 * This method fills `messages` with at most `messages.capacity()`
817 * messages and may throw `bt2::TryAgain` or a valid error whenever.
818 * Leaving an empty `messages` means the end of iteration.
819 */
820template <typename UserMessageIteratorT, typename UserComponentT>
821class UserMessageIterator
822{
823private:
824 /* Type of `_mExcToThrowType` */
825 enum class _ExcToThrowType
826 {
827 NONE,
828 ERROR,
829 MEM_ERROR,
830 };
831
832protected:
833 explicit UserMessageIterator(const SelfMessageIterator selfMsgIter,
834 const std::string& logTagSuffix) :
835 _mSelfMsgIter {selfMsgIter},
836 _mLogger {selfMsgIter,
837 fmt::format("{}/{}", this->_component()._mLogger.tag(), logTagSuffix)}
838 {
839 }
840
841public:
842 ~UserMessageIterator()
843 {
844 this->_resetError();
845 }
846
847 void next(bt2::ConstMessageArray& messages)
848 {
849 /* Any saved error? Now is the time to throw */
850 if (G_UNLIKELY(_mExcToThrowType != _ExcToThrowType::NONE)) {
851 /* Move `_mSavedLibError`, if any, as current thread error */
852 if (_mSavedLibError) {
853 BT_CURRENT_THREAD_MOVE_ERROR_AND_RESET(_mSavedLibError);
854 }
855
856 /* Throw the corresponding exception */
857 if (_mExcToThrowType == _ExcToThrowType::ERROR) {
858 throw bt2::Error {};
859 } else {
860 BT_ASSERT(_mExcToThrowType == _ExcToThrowType::MEM_ERROR);
861 throw bt2::MemoryError {};
862 }
863 }
864
865 /*
866 * When catching some exception below, if our message array
867 * isn't empty, then return immediately before throwing to
868 * provide those messages to downstream.
869 *
870 * When catching an error, also save the current thread error,
871 * if any, so that we can restore it later (see the beginning of
872 * this method).
873 */
874 BT_ASSERT_DBG(_mExcToThrowType == _ExcToThrowType::NONE);
875
876 try {
877 this->_userObj()._next(messages);
878
879 /* We're done: everything below is exception handling */
880 return;
881 } catch (const bt2::TryAgain&) {
882 if (messages.isEmpty()) {
883 throw;
884 }
885 } catch (const std::bad_alloc&) {
886 if (messages.isEmpty()) {
887 throw;
888 }
889
890 _mExcToThrowType = _ExcToThrowType::MEM_ERROR;
891 } catch (const bt2::Error&) {
892 if (messages.isEmpty()) {
893 throw;
894 }
895
896 _mExcToThrowType = _ExcToThrowType::ERROR;
897 }
898
899 if (_mExcToThrowType != _ExcToThrowType::NONE) {
900 BT_CPPLOGE(
901 "An error occurred, but there are {} messages to return: delaying the error reporting.",
902 messages.length());
903 BT_ASSERT(!_mSavedLibError);
904 _mSavedLibError = bt_current_thread_take_error();
905 }
906 }
907
908 bool canSeekBeginning()
909 {
910 this->_resetError();
911 return this->_userObj()._canSeekBeginning();
912 }
913
914 void seekBeginning()
915 {
916 this->_resetError();
917 return this->_userObj()._seekBeginning();
918 }
919
920 bool canSeekNsFromOrigin(const std::int64_t nsFromOrigin)
921 {
922 this->_resetError();
923 return this->_userObj()._canSeekNsFromOrigin(nsFromOrigin);
924 }
925
926 void seekNsFromOrigin(const std::int64_t nsFromOrigin)
927 {
928 this->_resetError();
929 this->_userObj()._seekNsFromOrigin(nsFromOrigin);
930 }
931
932protected:
933 /* Overloadable */
934 bool _canSeekBeginning() noexcept
935 {
936 return false;
937 }
938
939 /* Overloadable */
940 void _seekBeginning() noexcept
941 {
942 }
943
944 /* Overloadable */
945 bool _canSeekNsFromOrigin(std::int64_t) noexcept
946 {
947 return false;
948 }
949
950 /* Overloadable */
951 void _seekNsFromOrigin(std::int64_t) noexcept
952 {
953 }
954
955 MessageIterator::Shared _createMessageIterator(const SelfComponentInputPort port)
956 {
957 return _mSelfMsgIter.createMessageIterator(port);
958 }
959
960 UserComponentT& _component() noexcept
961 {
962 return _mSelfMsgIter.component().template data<UserComponentT>();
963 }
964
965 SelfComponentOutputPort _port() noexcept
966 {
967 return _mSelfMsgIter.port();
968 }
969
970 bool _isInterrupted() const noexcept
971 {
972 return _mSelfMsgIter.isInterrupted();
973 }
974
975private:
976 UserMessageIteratorT& _userObj() noexcept
977 {
978 return static_cast<UserMessageIteratorT&>(*this);
979 }
980
981 void _resetError() noexcept
982 {
983 _mExcToThrowType = _ExcToThrowType::NONE;
984
985 if (_mSavedLibError) {
986 bt_error_release(_mSavedLibError);
987 }
988 }
989
990 SelfMessageIterator _mSelfMsgIter;
991
992 /*
993 * next() may accumulate messages, and then catch an error before
994 * returning. In that case, it saves the error of the current thread
995 * here so that it can return its accumulated messages and throw the
996 * next time.
997 *
998 * It also saves the type of the exception to throw the next time.
999 */
1000 _ExcToThrowType _mExcToThrowType = _ExcToThrowType::NONE;
1001 const bt_error *_mSavedLibError = nullptr;
1002
1003protected:
1004 bt2c::Logger _mLogger;
1005};
1006
1007} /* namespace bt2 */
1008
1009#define BT_CPP_PLUGIN_SOURCE_COMPONENT_CLASS_WITH_ID( \
1010 _pluginId, _componentClassId, _name, _userComponentClass, _userMessageIteratorClass) \
1011 BT_PLUGIN_SOURCE_COMPONENT_CLASS_WITH_ID( \
1012 _pluginId, _componentClassId, _name, \
1013 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::next); \
1014 BT_PLUGIN_SOURCE_COMPONENT_CLASS_INITIALIZE_METHOD_WITH_ID( \
1015 _pluginId, _componentClassId, bt2::internal::SrcCompClsBridge<_userComponentClass>::init); \
1016 BT_PLUGIN_SOURCE_COMPONENT_CLASS_FINALIZE_METHOD_WITH_ID( \
1017 _pluginId, _componentClassId, \
1018 bt2::internal::SrcCompClsBridge<_userComponentClass>::finalize); \
1019 BT_PLUGIN_SOURCE_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_WITH_ID( \
1020 _pluginId, _componentClassId, \
1021 bt2::internal::SrcCompClsBridge<_userComponentClass>::getSupportedMipVersions); \
1022 BT_PLUGIN_SOURCE_COMPONENT_CLASS_OUTPUT_PORT_CONNECTED_METHOD_WITH_ID( \
1023 _pluginId, _componentClassId, \
1024 bt2::internal::SrcCompClsBridge<_userComponentClass>::outputPortConnected); \
1025 BT_PLUGIN_SOURCE_COMPONENT_CLASS_QUERY_METHOD_WITH_ID( \
1026 _pluginId, _componentClassId, \
1027 bt2::internal::SrcCompClsBridge<_userComponentClass>::query); \
1028 BT_PLUGIN_SOURCE_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_WITH_ID( \
1029 _pluginId, _componentClassId, \
1030 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::init); \
1031 BT_PLUGIN_SOURCE_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_FINALIZE_METHOD_WITH_ID( \
1032 _pluginId, _componentClassId, \
1033 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::finalize); \
1034 BT_PLUGIN_SOURCE_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHODS_WITH_ID( \
1035 _pluginId, _componentClassId, \
1036 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::seekBeginning, \
1037 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::canSeekBeginning); \
1038 BT_PLUGIN_SOURCE_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHODS_WITH_ID( \
1039 _pluginId, _componentClassId, \
1040 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::seekNsFromOrigin, \
1041 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::canSeekNsFromOrigin);
1042
1043#define BT_CPP_PLUGIN_FILTER_COMPONENT_CLASS_WITH_ID( \
1044 _pluginId, _componentClassId, _name, _userComponentClass, _userMessageIteratorClass) \
1045 BT_PLUGIN_FILTER_COMPONENT_CLASS_WITH_ID( \
1046 _pluginId, _componentClassId, _name, \
1047 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::next); \
1048 BT_PLUGIN_FILTER_COMPONENT_CLASS_INITIALIZE_METHOD_WITH_ID( \
1049 _pluginId, _componentClassId, bt2::internal::FltCompClsBridge<_userComponentClass>::init); \
1050 BT_PLUGIN_FILTER_COMPONENT_CLASS_FINALIZE_METHOD_WITH_ID( \
1051 _pluginId, _componentClassId, \
1052 bt2::internal::FltCompClsBridge<_userComponentClass>::finalize); \
1053 BT_PLUGIN_FILTER_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_WITH_ID( \
1054 _pluginId, _componentClassId, \
1055 bt2::internal::FltCompClsBridge<_userComponentClass>::getSupportedMipVersions); \
1056 BT_PLUGIN_FILTER_COMPONENT_CLASS_INPUT_PORT_CONNECTED_METHOD_WITH_ID( \
1057 _pluginId, _componentClassId, \
1058 bt2::internal::FltCompClsBridge<_userComponentClass>::inputPortConnected); \
1059 BT_PLUGIN_FILTER_COMPONENT_CLASS_OUTPUT_PORT_CONNECTED_METHOD_WITH_ID( \
1060 _pluginId, _componentClassId, \
1061 bt2::internal::FltCompClsBridge<_userComponentClass>::outputPortConnected); \
1062 BT_PLUGIN_FILTER_COMPONENT_CLASS_QUERY_METHOD_WITH_ID( \
1063 _pluginId, _componentClassId, \
1064 bt2::internal::FltCompClsBridge<_userComponentClass>::query); \
1065 BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_INITIALIZE_METHOD_WITH_ID( \
1066 _pluginId, _componentClassId, \
1067 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::init); \
1068 BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_FINALIZE_METHOD_WITH_ID( \
1069 _pluginId, _componentClassId, \
1070 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::finalize); \
1071 BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_SEEK_BEGINNING_METHODS_WITH_ID( \
1072 _pluginId, _componentClassId, \
1073 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::seekBeginning, \
1074 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::canSeekBeginning); \
1075 BT_PLUGIN_FILTER_COMPONENT_CLASS_MESSAGE_ITERATOR_CLASS_SEEK_NS_FROM_ORIGIN_METHODS_WITH_ID( \
1076 _pluginId, _componentClassId, \
1077 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::seekNsFromOrigin, \
1078 bt2::internal::MsgIterClsBridge<_userMessageIteratorClass>::canSeekNsFromOrigin);
1079
1080#define BT_CPP_PLUGIN_SINK_COMPONENT_CLASS_WITH_ID(_pluginId, _componentClassId, _name, \
1081 _userComponentClass) \
1082 BT_PLUGIN_SINK_COMPONENT_CLASS_WITH_ID( \
1083 _pluginId, _componentClassId, _name, \
1084 bt2::internal::SinkCompClsBridge<_userComponentClass>::consume); \
1085 BT_PLUGIN_SINK_COMPONENT_CLASS_INITIALIZE_METHOD_WITH_ID( \
1086 _pluginId, _componentClassId, \
1087 bt2::internal::SinkCompClsBridge<_userComponentClass>::init); \
1088 BT_PLUGIN_SINK_COMPONENT_CLASS_FINALIZE_METHOD_WITH_ID( \
1089 _pluginId, _componentClassId, \
1090 bt2::internal::SinkCompClsBridge<_userComponentClass>::finalize); \
1091 BT_PLUGIN_SINK_COMPONENT_CLASS_GET_SUPPORTED_MIP_VERSIONS_METHOD_WITH_ID( \
1092 _pluginId, _componentClassId, \
1093 bt2::internal::SinkCompClsBridge<_userComponentClass>::getSupportedMipVersions); \
1094 BT_PLUGIN_SINK_COMPONENT_CLASS_INPUT_PORT_CONNECTED_METHOD_WITH_ID( \
1095 _pluginId, _componentClassId, \
1096 bt2::internal::SinkCompClsBridge<_userComponentClass>::inputPortConnected); \
1097 BT_PLUGIN_SINK_COMPONENT_CLASS_GRAPH_IS_CONFIGURED_METHOD_WITH_ID( \
1098 _pluginId, _componentClassId, \
1099 bt2::internal::SinkCompClsBridge<_userComponentClass>::graphIsConfigured); \
1100 BT_PLUGIN_SINK_COMPONENT_CLASS_QUERY_METHOD_WITH_ID( \
1101 _pluginId, _componentClassId, \
1102 bt2::internal::SinkCompClsBridge<_userComponentClass>::query);
1103
1104#define BT_CPP_PLUGIN_SOURCE_COMPONENT_CLASS(_name, _userComponentClass, \
1105 _userMessageIteratorClass) \
1106 BT_CPP_PLUGIN_SOURCE_COMPONENT_CLASS_WITH_ID(auto, _name, #_name, _userComponentClass, \
1107 _userMessageIteratorClass)
1108
1109#define BT_CPP_PLUGIN_FILTER_COMPONENT_CLASS(_name, _userComponentClass, \
1110 _userMessageIteratorClass) \
1111 BT_CPP_PLUGIN_FILTER_COMPONENT_CLASS_WITH_ID(auto, _name, #_name, _userComponentClass, \
1112 _userMessageIteratorClass)
1113
1114#define BT_CPP_PLUGIN_SINK_COMPONENT_CLASS(_name, _userComponentClass) \
1115 BT_CPP_PLUGIN_SINK_COMPONENT_CLASS_WITH_ID(auto, _name, #_name, _userComponentClass)
1116
1117#endif /* BABELTRACE_CPP_COMMON_BT2_PLUGIN_DEV_HPP */
This page took 0.064089 seconds and 4 git commands to generate.