The base class for a type of plugin format, such as VST, AudioUnit, LADSPA, etc. More...
#include <juce_AudioPluginFormat.h>


Public Types | |
| using | ARAFactoryCreationCallback = std::function< void(ARAFactoryResult)> |
| A callback lambda that is passed to getARAFactory() | |
| using | PluginCreationCallback = std::function< void(std::unique_ptr< AudioPluginInstance >, const String &)> |
| A callback lambda that is passed to createPluginInstanceAsync() | |
Public Member Functions | |
| ~AudioPluginFormat () override | |
| Destructor. | |
| virtual bool | canScanForPlugins () const =0 |
| Returns true if this format needs to run a scan to find its list of plugins. | |
| virtual void | createARAFactoryAsync (const PluginDescription &, ARAFactoryCreationCallback callback) |
| Tries to create an ::ARAFactoryWrapper for this description. | |
| std::unique_ptr< AudioPluginInstance > | createInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize) |
| Tries to recreate a type from a previously generated PluginDescription. | |
| std::unique_ptr< AudioPluginInstance > | createInstanceFromDescription (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 bool | doesPluginStillExist (const PluginDescription &)=0 |
| Checks whether this plugin could possibly be loaded. | |
| virtual bool | fileMightContainThisPluginType (const String &fileOrIdentifier)=0 |
| Should do a quick check to see if this file or directory might be a plugin of this format. | |
| virtual void | findAllTypesForFile (OwnedArray< PluginDescription > &results, const String &fileOrIdentifier)=0 |
| This tries to create descriptions for all the plugin types available in a binary module file. | |
| virtual FileSearchPath | getDefaultLocationsToSearch ()=0 |
| Returns the typical places to look for this kind of plugin. | |
| virtual String | getName () const =0 |
| Returns the format name. | |
| virtual String | getNameOfPluginFromIdentifier (const String &fileOrIdentifier)=0 |
| Returns a readable version of the name of the plugin that this identifier refers to. | |
| virtual bool | isTrivialToScan () const =0 |
| Should return true if this format is both safe and quick to scan - i.e. | |
| virtual bool | pluginNeedsRescanning (const PluginDescription &)=0 |
| Returns true if this plugin's version or date has changed and it should be re-checked. | |
| virtual bool | requiresUnblockedMessageThreadDuringCreation (const PluginDescription &) const =0 |
| Returns true if instantiation of this plugin type must be done from a non-message thread. | |
| virtual StringArray | searchPathsForPlugins (const FileSearchPath &directoriesToSearch, bool recursive, bool allowPluginsWhichRequireAsynchronousInstantiation=false)=0 |
| Searches a suggested set of directories for any plugins in this format. | |
Protected Member Functions | |
| AudioPluginFormat () | |
| virtual void | createPluginInstance (const PluginDescription &, double initialSampleRate, int initialBufferSize, PluginCreationCallback)=0 |
| Implementors must override this function. | |
Private Member Functions | |
| void | handleMessage (const Message &) override |
| This is the callback method that receives incoming messages. | |
| void | postMessage (Message *message) const |
| Sends a message to the message queue, for asynchronous delivery to this listener later on. | |
Private Attributes | |
| WeakReference< MessageListener >::Master | masterReference |
Friends | |
| class | AudioPluginFormatManager |
The base class for a type of plugin format, such as VST, AudioUnit, LADSPA, etc.
@tags{Audio}
| using juce::AudioPluginFormat::ARAFactoryCreationCallback = std::function<void (ARAFactoryResult)> |
A callback lambda that is passed to getARAFactory()
| using juce::AudioPluginFormat::PluginCreationCallback = std::function<void (std::unique_ptr<AudioPluginInstance>, const String&)> |
A callback lambda that is passed to createPluginInstanceAsync()
|
override |
Destructor.
|
protected |
|
pure virtual |
Returns true if this format needs to run a scan to find its list of plugins.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
inlinevirtual |
Tries to create an ::ARAFactoryWrapper for this description.
The result of the operation will be wrapped into an ARAFactoryResult, which will be passed to a callback object supplied by the caller.
Reimplemented in juce::AudioUnitPluginFormat, and juce::VST3PluginFormat.
| std::unique_ptr< AudioPluginInstance > juce::AudioPluginFormat::createInstanceFromDescription | ( | const PluginDescription & | , |
| double | initialSampleRate, | ||
| int | initialBufferSize | ||
| ) |
Tries to recreate a type from a previously generated PluginDescription.
| std::unique_ptr< AudioPluginInstance > juce::AudioPluginFormat::createInstanceFromDescription | ( | const PluginDescription & | , |
| double | initialSampleRate, | ||
| int | initialBufferSize, | ||
| String & | errorMessage | ||
| ) |
Same as above but with the possibility of returning an error message.
|
protectedpure virtual |
Implementors must override this function.
This is guaranteed to be called on the message thread. You may call the callback on any thread.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::VST3PluginFormat, juce::VSTPluginFormat, and juce::LV2PluginFormat.
| void juce::AudioPluginFormat::createPluginInstanceAsync | ( | const PluginDescription & | description, |
| double | initialSampleRate, | ||
| int | initialBufferSize, | ||
| PluginCreationCallback | |||
| ) |
Tries to recreate a type from a previously generated PluginDescription.
When the plugin has been created, it will be passed to the caller via an asynchronous call to the PluginCreationCallback lambda that was provided.
|
pure virtual |
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.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
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.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
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.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::VST3PluginFormat, juce::VSTPluginFormat, and juce::LV2PluginFormat.
|
pure virtual |
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.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
Returns the format name.
E.g. "VST", "AudioUnit", etc.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
Returns a readable version of the name of the plugin that this identifier refers to.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
overrideprivatevirtual |
This is the callback method that receives incoming messages.
This is called by the MessageManager from its dispatch loop.
Implements juce::MessageListener.
|
pure virtual |
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.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
Returns true if this plugin's version or date has changed and it should be re-checked.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
inherited |
Sends a message to the message queue, for asynchronous delivery to this listener later on.
This method can be called safely by any thread.
| message | the message object to send - this will be deleted automatically by the message queue, so make sure it's allocated on the heap, not the stack! |
|
pure virtual |
Returns true if instantiation of this plugin type must be done from a non-message thread.
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::LV2PluginFormat, juce::VST3PluginFormat, and juce::VSTPluginFormat.
|
pure virtual |
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.
| directoriesToSearch | This specifies which directories shall be searched for plug-ins. |
| recursive | Should the search recursively traverse folders. |
| allowPluginsWhichRequireAsynchronousInstantiation | If this is false then plug-ins which require asynchronous creation will be excluded. |
Implemented in juce::AudioUnitPluginFormat, juce::LADSPAPluginFormat, juce::VST3PluginFormat, juce::VSTPluginFormat, and juce::LV2PluginFormat.
|
friend |
|
privateinherited |