Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

771 lines
24KB

  1. /*
  2. * Carla LV2 Single Plugin
  3. * Copyright (C) 2017-2022 Filipe Coelho <falktx@falktx.com>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation; either version 2 of
  8. * the License, or any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * For a full copy of the GNU General Public License see the doc/GPL.txt file.
  16. */
  17. #ifndef BUILD_BRIDGE
  18. # error This file should not be compiled if not building bridge
  19. #endif
  20. #include "engine/CarlaEngineInternal.hpp"
  21. #include "CarlaPlugin.hpp"
  22. #include "CarlaBackendUtils.hpp"
  23. #include "CarlaEngineUtils.hpp"
  24. #include "CarlaLv2Utils.hpp"
  25. #include "CarlaUtils.h"
  26. #include "water/files/File.h"
  27. #ifdef USING_JUCE
  28. # include "carla_juce/carla_juce.h"
  29. #endif
  30. template<>
  31. void Lv2PluginBaseClass<CARLA_BACKEND_NAMESPACE::EngineTimeInfo>::clearTimeData() noexcept
  32. {
  33. fLastPositionData.clear();
  34. fTimeInfo.clear();
  35. }
  36. // --------------------------------------------------------------------------------------------------------------------
  37. CARLA_BACKEND_START_NAMESPACE
  38. class CarlaEngineSingleLV2 : public CarlaEngine,
  39. public Lv2PluginBaseClass<EngineTimeInfo>
  40. {
  41. public:
  42. CarlaEngineSingleLV2(const double sampleRate,
  43. const char* const bundlePath,
  44. const LV2_Feature* const* const features)
  45. : Lv2PluginBaseClass<EngineTimeInfo>(sampleRate, features),
  46. fPlugin(nullptr)
  47. #ifdef USING_JUCE
  48. , fJuceInitialiser()
  49. #endif
  50. {
  51. CARLA_SAFE_ASSERT_RETURN(pData->curPluginCount == 0,)
  52. CARLA_SAFE_ASSERT_RETURN(pData->plugins == nullptr,);
  53. if (! loadedInProperHost())
  54. return;
  55. // xxxxx
  56. CarlaString binaryDir(bundlePath);
  57. binaryDir += CARLA_OS_SEP_STR "bin" CARLA_OS_SEP_STR;
  58. CarlaString resourceDir(bundlePath);
  59. resourceDir += CARLA_OS_SEP_STR "res" CARLA_OS_SEP_STR;
  60. pData->bufferSize = fBufferSize;
  61. pData->sampleRate = sampleRate;
  62. pData->initTime(nullptr);
  63. pData->options.processMode = ENGINE_PROCESS_MODE_BRIDGE;
  64. pData->options.transportMode = ENGINE_TRANSPORT_MODE_PLUGIN;
  65. pData->options.forceStereo = false;
  66. pData->options.preferPluginBridges = false;
  67. pData->options.preferUiBridges = false;
  68. init("LV2-Export");
  69. if (pData->options.resourceDir != nullptr)
  70. delete[] pData->options.resourceDir;
  71. if (pData->options.binaryDir != nullptr)
  72. delete[] pData->options.binaryDir;
  73. pData->options.binaryDir = binaryDir.dup();
  74. pData->options.resourceDir = resourceDir.dup();
  75. setCallback(_engine_callback, this);
  76. using water::File;
  77. const File pluginFile(File::getSpecialLocation(File::currentExecutableFile).withFileExtension("xml"));
  78. if (! loadProject(pluginFile.getFullPathName().toRawUTF8(), true))
  79. {
  80. carla_stderr2("Failed to init plugin, possible reasons: %s", getLastError());
  81. return;
  82. }
  83. CARLA_SAFE_ASSERT_RETURN(pData->curPluginCount == 1,)
  84. fPlugin = pData->plugins[0].plugin;
  85. CARLA_SAFE_ASSERT_RETURN(fPlugin.get() != nullptr,);
  86. CARLA_SAFE_ASSERT_RETURN(fPlugin->isEnabled(),);
  87. fPorts.hasUI = false;
  88. fPorts.usesTime = true;
  89. fPorts.numAudioIns = fPlugin->getAudioInCount();
  90. fPorts.numAudioOuts = fPlugin->getAudioOutCount();
  91. fPorts.numCVIns = fPlugin->getCVInCount();
  92. fPorts.numCVOuts = fPlugin->getCVOutCount();
  93. fPorts.numMidiIns = fPlugin->getMidiInCount();
  94. fPorts.numMidiOuts = fPlugin->getMidiOutCount();
  95. fPorts.numParams = fPlugin->getParameterCount();
  96. fPorts.init();
  97. for (uint32_t i=0; i < fPorts.numParams; ++i)
  98. {
  99. fPorts.paramsLast[i] = fPlugin->getParameterValue(i);
  100. fPorts.paramsOut [i] = fPlugin->isParameterOutput(i);
  101. }
  102. }
  103. ~CarlaEngineSingleLV2()
  104. {
  105. if (fPlugin.get() != nullptr && fIsActive)
  106. fPlugin->setActive(false, false, false);
  107. fPlugin.reset();
  108. close();
  109. }
  110. bool hasPlugin() noexcept
  111. {
  112. return fPlugin.get() != nullptr;
  113. }
  114. // ----------------------------------------------------------------------------------------------------------------
  115. // LV2 functions
  116. void lv2_activate() noexcept
  117. {
  118. CARLA_SAFE_ASSERT_RETURN(! fIsActive,);
  119. resetTimeInfo();
  120. fPlugin->setActive(true, false, false);
  121. fIsActive = true;
  122. }
  123. void lv2_deactivate() noexcept
  124. {
  125. CARLA_SAFE_ASSERT_RETURN(fIsActive,);
  126. fIsActive = false;
  127. fPlugin->setActive(false, false, false);
  128. }
  129. void lv2_run(const uint32_t frames)
  130. {
  131. //const PendingRtEventsRunner prt(this, frames);
  132. if (! lv2_pre_run(frames))
  133. {
  134. updateParameterOutputs();
  135. return;
  136. }
  137. if (fPorts.numMidiIns > 0)
  138. {
  139. uint32_t engineEventIndex = 0;
  140. carla_zeroStructs(pData->events.in, kMaxEngineEventInternalCount);
  141. for (uint32_t i=0; i < fPorts.numMidiIns; ++i)
  142. {
  143. LV2_ATOM_SEQUENCE_FOREACH(fPorts.eventsIn[i], event)
  144. {
  145. if (event == nullptr)
  146. continue;
  147. if (event->body.type != fURIs.midiEvent)
  148. continue;
  149. if (event->body.size > 4)
  150. continue;
  151. if (event->time.frames >= frames)
  152. break;
  153. const uint8_t* const data((const uint8_t*)(event + 1));
  154. EngineEvent& engineEvent(pData->events.in[engineEventIndex++]);
  155. engineEvent.time = (uint32_t)event->time.frames;
  156. engineEvent.fillFromMidiData((uint8_t)event->body.size, data, (uint8_t)i);
  157. if (engineEventIndex >= kMaxEngineEventInternalCount)
  158. break;
  159. }
  160. }
  161. }
  162. if (fPorts.numMidiOuts > 0)
  163. {
  164. carla_zeroStructs(pData->events.out, kMaxEngineEventInternalCount);
  165. }
  166. if (fPlugin->tryLock(fIsOffline))
  167. {
  168. fPlugin->initBuffers();
  169. fPlugin->process(fPorts.audioCVIns,
  170. fPorts.audioCVOuts,
  171. fPorts.audioCVIns + fPorts.numAudioIns,
  172. fPorts.audioCVOuts + fPorts.numAudioOuts,
  173. frames);
  174. fPlugin->unlock();
  175. if (fPorts.numMidiOuts > 0)
  176. {
  177. uint8_t port = 0;
  178. uint8_t size = 0;
  179. uint8_t mdata[3] = { 0, 0, 0 };
  180. uint8_t mdataTmp[EngineMidiEvent::kDataSize];
  181. const uint8_t* mdataPtr;
  182. for (ushort i=0; i < kMaxEngineEventInternalCount; ++i)
  183. {
  184. const EngineEvent& engineEvent(pData->events.out[i]);
  185. /**/ if (engineEvent.type == kEngineEventTypeNull)
  186. {
  187. break;
  188. }
  189. else if (engineEvent.type == kEngineEventTypeControl)
  190. {
  191. const EngineControlEvent& ctrlEvent(engineEvent.ctrl);
  192. size = ctrlEvent.convertToMidiData(engineEvent.channel, mdata);
  193. mdataPtr = mdata;
  194. }
  195. else if (engineEvent.type == kEngineEventTypeMidi)
  196. {
  197. const EngineMidiEvent& midiEvent(engineEvent.midi);
  198. port = midiEvent.port;
  199. size = midiEvent.size;
  200. CARLA_SAFE_ASSERT_CONTINUE(size > 0);
  201. if (size > EngineMidiEvent::kDataSize)
  202. {
  203. CARLA_SAFE_ASSERT_CONTINUE(midiEvent.dataExt != nullptr);
  204. mdataPtr = midiEvent.dataExt;
  205. }
  206. else
  207. {
  208. // set first byte
  209. mdataTmp[0] = static_cast<uint8_t>(midiEvent.data[0] | (engineEvent.channel & MIDI_CHANNEL_BIT));
  210. // copy rest
  211. carla_copy<uint8_t>(mdataTmp+1, midiEvent.data+1, size-1U);
  212. // done
  213. mdataPtr = mdataTmp;
  214. }
  215. }
  216. else
  217. {
  218. continue;
  219. }
  220. if (size > 0 && ! writeMidiEvent(port, engineEvent.time, size, mdataPtr))
  221. break;
  222. }
  223. }
  224. }
  225. else
  226. {
  227. for (uint32_t i=0; i<fPorts.numAudioOuts; ++i)
  228. carla_zeroFloats(fPorts.audioCVOuts[i], frames);
  229. for (uint32_t i=0; i<fPorts.numCVOuts; ++i)
  230. carla_zeroFloats(fPorts.audioCVOuts[fPorts.numAudioOuts+i], frames);
  231. }
  232. lv2_post_run(frames);
  233. updateParameterOutputs();
  234. }
  235. // ----------------------------------------------------------------------------------------------------------------
  236. bool lv2ui_instantiate(LV2UI_Write_Function writeFunction, LV2UI_Controller controller,
  237. LV2UI_Widget* widget, const LV2_Feature* const* features)
  238. {
  239. fUI.writeFunction = writeFunction;
  240. fUI.controller = controller;
  241. fUI.host = nullptr;
  242. const LV2_URID_Map* uridMap = nullptr;
  243. // ------------------------------------------------------------------------------------------------------------
  244. // see if the host supports external-ui, get uridMap
  245. for (int i=0; features[i] != nullptr; ++i)
  246. {
  247. if (std::strcmp(features[i]->URI, LV2_EXTERNAL_UI__Host) == 0 ||
  248. std::strcmp(features[i]->URI, LV2_EXTERNAL_UI_DEPRECATED_URI) == 0)
  249. {
  250. fUI.host = (const LV2_External_UI_Host*)features[i]->data;
  251. }
  252. else if (std::strcmp(features[i]->URI, LV2_URID__map) == 0)
  253. {
  254. uridMap = (const LV2_URID_Map*)features[i]->data;
  255. }
  256. }
  257. if (fUI.host != nullptr)
  258. {
  259. fPlugin->setCustomUITitle(fUI.host->plugin_human_id);
  260. *widget = (LV2_External_UI_Widget_Compat*)this;
  261. return true;
  262. }
  263. // ------------------------------------------------------------------------------------------------------------
  264. // no external-ui support, use showInterface
  265. const char* uiTitle = nullptr;
  266. for (int i=0; features[i] != nullptr; ++i)
  267. {
  268. if (std::strcmp(features[i]->URI, LV2_OPTIONS__options) == 0)
  269. {
  270. const LV2_Options_Option* const options((const LV2_Options_Option*)features[i]->data);
  271. for (int j=0; options[j].key != 0; ++j)
  272. {
  273. if (options[j].key == uridMap->map(uridMap->handle, LV2_UI__windowTitle))
  274. {
  275. uiTitle = (const char*)options[j].value;
  276. break;
  277. }
  278. }
  279. break;
  280. }
  281. }
  282. if (uiTitle == nullptr)
  283. uiTitle = fPlugin->getName();
  284. fPlugin->setCustomUITitle(uiTitle);
  285. *widget = nullptr;
  286. return true;
  287. }
  288. void lv2ui_port_event(uint32_t portIndex, uint32_t bufferSize, uint32_t format, const void* buffer) const
  289. {
  290. if (format != 0 || bufferSize != sizeof(float) || buffer == nullptr)
  291. return;
  292. if (portIndex >= fPorts.indexOffset || ! fUI.isVisible)
  293. return;
  294. const float value(*(const float*)buffer);
  295. fPlugin->uiParameterChange(portIndex-fPorts.indexOffset, value);
  296. }
  297. protected:
  298. // ----------------------------------------------------------------------------------------------------------------
  299. // CarlaEngine virtual calls
  300. bool init(const char* const clientName) override
  301. {
  302. carla_stdout("CarlaEngineNative::init(\"%s\")", clientName);
  303. if (! pData->init(clientName))
  304. {
  305. close();
  306. setLastError("Failed to init internal data");
  307. return false;
  308. }
  309. return true;
  310. }
  311. bool hasIdleOnMainThread() const noexcept override
  312. {
  313. return false;
  314. }
  315. bool isRunning() const noexcept override
  316. {
  317. return fIsActive;
  318. }
  319. bool isOffline() const noexcept override
  320. {
  321. return fIsOffline;
  322. }
  323. bool usesConstantBufferSize() const noexcept override
  324. {
  325. return false;
  326. }
  327. EngineType getType() const noexcept override
  328. {
  329. return kEngineTypePlugin;
  330. }
  331. const char* getCurrentDriverName() const noexcept override
  332. {
  333. return "LV2 Plugin";
  334. }
  335. void engineCallback(const EngineCallbackOpcode action, const uint pluginId,
  336. const int value1, const int value2, const int value3,
  337. const float valuef, const char* const valueStr)
  338. {
  339. switch (action)
  340. {
  341. case ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED:
  342. if (value1 == PARAMETER_ACTIVE)
  343. return;
  344. CARLA_SAFE_ASSERT_RETURN(value1 >= 0,);
  345. if (fUI.writeFunction != nullptr && fUI.controller != nullptr && fUI.isVisible)
  346. {
  347. fUI.writeFunction(fUI.controller,
  348. static_cast<uint32_t>(value1)+fPorts.indexOffset,
  349. sizeof(float), 0, &valuef);
  350. }
  351. break;
  352. case ENGINE_CALLBACK_UI_STATE_CHANGED:
  353. fUI.isVisible = (value1 == 1);
  354. if (fUI.host != nullptr)
  355. fUI.host->ui_closed(fUI.controller);
  356. break;
  357. case ENGINE_CALLBACK_IDLE:
  358. break;
  359. default:
  360. carla_stdout("engineCallback(%i:%s, %u, %i, %i, %f, %s)",
  361. action, EngineCallbackOpcode2Str(action), pluginId,
  362. value1, value2, value3,
  363. static_cast<double>(valuef), valueStr);
  364. break;
  365. }
  366. }
  367. // ----------------------------------------------------------------------------------------------------------------
  368. void handleUiRun() const override
  369. {
  370. try {
  371. fPlugin->uiIdle();
  372. } CARLA_SAFE_EXCEPTION("fPlugin->uiIdle()")
  373. }
  374. void handleUiShow() override
  375. {
  376. fPlugin->showCustomUI(true);
  377. fUI.isVisible = true;
  378. }
  379. void handleUiHide() override
  380. {
  381. fUI.isVisible = false;
  382. fPlugin->showCustomUI(false);
  383. }
  384. // ----------------------------------------------------------------------------------------------------------------
  385. void handleParameterValueChanged(const uint32_t index, const float value) override
  386. {
  387. fPlugin->setParameterValue(index, value, false, false, false);
  388. }
  389. void handleBufferSizeChanged(const uint32_t bufferSize) override
  390. {
  391. CarlaEngine::bufferSizeChanged(bufferSize);
  392. }
  393. void handleSampleRateChanged(const double sampleRate) override
  394. {
  395. CarlaEngine::sampleRateChanged(sampleRate);
  396. }
  397. // ----------------------------------------------------------------------------------------------------------------
  398. private:
  399. CarlaPluginPtr fPlugin;
  400. #ifdef USING_JUCE
  401. CarlaJUCE::ScopedJuceInitialiser_GUI fJuceInitialiser;
  402. #endif
  403. void updateParameterOutputs() noexcept
  404. {
  405. float value;
  406. for (uint32_t i=0; i < fPorts.numParams; ++i)
  407. {
  408. if (! fPorts.paramsOut[i])
  409. continue;
  410. fPorts.paramsLast[i] = value = fPlugin->getParameterValue(i);
  411. if (fPorts.paramsPtr[i] != nullptr)
  412. *fPorts.paramsPtr[i] = value;
  413. }
  414. }
  415. bool writeMidiEvent(const uint8_t port, const uint32_t time, const uint8_t midiSize, const uint8_t* midiData)
  416. {
  417. CARLA_SAFE_ASSERT_RETURN(fPorts.numMidiOuts > 0, false);
  418. CARLA_SAFE_ASSERT_RETURN(port < fPorts.numMidiOuts, false);
  419. CARLA_SAFE_ASSERT_RETURN(midiData != nullptr, false);
  420. CARLA_SAFE_ASSERT_RETURN(midiSize > 0, false);
  421. LV2_Atom_Sequence* const seq(fPorts.eventsOut[port]);
  422. CARLA_SAFE_ASSERT_RETURN(seq != nullptr, false);
  423. Ports::EventsOutData& mData(fPorts.eventsOutData[port]);
  424. if (sizeof(LV2_Atom_Event) + midiSize > mData.capacity - mData.offset)
  425. return false;
  426. LV2_Atom_Event* const aev = (LV2_Atom_Event*)(LV2_ATOM_CONTENTS(LV2_Atom_Sequence, seq) + mData.offset);
  427. aev->time.frames = time;
  428. aev->body.size = midiSize;
  429. aev->body.type = fURIs.midiEvent;
  430. std::memcpy(LV2_ATOM_BODY(&aev->body), midiData, midiSize);
  431. const uint32_t size = lv2_atom_pad_size(static_cast<uint32_t>(sizeof(LV2_Atom_Event) + midiSize));
  432. mData.offset += size;
  433. seq->atom.size += size;
  434. return true;
  435. }
  436. // -------------------------------------------------------------------
  437. #define handlePtr ((CarlaEngineSingleLV2*)handle)
  438. static void _engine_callback(void* handle, EngineCallbackOpcode action, uint pluginId,
  439. int value1, int value2, int value3,
  440. float valuef, const char* valueStr)
  441. {
  442. handlePtr->engineCallback(action, pluginId, value1, value2, value3, valuef, valueStr);
  443. }
  444. #undef handlePtr
  445. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaEngineSingleLV2)
  446. };
  447. CARLA_BACKEND_END_NAMESPACE
  448. using CARLA_BACKEND_NAMESPACE::CarlaEngineSingleLV2;
  449. // --------------------------------------------------------------------------------------------------------------------
  450. // LV2 DSP functions
  451. static LV2_Handle lv2_instantiate(const LV2_Descriptor* lv2Descriptor, double sampleRate, const char* bundlePath, const LV2_Feature* const* features)
  452. {
  453. carla_stdout("lv2_instantiate(%p, %g, %s, %p)", lv2Descriptor, sampleRate, bundlePath, features);
  454. CarlaEngineSingleLV2* const instance(new CarlaEngineSingleLV2(sampleRate, bundlePath, features));
  455. if (instance->hasPlugin())
  456. return (LV2_Handle)instance;
  457. delete instance;
  458. return nullptr;
  459. }
  460. #define instancePtr ((CarlaEngineSingleLV2*)instance)
  461. static void lv2_connect_port(LV2_Handle instance, uint32_t port, void* dataLocation)
  462. {
  463. instancePtr->lv2_connect_port(port, dataLocation);
  464. }
  465. static void lv2_activate(LV2_Handle instance)
  466. {
  467. carla_debug("lv2_activate(%p)", instance);
  468. instancePtr->lv2_activate();
  469. }
  470. static void lv2_run(LV2_Handle instance, uint32_t sampleCount)
  471. {
  472. instancePtr->lv2_run(sampleCount);
  473. }
  474. static void lv2_deactivate(LV2_Handle instance)
  475. {
  476. carla_debug("lv2_deactivate(%p)", instance);
  477. instancePtr->lv2_deactivate();
  478. }
  479. static void lv2_cleanup(LV2_Handle instance)
  480. {
  481. carla_debug("lv2_cleanup(%p)", instance);
  482. delete instancePtr;
  483. }
  484. static const void* lv2_extension_data(const char* uri)
  485. {
  486. carla_debug("lv2_extension_data(\"%s\")", uri);
  487. return nullptr;
  488. // unused
  489. (void)uri;
  490. }
  491. #undef instancePtr
  492. // --------------------------------------------------------------------------------------------------------------------
  493. // LV2 UI functions
  494. static LV2UI_Handle lv2ui_instantiate(const LV2UI_Descriptor*, const char*, const char*,
  495. LV2UI_Write_Function writeFunction, LV2UI_Controller controller,
  496. LV2UI_Widget* widget, const LV2_Feature* const* features)
  497. {
  498. carla_debug("lv2ui_instantiate(..., %p, %p, %p)", writeFunction, controller, widget, features);
  499. CarlaEngineSingleLV2* engine = nullptr;
  500. for (int i=0; features[i] != nullptr; ++i)
  501. {
  502. if (std::strcmp(features[i]->URI, LV2_INSTANCE_ACCESS_URI) == 0)
  503. {
  504. engine = (CarlaEngineSingleLV2*)features[i]->data;
  505. break;
  506. }
  507. }
  508. if (engine == nullptr)
  509. {
  510. carla_stderr("Host doesn't support instance-access, cannot show UI");
  511. return nullptr;
  512. }
  513. if (! engine->lv2ui_instantiate(writeFunction, controller, widget, features))
  514. return nullptr;
  515. return (LV2UI_Handle)engine;
  516. }
  517. #define uiPtr ((CarlaEngineSingleLV2*)ui)
  518. static void lv2ui_port_event(LV2UI_Handle ui, uint32_t portIndex, uint32_t bufferSize, uint32_t format, const void* buffer)
  519. {
  520. uiPtr->lv2ui_port_event(portIndex, bufferSize, format, buffer);
  521. }
  522. static void lv2ui_cleanup(LV2UI_Handle ui)
  523. {
  524. carla_debug("lv2ui_cleanup(%p)", ui);
  525. uiPtr->lv2ui_cleanup();
  526. }
  527. static int lv2ui_idle(LV2UI_Handle ui)
  528. {
  529. return uiPtr->lv2ui_idle();
  530. }
  531. static int lv2ui_show(LV2UI_Handle ui)
  532. {
  533. carla_debug("lv2ui_show(%p)", ui);
  534. return uiPtr->lv2ui_show();
  535. }
  536. static int lv2ui_hide(LV2UI_Handle ui)
  537. {
  538. carla_debug("lv2ui_hide(%p)", ui);
  539. return uiPtr->lv2ui_hide();
  540. }
  541. static const void* lv2ui_extension_data(const char* uri)
  542. {
  543. carla_debug("lv2ui_extension_data(\"%s\")", uri);
  544. static const LV2UI_Idle_Interface uiidle = { lv2ui_idle };
  545. static const LV2UI_Show_Interface uishow = { lv2ui_show, lv2ui_hide };
  546. if (std::strcmp(uri, LV2_UI__idleInterface) == 0)
  547. return &uiidle;
  548. if (std::strcmp(uri, LV2_UI__showInterface) == 0)
  549. return &uishow;
  550. return nullptr;
  551. }
  552. #undef uiPtr
  553. // --------------------------------------------------------------------------------------------------------------------
  554. // Startup code
  555. CARLA_PLUGIN_EXPORT
  556. const LV2_Descriptor* lv2_descriptor(uint32_t index)
  557. {
  558. carla_debug("lv2_descriptor(%i)", index);
  559. if (index != 0)
  560. return nullptr;
  561. static CarlaString ret;
  562. if (ret.isEmpty())
  563. {
  564. using namespace water;
  565. const File file(File::getSpecialLocation(File::currentExecutableFile).withFileExtension("ttl"));
  566. #ifdef CARLA_OS_WIN
  567. ret = String("file:///" + file.getFullPathName()).toRawUTF8();
  568. ret.replace('\\','/');
  569. #else
  570. ret = String("file://" + file.getFullPathName()).toRawUTF8();
  571. #endif
  572. }
  573. carla_stdout("lv2_descriptor(%i) has URI '%s'", index, ret.buffer());
  574. static const LV2_Descriptor desc = {
  575. /* URI */ ret.buffer(),
  576. /* instantiate */ lv2_instantiate,
  577. /* connect_port */ lv2_connect_port,
  578. /* activate */ lv2_activate,
  579. /* run */ lv2_run,
  580. /* deactivate */ lv2_deactivate,
  581. /* cleanup */ lv2_cleanup,
  582. /* extension_data */ lv2_extension_data
  583. };
  584. return &desc;
  585. }
  586. CARLA_PLUGIN_EXPORT
  587. const LV2UI_Descriptor* lv2ui_descriptor(uint32_t index)
  588. {
  589. carla_debug("lv2ui_descriptor(%i)", index);
  590. static CarlaString ret;
  591. {
  592. using namespace water;
  593. const File file(File::getSpecialLocation(File::currentExecutableFile).getSiblingFile("ext-ui"));
  594. #ifdef CARLA_OS_WIN
  595. ret = String("file:///" + file.getFullPathName()).toRawUTF8();
  596. ret.replace('\\','/');
  597. #else
  598. ret = String("file://" + file.getFullPathName()).toRawUTF8();
  599. #endif
  600. }
  601. carla_stdout("lv2ui_descriptor(%i) has URI '%s'", index, ret.buffer());
  602. static const LV2UI_Descriptor lv2UiExtDesc = {
  603. /* URI */ ret.buffer(),
  604. /* instantiate */ lv2ui_instantiate,
  605. /* cleanup */ lv2ui_cleanup,
  606. /* port_event */ lv2ui_port_event,
  607. /* extension_data */ lv2ui_extension_data
  608. };
  609. return (index == 0) ? &lv2UiExtDesc : nullptr;
  610. }
  611. // --------------------------------------------------------------------------------------------------------------------