| 
							- /*
 -  * Carla Plugin Host
 -  * Copyright (C) 2011-2017 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 "CarlaUtils.h"
 - 
 - #include "CarlaNative.h"
 - 
 - #include "CarlaBackendUtils.hpp"
 - #include "CarlaLv2Utils.hpp"
 - #include "CarlaPipeUtils.hpp"
 - #include "CarlaThread.hpp"
 - #include "LinkedList.hpp"
 - 
 - #include "water/files/File.h"
 - 
 - #ifdef CARLA_OS_MAC
 - # import <Cocoa/Cocoa.h>
 - #endif
 - 
 - #ifndef CARLA_UTILS_CACHED_PLUGINS_ONLY
 - # include "rtaudio/RtAudio.h"
 - # include "rtmidi/RtMidi.h"
 - # ifdef HAVE_X11
 - #  include <X11/Xlib.h>
 - # endif
 - #endif
 - 
 - #include "../native-plugins/_data.all.cpp"
 - 
 - namespace CB = CarlaBackend;
 - 
 - static const char* const gNullCharPtr = "";
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - _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) {}
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - uint carla_get_cached_plugin_count(CB::PluginType ptype, const char* pluginPath)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(ptype == CB::PLUGIN_INTERNAL || ptype == CB::PLUGIN_LV2, 0);
 -     carla_debug("carla_get_cached_plugin_count(%i:%s)", ptype, CB::PluginType2Str(ptype));
 - 
 -     switch (ptype)
 -     {
 -     case CB::PLUGIN_INTERNAL: {
 -         uint32_t count = 0;
 -         carla_get_native_plugins_data(&count);
 -         return count;
 -     }
 - 
 -     case CB::PLUGIN_LV2: {
 -         Lv2WorldClass& lv2World(Lv2WorldClass::getInstance());
 -         lv2World.initIfNeeded(pluginPath);
 -         return lv2World.getPluginCount();
 -     }
 - 
 -     default:
 -         return 0;
 -     }
 - }
 - 
 - const CarlaCachedPluginInfo* carla_get_cached_plugin_info(CB::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: {
 -         uint32_t count = 0;
 -         const NativePluginDescriptor* const descs(carla_get_native_plugins_data(&count));
 -         CARLA_SAFE_ASSERT_BREAK(index < count);
 -         CARLA_SAFE_ASSERT_BREAK(descs != nullptr);
 - 
 -         const NativePluginDescriptor& desc(descs[index]);
 - 
 -         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_UI_MAIN_THREAD)
 -             info.hints |= CB::PLUGIN_NEEDS_UI_MAIN_THREAD;
 -         if (desc.hints & NATIVE_PLUGIN_USES_MULTI_PROGS)
 -             info.hints |= CB::PLUGIN_USES_MULTI_PROGS;
 - 
 -         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;
 -     }
 - 
 -     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());
 - 
 -         carla_stdout("Filling info for LV2 with URI '%s'", lilvPlugin.get_uri().as_uri());
 - 
 -         // features
 -         info.hints = 0x0;
 - 
 -         if (lilvPlugin.get_uis().size() > 0)
 -             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 (LilvNode* const nameNode = lilv_plugin_get_name(lilvPlugin.me))
 -         {
 -             if (const char* const name = lilv_node_as_string(nameNode))
 -                 sname = name;
 -             lilv_node_free(nameNode);
 -         }
 - 
 -         if (const char* const author = lilvPlugin.get_author_name().as_string())
 -             smaker = author;
 - 
 -         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;
 -     }
 - 
 -     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;
 - }
 - 
 - #ifndef CARLA_UTILS_CACHED_PLUGINS_ONLY
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - 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>"
 -         "<li>VST2 plugin support using VeSTige header by Javier Serrano Polo</li>"
 - 
 -         // 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 [1]</li>"
 - #endif
 - 
 -         // misc libs
 -         "<li>base64 utilities based on code by Ren\u00E9 Nyffenegger</li>"
 -         "<li>liblo library for OSC support</li>"
 -         "<li>rtmempool library by Nedko Arnaudov"
 -         "<li>serd, sord, sratom and lilv libraries for LV2 discovery</li>"
 -         "<li>RtAudio v" RTAUDIO_VERSION " and RtMidi v" RTMIDI_VERSION " for native Audio and MIDI support</li>"
 - 
 -         // Internal plugins
 -         "<li>MIDI Sequencer UI code by Perry Nguyen</li>"
 - 
 -         // External plugins
 - #ifdef HAVE_EXTERNAL_PLUGINS
 - # ifdef HAVE_EXPERIMENTAL_PLUGINS
 -         "<li>AT1, BLS1 and REV1 plugin code by Fons Adriaensen</li>"
 - # endif
 -         "<li>Nekobi plugin code based on nekobee by Sean Bolton and others</li>"
 -         "<li>VectorJuice and WobbleJuice plugin code by Andre Sklenar</li>"
 - # ifdef HAVE_ZYN_DEPS
 -         "<li>ZynAddSubFX plugin code by Mark McCurry and Nasca Octavian Paul</li>"
 - # endif
 - #endif // HAVE_EXTERNAL_PLUGINS
 - 
 -         // end
 -         "</ul>"
 - 
 -         "<p>"
 - #ifdef HAVE_LINUXSAMPLER
 -         // LinuxSampler GPL exception
 -         " [1] 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_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 HAVE_ZYN_DEPS
 -         // zynaddsubfx presets
 -         ";*.xmz;*.xiz"
 - #endif
 -         ;
 - 
 -         // Audio files
 - #ifdef HAVE_SNDFILE
 -         retText += ";*.aiff;*.flac;*.oga;*.ogg;*.w64;*.wav";
 - #endif
 - #ifdef HAVE_FFMPEG
 -         retText += ";*.3g2;*.3gp;*.aac;*.ac3;*.amr;*.ape;*.mp2;*.mp3;*.mpc;*.wma";
 - #endif
 -     }
 - 
 -     return retText;
 - }
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - void carla_fflush(bool err)
 - {
 -     std::fflush(err ? stderr : stdout);
 - }
 - 
 - void carla_fputs(bool err, const char* string)
 - {
 -     std::fputs(string, err ? stderr : stdout);
 - }
 - 
 - void carla_set_process_name(const char* name)
 - {
 -     carla_debug("carla_set_process_name(\"%s\")", name);
 - 
 -     CarlaThread::setCurrentThreadName(name);
 - }
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - class CarlaPipeClientPlugin : public CarlaPipeClient
 - {
 - public:
 -     CarlaPipeClientPlugin(const CarlaPipeCallbackFunc callbackFunc, void* const callbackPtr) noexcept
 -         : CarlaPipeClient(),
 -           fCallbackFunc(callbackFunc),
 -           fCallbackPtr(callbackPtr),
 -           fLastReadLine(nullptr)
 -     {
 -         CARLA_SAFE_ASSERT(fCallbackFunc != nullptr);
 -     }
 - 
 -     ~CarlaPipeClientPlugin() override
 -     {
 -         if (fLastReadLine != nullptr)
 -         {
 -             delete[] fLastReadLine;
 -             fLastReadLine = nullptr;
 -         }
 -     }
 - 
 -     const char* readlineblock(const uint timeout) noexcept
 -     {
 -         delete[] fLastReadLine;
 -         fLastReadLine = CarlaPipeClient::_readlineblock(timeout);
 -         return fLastReadLine;
 -     }
 - 
 -     bool msgReceived(const char* const msg) noexcept override
 -     {
 -         if (fCallbackFunc != nullptr)
 -         {
 -             try {
 -                 fCallbackFunc(fCallbackPtr, msg);
 -             } CARLA_SAFE_EXCEPTION("msgReceived");
 -         }
 - 
 -         return true;
 -     }
 - 
 - private:
 -     const CarlaPipeCallbackFunc fCallbackFunc;
 -     void* const fCallbackPtr;
 -     const char* fLastReadLine;
 - 
 -     CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPipeClientPlugin)
 - };
 - 
 - CarlaPipeClientHandle carla_pipe_client_new(const char* argv[], CarlaPipeCallbackFunc callbackFunc, void* callbackPtr)
 - {
 -     carla_debug("carla_pipe_client_new(%p, %p, %p)", argv, callbackFunc, callbackPtr);
 - 
 -     CarlaPipeClientPlugin* const pipe(new CarlaPipeClientPlugin(callbackFunc, callbackPtr));
 - 
 -     if (! pipe->initPipeClient(argv))
 -     {
 -         delete pipe;
 -         return nullptr;
 -     }
 - 
 -     return pipe;
 - }
 - 
 - void carla_pipe_client_idle(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr,);
 - 
 -     ((CarlaPipeClientPlugin*)handle)->idlePipe();
 - }
 - 
 - bool carla_pipe_client_is_running(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, false);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->isPipeRunning();
 - }
 - 
 - void carla_pipe_client_lock(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr,);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->lockPipe();
 - }
 - 
 - void carla_pipe_client_unlock(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr,);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->unlockPipe();
 - }
 - 
 - const char* carla_pipe_client_readlineblock(CarlaPipeClientHandle handle, uint timeout)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, nullptr);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->readlineblock(timeout);
 - }
 - 
 - bool carla_pipe_client_write_msg(CarlaPipeClientHandle handle, const char* msg)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, false);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->writeMessage(msg);
 - }
 - 
 - bool carla_pipe_client_write_and_fix_msg(CarlaPipeClientHandle handle, const char* msg)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, false);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->writeAndFixMessage(msg);
 - }
 - 
 - bool carla_pipe_client_flush(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, false);
 - 
 -     return ((CarlaPipeClientPlugin*)handle)->flushMessages();
 - }
 - 
 - bool carla_pipe_client_flush_and_unlock(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr, false);
 - 
 -     CarlaPipeClientPlugin* const pipe((CarlaPipeClientPlugin*)handle);
 -     const bool ret(pipe->flushMessages());
 -     pipe->unlockPipe();
 -     return ret;
 - }
 - 
 - void carla_pipe_client_destroy(CarlaPipeClientHandle handle)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(handle != nullptr,);
 -     carla_debug("carla_pipe_client_destroy(%p)", handle);
 - 
 -     CarlaPipeClientPlugin* const pipe((CarlaPipeClientPlugin*)handle);
 -     pipe->closePipeClient();
 -     delete pipe;
 - }
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - const char* carla_get_library_filename()
 - {
 -     carla_debug("carla_get_library_filename()");
 - 
 -     static CarlaString ret;
 - 
 -     if (ret.isEmpty())
 -     {
 -         using water::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 water::File;
 -         ret = File(File::getSpecialLocation(File::currentExecutableFile).getParentDirectory()).getFullPathName().toRawUTF8();
 -     }
 - 
 -     return ret;
 - }
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - void carla_x11_reparent_window(uintptr_t winId1, uintptr_t winId2)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(winId1 != 0,);
 -     CARLA_SAFE_ASSERT_RETURN(winId2 != 0,);
 - 
 - #ifdef HAVE_X11
 -     if (::Display* const disp = XOpenDisplay(nullptr))
 -     {
 -         XReparentWindow(disp, winId1, winId2, 0, 0);
 -         XMapWindow(disp, winId1);
 -         XCloseDisplay(disp);
 -     }
 - #endif
 - }
 - 
 - void carla_x11_move_window(uintptr_t winId, int x, int y)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(winId != 0,);
 - 
 - #ifdef HAVE_X11
 -     if (::Display* const disp = XOpenDisplay(nullptr))
 -     {
 -         XMoveWindow(disp, winId, x, y);
 -         XCloseDisplay(disp);
 -     }
 - #else
 -     // unused
 -     return; (void)x; (void)y;
 - #endif
 - }
 - 
 - int* carla_x11_get_window_pos(uintptr_t winId)
 - {
 -     static int pos[2];
 - 
 -     if (winId == 0)
 -     {
 -         pos[0] = 0;
 -         pos[1] = 0;
 -     }
 - #ifdef HAVE_X11
 -     else if (::Display* const disp = XOpenDisplay(nullptr))
 -     {
 -         int x, y;
 -         Window child;
 -         XWindowAttributes xwa;
 -         XTranslateCoordinates(disp, winId, XRootWindow(disp, 0), 0, 0, &x, &y, &child);
 -         XGetWindowAttributes(disp, winId, &xwa);
 -         XCloseDisplay(disp);
 -         pos[0] = x - xwa.x;
 -         pos[1] = y - xwa.y;
 -     }
 - #endif
 -     else
 -     {
 -         pos[0] = 0;
 -         pos[1] = 0;
 -     }
 - 
 -     return pos;
 - }
 - 
 - int carla_cocoa_get_window(void* nsViewPtr)
 - {
 -     CARLA_SAFE_ASSERT_RETURN(nsViewPtr != nullptr, 0);
 - 
 - #ifdef CARLA_OS_MAC
 -     NSView* nsView = (NSView*)nsViewPtr;
 -     return [[nsView window] windowNumber];
 - #else
 -     return 0;
 - #endif
 - }
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - 
 - #include "CarlaPipeUtils.cpp"
 - 
 - #if !(defined(DEBUG) || defined(BUILDING_CARLA_FOR_WINDOWS))
 - # include "water/misc/Time.cpp"
 - #endif
 - 
 - // -------------------------------------------------------------------------------------------------------------------
 - #endif //  CARLA_UTILS_CACHED_PLUGINS_ONLY
 
 
  |