Implements a plugin format manager for AudioUnits. More...
#include <juce_AudioUnitPluginFormat.h>
Public Member Functions | |
AudioUnitPluginFormat () | |
~AudioUnitPluginFormat () | |
bool | canScanForPlugins () const override |
Returns true if this format needs to run a scan to find its list of plugins. More... | |
AudioPluginInstance * | createInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize) |
Tries to recreate a type from a previously generated PluginDescription. More... | |
AudioPluginInstance * | createInstanceFromDescription (const PluginDescription &, double initialSampleRate, int initialBufferSize, String &errorMessage) |
Same as above but with the possibility of returning an error message. More... | |
void | createPluginInstanceAsync (const PluginDescription &description, double initialSampleRate, int initialBufferSize, InstantiationCompletionCallback *completionCallback) |
Tries to recreate a type from a previously generated PluginDescription. More... | |
void | createPluginInstanceAsync (const PluginDescription &description, double initialSampleRate, int initialBufferSize, std::function< void(AudioPluginInstance *, const String &)> completionCallback) |
bool | doesPluginStillExist (const PluginDescription &) override |
Checks whether this plugin could possibly be loaded. More... | |
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. More... | |
void | findAllTypesForFile (OwnedArray< PluginDescription > &, const String &fileOrIdentifier) override |
This tries to create descriptions for all the plugin types available in a binary module file. More... | |
FileSearchPath | getDefaultLocationsToSearch () override |
Returns the typical places to look for this kind of plugin. More... | |
String | getName () const override |
Returns the format name. More... | |
String | getNameOfPluginFromIdentifier (const String &fileOrIdentifier) override |
Returns a readable version of the name of the plugin that this identifier refers to. More... | |
bool | pluginNeedsRescanning (const PluginDescription &) override |
Returns true if this plugin's version or date has changed and it should be re-checked. More... | |
StringArray | searchPathsForPlugins (const FileSearchPath &, bool recursive, bool) override |
Searches a suggested set of directories for any plugins in this format. More... | |
Protected Types | |
using | PluginCreationCallback = void(*)(void *, AudioPluginInstance *, const String &) |
Private Member Functions | |
void | createPluginInstance (const PluginDescription &, double initialSampleRate, int initialBufferSize, void *userData, PluginCreationCallback) override |
Implementors must override this function. More... | |
bool | requiresUnblockedMessageThreadDuringCreation (const PluginDescription &) const noexcept override |
Implements a plugin format manager for AudioUnits.
{Audio}
|
protectedinherited |
juce::AudioUnitPluginFormat::AudioUnitPluginFormat | ( | ) |
juce::AudioUnitPluginFormat::~AudioUnitPluginFormat | ( | ) |
|
inlineoverridevirtual |
Returns true if this format needs to run a scan to find its list of plugins.
Implements juce::AudioPluginFormat.
References JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR.
|
inherited |
Tries to recreate a type from a previously generated PluginDescription.
|
inherited |
Same as above but with the possibility of returning an error message.
|
overrideprivatevirtual |
Implementors must override this function.
This is guaranteed to be called on the message thread. You may call the callback on any thread.
Implements juce::AudioPluginFormat.
|
inherited |
Tries to recreate a type from a previously generated PluginDescription.
|
inherited |
|
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.
|
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.
|
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.
|
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.
|
inlineoverridevirtual |
|
overridevirtual |
Returns a readable version of the name of the plugin that this identifier refers to.
Implements juce::AudioPluginFormat.
|
overridevirtual |
Returns true if this plugin's version or date has changed and it should be re-checked.
Implements juce::AudioPluginFormat.
|
overrideprivatevirtualnoexcept |
Implements juce::AudioPluginFormat.
|
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.
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. |
Implements juce::AudioPluginFormat.