|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #include "CarlaHost.h"
- #include "CarlaNative.h"
-
- #include "CarlaLv2Utils.hpp"
- #include "CarlaPlugin.hpp"
- #include "CarlaString.hpp"
-
- #include "juce_audio_formats.h"
-
- #ifdef CARLA_OS_MAC
- # include "juce_audio_processors.h"
- using juce::AudioUnitPluginFormat;
- using juce::StringArray;
- #endif
-
- namespace CB = CarlaBackend;
-
- // -------------------------------------------------------------------------------------------------------------------
- // Always return a valid string ptr
-
- static const char* const gNullCharPtr = "";
-
- #ifdef CARLA_COMMON_NEED_CHECKSTRINGPTR
- static void checkStringPtr(const char*& charPtr) noexcept
- {
- if (charPtr == nullptr)
- charPtr = gNullCharPtr;
- }
- #endif
-
- // -------------------------------------------------------------------------------------------------------------------
- // Constructors
-
- _CarlaPluginInfo::_CarlaPluginInfo() noexcept
- : type(CB::PLUGIN_NONE),
- category(CB::PLUGIN_CATEGORY_NONE),
- hints(0x0),
- optionsAvailable(0x0),
- optionsEnabled(0x0),
- filename(gNullCharPtr),
- name(gNullCharPtr),
- label(gNullCharPtr),
- maker(gNullCharPtr),
- copyright(gNullCharPtr),
- iconName(gNullCharPtr),
- uniqueId(0) {}
-
- _CarlaPluginInfo::~_CarlaPluginInfo() noexcept
- {
- if (label != gNullCharPtr)
- delete[] label;
- if (maker != gNullCharPtr)
- delete[] maker;
- if (copyright != gNullCharPtr)
- delete[] copyright;
- }
-
- _CarlaCachedPluginInfo::_CarlaCachedPluginInfo() noexcept
- : category(CB::PLUGIN_CATEGORY_NONE),
- hints(0x0),
- audioIns(0),
- audioOuts(0),
- midiIns(0),
- midiOuts(0),
- parameterIns(0),
- parameterOuts(0),
- name(gNullCharPtr),
- label(gNullCharPtr),
- maker(gNullCharPtr),
- copyright(gNullCharPtr) {}
-
- _CarlaParameterInfo::_CarlaParameterInfo() noexcept
- : name(gNullCharPtr),
- symbol(gNullCharPtr),
- unit(gNullCharPtr),
- scalePointCount(0) {}
-
- _CarlaParameterInfo::~_CarlaParameterInfo() noexcept
- {
- if (name != gNullCharPtr)
- delete[] name;
- if (symbol != gNullCharPtr)
- delete[] symbol;
- if (unit != gNullCharPtr)
- delete[] unit;
- }
-
- _CarlaScalePointInfo::_CarlaScalePointInfo() noexcept
- : value(0.0f),
- label(gNullCharPtr) {}
-
- _CarlaScalePointInfo::~_CarlaScalePointInfo() noexcept
- {
- if (label != gNullCharPtr)
- delete[] label;
- }
-
- _CarlaTransportInfo::_CarlaTransportInfo() noexcept
- : playing(false),
- frame(0),
- bar(0),
- beat(0),
- tick(0),
- bpm(0.0) {}
-
- // -------------------------------------------------------------------------------------------------------------------
-
- const char* carla_get_complete_license_text()
- {
- carla_debug("carla_get_complete_license_text()");
-
- static CarlaString retText;
-
- if (retText.isEmpty())
- {
- retText =
- "<p>This current Carla build is using the following features and 3rd-party code:</p>"
- "<ul>"
-
- // Plugin formats
- "<li>LADSPA plugin support</li>"
- "<li>DSSI plugin support</li>"
- "<li>LV2 plugin support</li>"
- #ifdef VESTIGE_HEADER
- "<li>VST2 plugin support using VeSTige header by Javier Serrano Polo</li>"
- #else
- "<li>VST2 plugin support using official VST SDK 2.4 [1]</li>"
- #endif
- #if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
- "<li>VST3 plugin support using official VST SDK 3.6 [1]</li>"
- #endif
- #ifdef CARLA_OS_MAC
- "<li>AU plugin support</li>"
- #endif
-
- // Sample kit libraries
- #ifdef HAVE_FLUIDSYNTH
- "<li>FluidSynth library for SF2 support</li>"
- #endif
- #ifdef HAVE_LINUXSAMPLER
- "<li>LinuxSampler library for GIG and SFZ support [2]</li>"
- #endif
-
- // Internal plugins
- "<li>NekoFilter plugin code based on lv2fil by Nedko Arnaudov and Fons Adriaensen</li>"
- #ifdef WANT_ZYNADDSUBFX
- "<li>ZynAddSubFX plugin code</li>"
- #endif
-
- // misc libs
- "<li>base64 utilities based on code by Ren\u00E9 Nyffenegger</li>"
- #ifdef CARLA_OS_MAC
- "<li>sem_timedwait for Mac OS by Keith Shortridge</li>"
- #endif
- "<li>liblo library for OSC support</li>"
- "<li>rtmempool library by Nedko Arnaudov"
- "<li>serd, sord, sratom and lilv libraries for LV2 discovery</li>"
- #if ! (defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN))
- "<li>RtAudio and RtMidi libraries for extra Audio and MIDI support</li>"
- #endif
-
- // end
- "</ul>"
-
- "<p>"
- #if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN) || ! defined(VESTIGE_HEADER)
- // Required by VST SDK
- " [1] Trademark of Steinberg Media Technologies GmbH.<br/>"
- #endif
- #ifdef HAVE_LINUXSAMPLER
- // LinuxSampler GPL exception
- " [2] Using LinuxSampler code in commercial hardware or software products is not allowed without prior written authorization by the authors."
- #endif
- "</p>"
- ;
- }
-
- return retText;
- }
-
- const char* carla_get_juce_version()
- {
- carla_debug("carla_get_juce_version()");
-
- static CarlaString retVersion;
-
- if (retVersion.isEmpty())
- {
- if (const char* const version = juce::SystemStats::getJUCEVersion().toRawUTF8())
- retVersion = version+6;
- else
- retVersion = "3.0";
- }
-
- return retVersion;
- }
-
- const char* carla_get_supported_file_extensions()
- {
- carla_debug("carla_get_supported_file_extensions()");
-
- static CarlaString retText;
-
- if (retText.isEmpty())
- {
- retText =
- // Base types
- "*.carxp;*.carxs"
- // MIDI files
- ";*.mid;*.midi"
- #ifdef HAVE_FLUIDSYNTH
- // fluidsynth (sf2)
- ";*.sf2"
- #endif
- #ifdef HAVE_LINUXSAMPLER
- // linuxsampler (gig and sfz)
- ";*.gig;*.sfz"
- #endif
- #ifdef WANT_ZYNADDSUBFX
- // zynaddsubfx presets
- ";*.xmz;*.xiz"
- #endif
- ;
-
- #ifndef BUILD_BRIDGE
- // Audio files
- {
- using namespace juce;
-
- AudioFormatManager afm;
- afm.registerBasicFormats();
-
- String juceFormats;
-
- for (AudioFormat **it=afm.begin(), **end=afm.end(); it != end; ++it)
- {
- const StringArray& exts((*it)->getFileExtensions());
-
- for (String *eit=exts.begin(), *eend=exts.end(); eit != eend; ++eit)
- juceFormats += String(";*" + (*eit)).toRawUTF8();
- }
-
- retText += juceFormats.toRawUTF8();
- }
- #endif
- }
-
- return retText;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
-
- #ifdef CARLA_OS_MAC
- static StringArray gCachedAuPluginResults;
- #endif
-
- uint carla_get_cached_plugin_count(PluginType ptype, const char* pluginPath)
- {
- CARLA_SAFE_ASSERT_RETURN(ptype == CB::PLUGIN_INTERNAL || ptype == CB::PLUGIN_LV2 || ptype == CB::PLUGIN_AU, 0);
- carla_debug("carla_get_cached_plugin_count(%i:%s)", ptype, CB::PluginType2Str(ptype));
-
- switch (ptype)
- {
- case CB::PLUGIN_INTERNAL: {
- #ifndef BUILD_BRIDGE
- return static_cast<uint>(CarlaPlugin::getNativePluginCount());
- #else
- return 0;
- #endif
- }
-
- case CB::PLUGIN_LV2: {
- Lv2WorldClass& lv2World(Lv2WorldClass::getInstance());
- lv2World.initIfNeeded(pluginPath);
- return lv2World.getPluginCount();
- }
-
- case CB::PLUGIN_AU: {
- #ifdef CARLA_OS_MAC
- static bool initiated = false;
-
- if (initiated)
- return static_cast<uint>(gCachedAuPluginResults.size());
-
- initiated = true;
- AudioUnitPluginFormat auFormat;
- gCachedAuPluginResults = auFormat.searchPathsForPlugins(juce::FileSearchPath(), false);
-
- return static_cast<uint>(gCachedAuPluginResults.size());
- #else
- return 0;
- #endif
- }
-
- default:
- return 0;
- }
- }
-
- const CarlaCachedPluginInfo* carla_get_cached_plugin_info(PluginType ptype, uint index)
- {
- carla_debug("carla_get_cached_plugin_info(%i:%s, %i)", ptype, CB::PluginType2Str(ptype), index);
-
- static CarlaCachedPluginInfo info;
-
- switch (ptype)
- {
- case CB::PLUGIN_INTERNAL: {
- #ifndef BUILD_BRIDGE
- const NativePluginDescriptor* const desc(CarlaPlugin::getNativePluginDescriptor(index));
- CARLA_SAFE_ASSERT_BREAK(desc != nullptr);
-
- info.category = static_cast<CB::PluginCategory>(desc->category);
- info.hints = 0x0;
-
- if (desc->hints & NATIVE_PLUGIN_IS_RTSAFE)
- info.hints |= CB::PLUGIN_IS_RTSAFE;
- if (desc->hints & NATIVE_PLUGIN_IS_SYNTH)
- info.hints |= CB::PLUGIN_IS_SYNTH;
- if (desc->hints & NATIVE_PLUGIN_HAS_UI)
- info.hints |= CB::PLUGIN_HAS_CUSTOM_UI;
- if (desc->hints & NATIVE_PLUGIN_NEEDS_FIXED_BUFFERS)
- info.hints |= CB::PLUGIN_NEEDS_FIXED_BUFFERS;
- if (desc->hints & NATIVE_PLUGIN_NEEDS_SINGLE_THREAD)
- info.hints |= CB::PLUGIN_NEEDS_SINGLE_THREAD;
-
- info.audioIns = desc->audioIns;
- info.audioOuts = desc->audioOuts;
- info.midiIns = desc->midiIns;
- info.midiOuts = desc->midiOuts;
- info.parameterIns = desc->paramIns;
- info.parameterOuts = desc->paramOuts;
- info.name = desc->name;
- info.label = desc->label;
- info.maker = desc->maker;
- info.copyright = desc->copyright;
- return &info;
- #else
- break;
- #endif
- }
-
- case CB::PLUGIN_LV2: {
- Lv2WorldClass& lv2World(Lv2WorldClass::getInstance());
-
- const LilvPlugin* const cPlugin(lv2World.getPluginFromIndex(index));
- CARLA_SAFE_ASSERT_BREAK(cPlugin != nullptr);
-
- Lilv::Plugin lilvPlugin(cPlugin);
- CARLA_SAFE_ASSERT_BREAK(lilvPlugin.get_uri().is_uri());
-
- // features
- info.hints = 0x0;
-
- if (lilvPlugin.get_uis().size() > 0 || lilvPlugin.get_modgui_resources_directory().as_uri() != nullptr)
- info.hints |= CB::PLUGIN_HAS_CUSTOM_UI;
-
- {
- Lilv::Nodes lilvFeatureNodes(lilvPlugin.get_supported_features());
-
- LILV_FOREACH(nodes, it, lilvFeatureNodes)
- {
- Lilv::Node lilvFeatureNode(lilvFeatureNodes.get(it));
- const char* const featureURI(lilvFeatureNode.as_uri());
- CARLA_SAFE_ASSERT_CONTINUE(featureURI != nullptr);
-
- if (std::strcmp(featureURI, LV2_CORE__hardRTCapable) == 0)
- info.hints |= CB::PLUGIN_IS_RTSAFE;
- }
-
- lilv_nodes_free(const_cast<LilvNodes*>(lilvFeatureNodes.me));
- }
-
- // category
- info.category = CB::PLUGIN_CATEGORY_NONE;
-
- {
- Lilv::Nodes typeNodes(lilvPlugin.get_value(lv2World.rdf_type));
-
- if (typeNodes.size() > 0)
- {
- if (typeNodes.contains(lv2World.class_allpass))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_amplifier))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_analyzer))
- info.category = CB::PLUGIN_CATEGORY_UTILITY;
- if (typeNodes.contains(lv2World.class_bandpass))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_chorus))
- info.category = CB::PLUGIN_CATEGORY_MODULATOR;
- if (typeNodes.contains(lv2World.class_comb))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_compressor))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_constant))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_converter))
- info.category = CB::PLUGIN_CATEGORY_UTILITY;
- if (typeNodes.contains(lv2World.class_delay))
- info.category = CB::PLUGIN_CATEGORY_DELAY;
- if (typeNodes.contains(lv2World.class_distortion))
- info.category = CB::PLUGIN_CATEGORY_DISTORTION;
- if (typeNodes.contains(lv2World.class_dynamics))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_eq))
- info.category = CB::PLUGIN_CATEGORY_EQ;
- if (typeNodes.contains(lv2World.class_envelope))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_expander))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_filter))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_flanger))
- info.category = CB::PLUGIN_CATEGORY_MODULATOR;
- if (typeNodes.contains(lv2World.class_function))
- info.category = CB::PLUGIN_CATEGORY_UTILITY;
- if (typeNodes.contains(lv2World.class_gate))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_generator))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_highpass))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_limiter))
- info.category = CB::PLUGIN_CATEGORY_DYNAMICS;
- if (typeNodes.contains(lv2World.class_lowpass))
- info.category = CB::PLUGIN_CATEGORY_FILTER;
- if (typeNodes.contains(lv2World.class_mixer))
- info.category = CB::PLUGIN_CATEGORY_UTILITY;
- if (typeNodes.contains(lv2World.class_modulator))
- info.category = CB::PLUGIN_CATEGORY_MODULATOR;
- if (typeNodes.contains(lv2World.class_multiEQ))
- info.category = CB::PLUGIN_CATEGORY_EQ;
- if (typeNodes.contains(lv2World.class_oscillator))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_paraEQ))
- info.category = CB::PLUGIN_CATEGORY_EQ;
- if (typeNodes.contains(lv2World.class_phaser))
- info.category = CB::PLUGIN_CATEGORY_MODULATOR;
- if (typeNodes.contains(lv2World.class_pitch))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_reverb))
- info.category = CB::PLUGIN_CATEGORY_DELAY;
- if (typeNodes.contains(lv2World.class_simulator))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_spatial))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_spectral))
- info.category = CB::PLUGIN_CATEGORY_OTHER;
- if (typeNodes.contains(lv2World.class_utility))
- info.category = CB::PLUGIN_CATEGORY_UTILITY;
- if (typeNodes.contains(lv2World.class_waveshaper))
- info.category = CB::PLUGIN_CATEGORY_DISTORTION;
- if (typeNodes.contains(lv2World.class_instrument))
- {
- info.category = CB::PLUGIN_CATEGORY_SYNTH;
- info.hints |= CB::PLUGIN_IS_SYNTH;
- }
- }
-
- lilv_nodes_free(const_cast<LilvNodes*>(typeNodes.me));
- }
-
- // number data
- info.audioIns = 0;
- info.audioOuts = 0;
- info.midiIns = 0;
- info.midiOuts = 0;
- info.parameterIns = 0;
- info.parameterOuts = 0;
-
- for (uint i=0, count=lilvPlugin.get_num_ports(); i<count; ++i)
- {
- Lilv::Port lilvPort(lilvPlugin.get_port_by_index(i));
-
- bool isInput;
-
- /**/ if (lilvPort.is_a(lv2World.port_input))
- isInput = true;
- else if (lilvPort.is_a(lv2World.port_output))
- isInput = false;
- else
- continue;
-
- /**/ if (lilvPort.is_a(lv2World.port_control))
- {
- // skip some control ports
- if (lilvPort.has_property(lv2World.reportsLatency))
- continue;
-
- if (LilvNode* const designationNode = lilv_port_get(lilvPort.parent, lilvPort.me, lv2World.designation.me))
- {
- bool skip = false;
-
- if (const char* const designation = lilv_node_as_string(designationNode))
- {
- /**/ if (std::strcmp(designation, LV2_CORE__control) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_CORE__freeWheeling) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_CORE__latency) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_PARAMETERS__sampleRate) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__bar) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__barBeat) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__beat) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__beatUnit) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__beatsPerBar) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__beatsPerMinute) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__frame) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__framesPerSecond) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_TIME__speed) == 0)
- skip = true;
- else if (std::strcmp(designation, LV2_KXSTUDIO_PROPERTIES__TimePositionTicksPerBeat) == 0)
- skip = true;
- }
-
- lilv_node_free(designationNode);
-
- if (skip)
- continue;
- }
-
- if (isInput)
- ++(info.parameterIns);
- else
- ++(info.parameterOuts);
- }
- else if (lilvPort.is_a(lv2World.port_audio))
- {
- if (isInput)
- ++(info.audioIns);
- else
- ++(info.audioOuts);
- }
- else if (lilvPort.is_a(lv2World.port_cv))
- {
- }
- else if (lilvPort.is_a(lv2World.port_atom))
- {
- Lilv::Nodes supportNodes(lilvPort.get_value(lv2World.atom_supports));
-
- for (LilvIter *it = lilv_nodes_begin(supportNodes.me); ! lilv_nodes_is_end(supportNodes.me, it); it = lilv_nodes_next(supportNodes.me, it))
- {
- const Lilv::Node node(lilv_nodes_get(supportNodes.me, it));
- CARLA_SAFE_ASSERT_CONTINUE(node.is_uri());
-
- if (node.equals(lv2World.midi_event))
- {
- if (isInput)
- ++(info.midiIns);
- else
- ++(info.midiOuts);
- }
- }
-
- lilv_nodes_free(const_cast<LilvNodes*>(supportNodes.me));
- }
- else if (lilvPort.is_a(lv2World.port_event))
- {
- if (lilvPort.supports_event(lv2World.midi_event))
- {
- if (isInput)
- ++(info.midiIns);
- else
- ++(info.midiOuts);
- }
- }
- else if (lilvPort.is_a(lv2World.port_midi))
- {
- if (isInput)
- ++(info.midiIns);
- else
- ++(info.midiOuts);
- }
- }
-
- // text data
- static CarlaString suri, sname, smaker, slicense;
- suri.clear(); sname.clear(); smaker.clear(); slicense.clear();
-
- suri = lilvPlugin.get_uri().as_uri();
-
- if (const char* const name = lilvPlugin.get_name().as_string())
- sname = name;
- else
- sname.clear();
-
- if (const char* const author = lilvPlugin.get_author_name().as_string())
- smaker = author;
- else
- smaker.clear();
-
- Lilv::Nodes licenseNodes(lilvPlugin.get_value(lv2World.doap_license));
-
- if (licenseNodes.size() > 0)
- {
- if (const char* const license = licenseNodes.get_first().as_string())
- slicense = license;
- }
-
- lilv_nodes_free(const_cast<LilvNodes*>(licenseNodes.me));
-
- info.name = sname;
- info.label = suri;
- info.maker = smaker;
- info.copyright = slicense;
-
- return &info;
- }
-
- case CB::PLUGIN_AU: {
- #ifdef CARLA_OS_MAC
- const int indexi(static_cast<int>(index));
- CARLA_SAFE_ASSERT_BREAK(indexi < gCachedAuPluginResults.size());
-
- using namespace juce;
-
- String pluginId(gCachedAuPluginResults[indexi]);
- OwnedArray<PluginDescription> results;
-
- AudioUnitPluginFormat auFormat;
- auFormat.findAllTypesForFile(results, pluginId);
- CARLA_SAFE_ASSERT_BREAK(results.size() > 0);
- CARLA_SAFE_ASSERT(results.size() == 1);
-
- PluginDescription* const desc(results[0]);
- CARLA_SAFE_ASSERT_BREAK(desc != nullptr);
-
- info.category = CB::getPluginCategoryFromName(desc->category.toRawUTF8());
- info.hints = 0x0;
-
- if (desc->isInstrument)
- info.hints |= CB::PLUGIN_IS_SYNTH;
- if (true)
- info.hints |= CB::PLUGIN_HAS_CUSTOM_UI;
-
- info.audioIns = static_cast<uint32_t>(desc->numInputChannels);
- info.audioOuts = static_cast<uint32_t>(desc->numOutputChannels);
- info.midiIns = desc->isInstrument ? 1 : 0;
- info.midiOuts = 0;
- info.parameterIns = 0;
- info.parameterOuts = 0;
-
- static CarlaString sname, slabel, smaker;
-
- sname = desc->name.toRawUTF8();
- slabel = desc->fileOrIdentifier.toRawUTF8();
- smaker = desc->manufacturerName.toRawUTF8();
-
- info.name = sname;
- info.label = slabel;
- info.maker = smaker;
- info.copyright = gNullCharPtr;
-
- return &info;
- #else
- break;
- #endif
- }
-
- default:
- break;
- }
-
- info.category = CB::PLUGIN_CATEGORY_NONE;
- info.hints = 0x0;
- info.audioIns = 0;
- info.audioOuts = 0;
- info.midiIns = 0;
- info.midiOuts = 0;
- info.parameterIns = 0;
- info.parameterOuts = 0;
- info.name = gNullCharPtr;
- info.label = gNullCharPtr;
- info.maker = gNullCharPtr;
- info.copyright = gNullCharPtr;
- return &info;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
-
- const char* carla_get_library_filename()
- {
- carla_debug("carla_get_library_filename()");
-
- static CarlaString ret;
-
- if (ret.isEmpty())
- {
- using juce::File;
- ret = File(File::getSpecialLocation(File::currentExecutableFile)).getFullPathName().toRawUTF8();
- }
-
- return ret;
- }
-
- const char* carla_get_library_folder()
- {
- carla_debug("carla_get_library_folder()");
-
- static CarlaString ret;
-
- if (ret.isEmpty())
- {
- using juce::File;
- ret = File(File::getSpecialLocation(File::currentExecutableFile).getParentDirectory()).getFullPathName().toRawUTF8();
- }
-
- return ret;
- }
-
- // -------------------------------------------------------------------------------------------------------------------
|