Loading...
Searching...
No Matches
juce::LADSPAPluginFormat Class Reference

Detailed Description

Implements a plugin format manager for LADSPA plugins.

Inheritance diagram for juce::LADSPAPluginFormat:

Public Member Functions

 LADSPAPluginFormat ()
 ~LADSPAPluginFormat () override
String getName () const override
 Returns the format name.
bool canScanForPlugins () const override
 Returns true if this format needs to run a scan to find its list of plugins.
bool isTrivialToScan () const override
 Should return true if this format is both safe and quick to scan - i.e.
void findAllTypesForFile (OwnedArray< PluginDescription > &, const String &fileOrIdentifier) override
 This tries to create descriptions for all the plugin types available in a binary module file.
bool fileMightContainThisPluginType (const String &fileOrIdentifier) override
 Should do a quick check to see if this file or directory might be a plugin of this format.
String getNameOfPluginFromIdentifier (const String &fileOrIdentifier) override
 Returns a readable version of the name of the plugin that this identifier refers to.
bool pluginNeedsRescanning (const PluginDescription &) override
 Returns true if this plugin's version or date has changed and it should be re-checked.
StringArray searchPathsForPlugins (const FileSearchPath &, bool recursive, bool) override
 Searches a suggested set of directories for any plugins in this format.
bool doesPluginStillExist (const PluginDescription &) override
 Checks whether this plugin could possibly be loaded.
FileSearchPath getDefaultLocationsToSearch () override
 Returns the typical places to look for this kind of plugin.
Public Member Functions inherited from juce::AudioPluginFormat
 ~AudioPluginFormat () override
 Destructor.
std::unique_ptr< AudioPluginInstancecreateInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize)
 Tries to recreate a type from a previously generated PluginDescription.
std::unique_ptr< AudioPluginInstancecreateInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize, String &errorMessage)
 Same as above but with the possibility of returning an error message.
void createPluginInstanceAsync (const PluginDescription &description, double initialSampleRate, int initialBufferSize, PluginCreationCallback)
 Tries to recreate a type from a previously generated PluginDescription.
virtual void createARAFactoryAsync (const PluginDescription &, ARAFactoryCreationCallback callback)
 Tries to create an ARAFactoryWrapper for this description.

Static Public Member Functions

static String getFormatName ()

Additional Inherited Members

Public Types inherited from juce::AudioPluginFormat
using PluginCreationCallback = std::function<void (std::unique_ptr<AudioPluginInstance>, const String&)>
 A callback lambda that is passed to createPluginInstanceAsync()
using ARAFactoryCreationCallback = std::function<void (ARAFactoryResult)>
 A callback lambda that is passed to getARAFactory()
Protected Member Functions inherited from juce::AudioPluginFormat
 AudioPluginFormat ()

Constructors and Destructors

◆ LADSPAPluginFormat()

juce::LADSPAPluginFormat::LADSPAPluginFormat ( )

◆ ~LADSPAPluginFormat()

juce::LADSPAPluginFormat::~LADSPAPluginFormat ( )
override

Member Functions

◆ getFormatName()

String juce::LADSPAPluginFormat::getFormatName ( )
static

Referenced by getName().

◆ getName()

String juce::LADSPAPluginFormat::getName ( ) const
overridevirtual

Returns the format name.

E.g. "VST", "AudioUnit", etc.

Implements juce::AudioPluginFormat.

References getFormatName().

◆ canScanForPlugins()

bool juce::LADSPAPluginFormat::canScanForPlugins ( ) const
overridevirtual

Returns true if this format needs to run a scan to find its list of plugins.

Implements juce::AudioPluginFormat.

◆ isTrivialToScan()

bool juce::LADSPAPluginFormat::isTrivialToScan ( ) const
overridevirtual

Should return true if this format is both safe and quick to scan - i.e.

if a file can be scanned within a few milliseconds on a background thread, without actually needing to load an executable.

Implements juce::AudioPluginFormat.

◆ findAllTypesForFile()

void juce::LADSPAPluginFormat::findAllTypesForFile ( OwnedArray< PluginDescription > & results,
const String & fileOrIdentifier )
overridevirtual

This tries to create descriptions for all the plugin types available in a binary module file.

The file will be some kind of DLL or bundle.

Normally there will only be one type returned, but some plugins (e.g. VST shells) can use a single DLL to create a set of different plugin subtypes, so in that case, each subtype is returned as a separate object.

Implements juce::AudioPluginFormat.

◆ fileMightContainThisPluginType()

bool juce::LADSPAPluginFormat::fileMightContainThisPluginType ( const String & fileOrIdentifier)
overridevirtual

Should do a quick check to see if this file or directory might be a plugin of this format.

This is for searching for potential files, so it shouldn't actually try to load the plugin or do anything time-consuming.

Implements juce::AudioPluginFormat.

◆ getNameOfPluginFromIdentifier()

String juce::LADSPAPluginFormat::getNameOfPluginFromIdentifier ( const String & fileOrIdentifier)
overridevirtual

Returns a readable version of the name of the plugin that this identifier refers to.

Implements juce::AudioPluginFormat.

◆ pluginNeedsRescanning()

bool juce::LADSPAPluginFormat::pluginNeedsRescanning ( const PluginDescription & )
overridevirtual

Returns true if this plugin's version or date has changed and it should be re-checked.

Implements juce::AudioPluginFormat.

◆ searchPathsForPlugins()

StringArray juce::LADSPAPluginFormat::searchPathsForPlugins ( const FileSearchPath & directoriesToSearch,
bool recursive,
bool allowPluginsWhichRequireAsynchronousInstantiation )
overridevirtual

Searches a suggested set of directories for any plugins in this format.

The path might be ignored, e.g. by AUs, which are found by the OS rather than manually.

Parameters
directoriesToSearchThis specifies which directories shall be searched for plug-ins.
recursiveShould the search recursively traverse folders.
allowPluginsWhichRequireAsynchronousInstantiationIf this is false then plug-ins which require asynchronous creation will be excluded.

Implements juce::AudioPluginFormat.

◆ doesPluginStillExist()

bool juce::LADSPAPluginFormat::doesPluginStillExist ( const PluginDescription & )
overridevirtual

Checks whether this plugin could possibly be loaded.

It doesn't actually need to load it, just to check whether the file or component still exists.

Implements juce::AudioPluginFormat.

◆ getDefaultLocationsToSearch()

FileSearchPath juce::LADSPAPluginFormat::getDefaultLocationsToSearch ( )
overridevirtual

Returns the typical places to look for this kind of plugin.

Note that if this returns no paths, it means that the format doesn't search in files or folders, e.g. AudioUnits.

Implements juce::AudioPluginFormat.

References LADSPAPluginFormat().

linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram