Holds a single transfer function decorator. More...
#include <transceiver_function.h>
Public Member Functions | |
TransceiverFunction (std::string linkedEngine, bool isPreprocessing) | |
Constructor. More... | |
virtual | ~TransceiverFunction () override=default |
const std::string & | linkedEngineName () const override |
Get name of engine this transceiver is linked to. More... | |
bool | isPreprocessing () const override |
Indicates if this is a preprocessing function. More... | |
TransceiverDataPackInterface::shared_ptr | pySetup (boost::python::object transceiverFunction) |
Decorator call() function. Takes the Transfer Function as a parameter. Moves this class into a shared_ptr. More... | |
boost::python::object | runTf (boost::python::tuple &args, boost::python::dict &kwargs, datapacks_set_t dataPacks) override |
Execute the transfer function. More... | |
![]() | |
TransceiverDataPackInterface ()=default | |
virtual | ~TransceiverDataPackInterface ()=default |
template<class TRANSCEIVER_DATAPACK > | |
TransceiverDataPackInterface::shared_ptr | pySetup (const TransceiverDataPackInterface::shared_ptr &tfDataPack) |
Decorator call() function. Takes the lower decorator as a parameter. Moves the given class into a shared_ptr, which will be managed by the next decorator. More... | |
Protected Member Functions | |
datapack_identifiers_set_t | getRequestedDataPackIDs () const override |
Returns datapack IDs of this DataPack that should be requested from the engines. TODO: Make protected. More... | |
datapack_identifiers_set_t | updateRequestedDataPackIDs (datapack_identifiers_set_t &&datapackIDs) const override |
Appends its own datapack requests onto datapackIDs. Uses getRequestedDataPackIDs to check which IDs are requested by this datapack. More... | |
![]() | |
template<class TRANSCEIVER_DATAPACK > | |
PtrTemplates< TRANSCEIVER_DATAPACK >::shared_ptr | moveToSharedPtr () |
Additional Inherited Members | |
![]() | |
using | shared_ptr = std::shared_ptr< TransceiverDataPackInterface > |
using | const_shared_ptr = std::shared_ptr< const TransceiverDataPackInterface > |
using | unique_ptr = std::unique_ptr< TransceiverDataPackInterface > |
using | const_unique_ptr = std::unique_ptr< const TransceiverDataPackInterface > |
![]() | |
using | shared_ptr = std::shared_ptr< TransceiverFunction > |
using | const_shared_ptr = std::shared_ptr< const TransceiverFunction > |
using | unique_ptr = std::unique_ptr< TransceiverFunction > |
using | const_unique_ptr = std::unique_ptr< const TransceiverFunction > |
![]() | |
static void | setTFInterpreter (FunctionManager *interpreter) |
Set global TF Interpreter. All Transceiver Functions will register themselves with it upon creation. More... | |
static const FunctionManager * | getFunctionManager () |
![]() | |
static FunctionManager * | _functionManager = nullptr |
Pointer to TF Interpreter. Will be used to register a new TF function. More... | |
Holds a single transfer function decorator.
TransceiverFunction::TransceiverFunction | ( | std::string | linkedEngine, |
bool | isPreprocessing | ||
) |
Constructor.
linkedEngine | Name of linked engine. This TF will only be called whenever Said engine finishes a timestep |
|
overridevirtualdefault |
|
overrideprotectedvirtual |
Returns datapack IDs of this DataPack that should be requested from the engines. TODO: Make protected.
Reimplemented from TransceiverDataPackInterface.
|
overridevirtual |
Indicates if this is a preprocessing function.
Reimplemented from TransceiverDataPackInterface.
|
overridevirtual |
Get name of engine this transceiver is linked to.
Reimplemented from TransceiverDataPackInterface.
TransceiverDataPackInterface::shared_ptr TransceiverFunction::pySetup | ( | boost::python::object | transceiverFunction | ) |
Decorator call() function. Takes the Transfer Function as a parameter. Moves this class into a shared_ptr.
transceiverFunction | User defined TF |
|
overridevirtual |
Execute the transfer function.
args | Python args |
kwargs | Python keywords |
Reimplemented from TransceiverDataPackInterface.
|
overrideprotectedvirtual |
Appends its own datapack requests onto datapackIDs. Uses getRequestedDataPackIDs to check which IDs are requested by this datapack.
datapackIDs | Container with datapack IDs that gets expanded |
Reimplemented from TransceiverDataPackInterface.