JUCE v8.0.9
JUCE API
 
Loading...
Searching...
No Matches
juce::ARAObject Class Referenceabstract

Common base class for all JUCE ARA model objects to aid with the discovery and traversal of the entire ARA model graph. More...

#include <juce_ARAModelObjects.h>

Inheritance diagram for juce::ARAObject:

Public Member Functions

virtual ~ARAObject ()=default
 Destructor.
 
virtual ARAObjectgetChild (size_t index)=0
 Returns the child object associated with the given index.
 
virtual size_t getNumChildren () const noexcept=0
 Returns the number of ARA model objects aggregated by this object.
 
virtual ARAObjectgetParent ()=0
 Returns the ARA model object that aggregates this object.
 
template<typename Fn >
void traverse (Fn &&fn)
 Implements a depth first traversal of the ARA model graph starting from the current object, and visiting its children recursively.
 
virtual void visit (ARAObjectVisitor &visitor)=0
 Allows the retrieval of the concrete type of a model object.
 

Detailed Description

Common base class for all JUCE ARA model objects to aid with the discovery and traversal of the entire ARA model graph.

@tags{ARA}

Constructor & Destructor Documentation

◆ ~ARAObject()

virtual juce::ARAObject::~ARAObject ( )
virtualdefault

Destructor.

Member Function Documentation

◆ getChild()

virtual ARAObject * juce::ARAObject::getChild ( size_t  index)
pure virtual

Returns the child object associated with the given index.

The index should be smaller than the value returned by getNumChildren().

Note that the index of a particular object may change when the ARA model graph is edited.

Implemented in juce::ARADocument, juce::ARARegionSequence, juce::ARAAudioSource, juce::ARAAudioModification, juce::ARAMusicalContext, and juce::ARAPlaybackRegion.

Referenced by traverse().

◆ getNumChildren()

virtual size_t juce::ARAObject::getNumChildren ( ) const
pure virtualnoexcept

Returns the number of ARA model objects aggregated by this object.

Objects that are merely referred to, but not aggregated by the current object are not included in this count, e.g. a referenced RegionSequence does not count as a child of the referring PlaybackRegion.

See the ARA documentation's ARA Model Graph Overview for more details.

Implemented in juce::ARADocument, juce::ARAMusicalContext, juce::ARAPlaybackRegion, juce::ARARegionSequence, juce::ARAAudioSource, and juce::ARAAudioModification.

Referenced by traverse().

◆ getParent()

virtual ARAObject * juce::ARAObject::getParent ( )
pure virtual

Returns the ARA model object that aggregates this object.

Returns nullptr for the ARADocument root object.

Implemented in juce::ARADocument, juce::ARAMusicalContext, juce::ARAPlaybackRegion, juce::ARARegionSequence, juce::ARAAudioSource, and juce::ARAAudioModification.

◆ traverse()

template<typename Fn >
void juce::ARAObject::traverse ( Fn &&  fn)
inline

Implements a depth first traversal of the ARA model graph starting from the current object, and visiting its children recursively.

The provided function should accept a single ARAObject& parameter.

References getChild(), getNumChildren(), and traverse().

Referenced by traverse().

◆ visit()

virtual void juce::ARAObject::visit ( ARAObjectVisitor visitor)
pure virtual

Allows the retrieval of the concrete type of a model object.

To use this, create a new class derived from ARAObjectVisitor and override its functions depending on which concrete types you are interested in.

Calling this function inside the function passed to ARAObject::traverse() allows you to map the entire ARA model graph.

Implemented in juce::ARADocument, juce::ARAMusicalContext, juce::ARAPlaybackRegion, juce::ARARegionSequence, juce::ARAAudioSource, and juce::ARAAudioModification.


The documentation for this class was generated from the following file: