![]() |
DSPatch v.9.3.2
|
Abstract base class for DSPatch components. More...
#include <Component.h>
Public Types | |
enum class | ProcessOrder { InOrder , OutOfOrder } |
enum class | TickMode { Series , Parallel } |
using | SPtr = std::shared_ptr< Component > |
using | SCPtr = std::shared_ptr< const Component > |
Public Member Functions | |
NONCOPYABLE (Component) | |
Component (ProcessOrder processOrder=ProcessOrder::InOrder) | |
bool | ConnectInput (const Component::SPtr &fromComponent, int fromOutput, int toInput) |
void | DisconnectInput (int inputNo) |
void | DisconnectInput (const Component::SCPtr &fromComponent) |
void | DisconnectAllInputs () |
int | GetInputCount () const |
int | GetOutputCount () const |
std::string | GetInputName (int inputNo) const |
std::string | GetOutputName (int outputNo) const |
void | SetBufferCount (int bufferCount) |
int | GetBufferCount () const |
void | Tick (TickMode mode=TickMode::Series, int bufferNo=0) |
void | Reset (TickMode mode=TickMode::Series, int bufferNo=0) |
Protected Member Functions | |
virtual void | Process_ (SignalBus &, SignalBus &)=0 |
void | SetInputCount_ (int inputCount, const std::vector< std::string > &inputNames={}) |
void | SetOutputCount_ (int outputCount, const std::vector< std::string > &outputNames={}) |
Abstract base class for DSPatch components.
Classes derived from Component can be added to a Circuit and routed to and from other Components.
On construction, derived classes must configure the component's IO buses by calling SetInputCount_() and SetOutputCount_() respectively.
Derived classes must also implement the virtual method: Process_(). The Process_() method is a callback from the DSPatch engine that occurs when a new set of input signals is ready for processing. The Process_() method has 2 arguments: the input bus, and the output bus. This method's purpose is to pull its required inputs out of the input bus, process these inputs, and populate the output bus with the results (see SignalBus).
In order for a component to do any work it must be ticked. This is performed by repeatedly calling the Tick() and Reset() methods. The Tick() method is responsible for acquiring the next set of input signals from component input wires and populating the component's input bus. To insure that these inputs are up-to-date, the dependent component first calls all of its input components' Tick() methods - hence recursively called in all components going backward through the circuit. The acquired input bus is then passed to the Process_() method. The Reset() method informs the component that the last circuit traversal has completed and hence can execute the next Tick() request.
PERFORMANCE TIP: If a component's Process_() method is capable of processing buffers out-of-order within a stream processing circuit, consider initialising its base with ProcessOrder::OutOfOrder to improve performance. Note however that Process_() must be thread-safe to operate in this mode.
Definition at line 74 of file Component.h.
using DSPatch::Component::SCPtr = std::shared_ptr<const Component> |
Definition at line 80 of file Component.h.
using DSPatch::Component::SPtr = std::shared_ptr<Component> |
Definition at line 79 of file Component.h.
|
strong |
Definition at line 82 of file Component.h.
|
strong |
Definition at line 88 of file Component.h.