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.

506 lines
14KB

  1. /*
  2. * Carla Bridge Plugin
  3. * Copyright (C) 2012-2018 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 "CarlaEngine.hpp"
  21. #include "CarlaHost.h"
  22. #include "CarlaBackendUtils.hpp"
  23. #include "CarlaMainLoop.hpp"
  24. #include "CarlaMIDI.h"
  25. #ifdef CARLA_OS_LINUX
  26. # include <signal.h>
  27. # include <sys/prctl.h>
  28. #endif
  29. #ifdef HAVE_X11
  30. # include <X11/Xlib.h>
  31. #endif
  32. #include "jackbridge/JackBridge.hpp"
  33. #include "water/files/File.h"
  34. using CarlaBackend::CarlaEngine;
  35. using CarlaBackend::EngineCallbackOpcode;
  36. using CarlaBackend::EngineCallbackOpcode2Str;
  37. using CarlaBackend::runMainLoopOnce;
  38. using water::CharPointer_UTF8;
  39. using water::File;
  40. using water::String;
  41. // -------------------------------------------------------------------------
  42. static bool gIsInitiated = false;
  43. static volatile bool gCloseNow = false;
  44. static volatile bool gSaveNow = false;
  45. #if defined(CARLA_OS_LINUX)
  46. static void closeSignalHandler(int) noexcept
  47. {
  48. gCloseNow = true;
  49. }
  50. static void saveSignalHandler(int) noexcept
  51. {
  52. gSaveNow = true;
  53. }
  54. #elif defined(CARLA_OS_WIN)
  55. static BOOL WINAPI winSignalHandler(DWORD dwCtrlType) noexcept
  56. {
  57. if (dwCtrlType == CTRL_C_EVENT)
  58. {
  59. gCloseNow = true;
  60. return TRUE;
  61. }
  62. return FALSE;
  63. }
  64. #endif
  65. static void initSignalHandler()
  66. {
  67. #if defined(CARLA_OS_LINUX)
  68. struct sigaction sig;
  69. carla_zeroStruct(sig);
  70. sig.sa_handler = closeSignalHandler;
  71. sig.sa_flags = SA_RESTART;
  72. sigemptyset(&sig.sa_mask);
  73. sigaction(SIGTERM, &sig, nullptr);
  74. sigaction(SIGINT, &sig, nullptr);
  75. sig.sa_handler = saveSignalHandler;
  76. sig.sa_flags = SA_RESTART;
  77. sigemptyset(&sig.sa_mask);
  78. sigaction(SIGUSR1, &sig, nullptr);
  79. #elif defined(CARLA_OS_WIN)
  80. SetConsoleCtrlHandler(winSignalHandler, TRUE);
  81. #endif
  82. }
  83. // -------------------------------------------------------------------------
  84. static String gProjectFilename;
  85. static void gIdle()
  86. {
  87. carla_engine_idle();
  88. if (gSaveNow)
  89. {
  90. gSaveNow = false;
  91. if (gProjectFilename.isNotEmpty())
  92. {
  93. if (! carla_save_plugin_state(0, gProjectFilename.toRawUTF8()))
  94. carla_stderr("Plugin preset save failed, error was:\n%s", carla_get_last_error());
  95. }
  96. }
  97. }
  98. // -------------------------------------------------------------------------
  99. class CarlaBridgePlugin
  100. {
  101. public:
  102. CarlaBridgePlugin(const bool useBridge, const char* const clientName, const char* const audioPoolBaseName,
  103. const char* const rtClientBaseName, const char* const nonRtClientBaseName, const char* const nonRtServerBaseName)
  104. : fEngine(nullptr),
  105. fUsingBridge(false),
  106. fUsingExec(false)
  107. {
  108. CARLA_ASSERT(clientName != nullptr && clientName[0] != '\0');
  109. carla_debug("CarlaBridgePlugin::CarlaBridgePlugin(%s, \"%s\", %s, %s, %s, %s)",
  110. bool2str(useBridge), clientName, audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName);
  111. carla_set_engine_callback(callback, this);
  112. if (useBridge)
  113. carla_engine_init_bridge(audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName, clientName);
  114. else
  115. carla_engine_init("JACK", clientName);
  116. fEngine = carla_get_engine();
  117. }
  118. ~CarlaBridgePlugin()
  119. {
  120. carla_debug("CarlaBridgePlugin::~CarlaBridgePlugin()");
  121. if (! fUsingExec)
  122. carla_engine_close();
  123. }
  124. bool isOk() const noexcept
  125. {
  126. return (fEngine != nullptr);
  127. }
  128. // ---------------------------------------------------------------------
  129. void exec(const bool useBridge)
  130. {
  131. fUsingBridge = useBridge;
  132. fUsingExec = true;
  133. if (! useBridge)
  134. {
  135. const CarlaPluginInfo* const pInfo(carla_get_plugin_info(0));
  136. CARLA_SAFE_ASSERT_RETURN(pInfo != nullptr,);
  137. gProjectFilename = CharPointer_UTF8(pInfo->name);
  138. gProjectFilename += ".carxs";
  139. if (! File::isAbsolutePath(gProjectFilename))
  140. gProjectFilename = File::getCurrentWorkingDirectory().getChildFile(gProjectFilename).getFullPathName();
  141. if (File(gProjectFilename).existsAsFile())
  142. {
  143. if (carla_load_plugin_state(0, gProjectFilename.toRawUTF8()))
  144. carla_stdout("Plugin state loaded sucessfully");
  145. else
  146. carla_stderr("Plugin state load failed, error was:\n%s", carla_get_last_error());
  147. }
  148. else
  149. {
  150. carla_stdout("Previous plugin state in '%s' is non-existent, will start from default state",
  151. gProjectFilename.toRawUTF8());
  152. }
  153. }
  154. gIsInitiated = true;
  155. for (; runMainLoopOnce() && ! gCloseNow;)
  156. {
  157. gIdle();
  158. #if defined(CARLA_OS_MAC) || defined(CARLA_OS_WIN)
  159. // MacOS and Win32 have event-loops to run, so minimize sleep time
  160. carla_msleep(1);
  161. #else
  162. carla_msleep(5);
  163. #endif
  164. }
  165. carla_engine_close();
  166. }
  167. // ---------------------------------------------------------------------
  168. protected:
  169. void handleCallback(const EngineCallbackOpcode action, const int value1, const int, const float, const char* const)
  170. {
  171. CARLA_BACKEND_USE_NAMESPACE;
  172. switch (action)
  173. {
  174. case ENGINE_CALLBACK_ENGINE_STOPPED:
  175. case ENGINE_CALLBACK_PLUGIN_REMOVED:
  176. case ENGINE_CALLBACK_QUIT:
  177. gCloseNow = true;
  178. break;
  179. case ENGINE_CALLBACK_UI_STATE_CHANGED:
  180. if (gIsInitiated && value1 != 1 && ! fUsingBridge)
  181. gCloseNow = true;
  182. break;
  183. default:
  184. break;
  185. }
  186. }
  187. private:
  188. const CarlaEngine* fEngine;
  189. bool fUsingBridge;
  190. bool fUsingExec;
  191. static void callback(void* ptr, EngineCallbackOpcode action, unsigned int pluginId, int value1, int value2, float value3, const char* valueStr)
  192. {
  193. carla_debug("CarlaBridgePlugin::callback(%p, %i:%s, %i, %i, %i, %f, \"%s\")", ptr, action, EngineCallbackOpcode2Str(action), pluginId, value1, value2, value3, valueStr);
  194. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr,);
  195. CARLA_SAFE_ASSERT_RETURN(pluginId == 0,);
  196. return ((CarlaBridgePlugin*)ptr)->handleCallback(action, value1, value2, value3, valueStr);
  197. }
  198. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaBridgePlugin)
  199. };
  200. // -------------------------------------------------------------------------
  201. int main(int argc, char* argv[])
  202. {
  203. // ---------------------------------------------------------------------
  204. // Check argument count
  205. if (argc != 4 && argc != 5)
  206. {
  207. carla_stdout("usage: %s <type> <filename> <label> [uniqueId]", argv[0]);
  208. return 1;
  209. }
  210. #if defined(CARLA_OS_WIN) && ! defined(BUILDING_CARLA_FOR_WINDOWS)
  211. // ---------------------------------------------------------------------
  212. // Test if bridge is working
  213. if (! jackbridge_is_ok())
  214. {
  215. carla_stderr("A JACK or Wine library is missing, cannot continue");
  216. return 1;
  217. }
  218. #endif
  219. // ---------------------------------------------------------------------
  220. // Get args
  221. const char* const stype = argv[1];
  222. const char* filename = argv[2];
  223. const char* label = argv[3];
  224. const int64_t uniqueId = (argc == 5) ? static_cast<int64_t>(std::atoll(argv[4])) : 0;
  225. if (filename[0] == '\0' || std::strcmp(filename, "(none)") == 0)
  226. filename = nullptr;
  227. if (label[0] == '\0' || std::strcmp(label, "(none)") == 0)
  228. label = nullptr;
  229. // ---------------------------------------------------------------------
  230. // Check binary type
  231. CarlaBackend::BinaryType btype = CarlaBackend::BINARY_NATIVE;
  232. if (const char* const binaryTypeStr = std::getenv("CARLA_BRIDGE_PLUGIN_BINARY_TYPE"))
  233. btype = CarlaBackend::getBinaryTypeFromString(binaryTypeStr);
  234. if (btype == CarlaBackend::BINARY_NONE)
  235. {
  236. carla_stderr("Invalid binary type '%i'", btype);
  237. return 1;
  238. }
  239. // ---------------------------------------------------------------------
  240. // Check plugin type
  241. CarlaBackend::PluginType itype(CarlaBackend::getPluginTypeFromString(stype));
  242. if (itype == CarlaBackend::PLUGIN_NONE)
  243. {
  244. carla_stderr("Invalid plugin type '%s'", stype);
  245. return 1;
  246. }
  247. // ---------------------------------------------------------------------
  248. // Set name
  249. const char* name(std::getenv("CARLA_CLIENT_NAME"));
  250. if (name != nullptr && (name[0] == '\0' || std::strcmp(name, "(none)") == 0))
  251. name = nullptr;
  252. // ---------------------------------------------------------------------
  253. // Setup options
  254. const char* const shmIds(std::getenv("ENGINE_BRIDGE_SHM_IDS"));
  255. const bool useBridge = (shmIds != nullptr);
  256. // ---------------------------------------------------------------------
  257. // Setup bridge ids
  258. char audioPoolBaseName[6+1];
  259. char rtClientBaseName[6+1];
  260. char nonRtClientBaseName[6+1];
  261. char nonRtServerBaseName[6+1];
  262. if (useBridge)
  263. {
  264. CARLA_SAFE_ASSERT_RETURN(std::strlen(shmIds) == 6*4, 1);
  265. std::strncpy(audioPoolBaseName, shmIds+6*0, 6);
  266. std::strncpy(rtClientBaseName, shmIds+6*1, 6);
  267. std::strncpy(nonRtClientBaseName, shmIds+6*2, 6);
  268. std::strncpy(nonRtServerBaseName, shmIds+6*3, 6);
  269. audioPoolBaseName[6] = '\0';
  270. rtClientBaseName[6] = '\0';
  271. nonRtClientBaseName[6] = '\0';
  272. nonRtServerBaseName[6] = '\0';
  273. #ifdef CARLA_OS_LINUX
  274. // terminate ourselves if main carla dies
  275. ::prctl(PR_SET_PDEATHSIG, SIGTERM);
  276. // TODO, osx version too, see https://stackoverflow.com/questions/284325/how-to-make-child-process-die-after-parent-exits
  277. #endif
  278. }
  279. else
  280. {
  281. audioPoolBaseName[0] = '\0';
  282. rtClientBaseName[0] = '\0';
  283. nonRtClientBaseName[0] = '\0';
  284. nonRtServerBaseName[0] = '\0';
  285. jackbridge_init();
  286. }
  287. // ---------------------------------------------------------------------
  288. // Set client name
  289. CarlaString clientName;
  290. if (name != nullptr)
  291. {
  292. clientName = name;
  293. }
  294. else if (itype == CarlaBackend::PLUGIN_LV2)
  295. {
  296. // LV2 requires URI
  297. CARLA_SAFE_ASSERT_RETURN(label != nullptr && label[0] != '\0', 1);
  298. // LV2 URI is not usable as client name, create a usable name from URI
  299. CarlaString label2(label);
  300. // truncate until last valid char
  301. for (std::size_t i=label2.length()-1; i != 0; --i)
  302. {
  303. if (! std::isalnum(label2[i]))
  304. continue;
  305. label2.truncate(i+1);
  306. break;
  307. }
  308. // get last used separator
  309. bool found;
  310. std::size_t septmp, sep = 0;
  311. septmp = label2.rfind('#', &found)+1;
  312. if (found && septmp > sep)
  313. sep = septmp;
  314. septmp = label2.rfind('/', &found)+1;
  315. if (found && septmp > sep)
  316. sep = septmp;
  317. septmp = label2.rfind('=', &found)+1;
  318. if (found && septmp > sep)
  319. sep = septmp;
  320. septmp = label2.rfind(':', &found)+1;
  321. if (found && septmp > sep)
  322. sep = septmp;
  323. // make name starting from the separator and first valid char
  324. const char* name2 = label2.buffer() + sep;
  325. for (; *name2 != '\0' && ! std::isalnum(*name2); ++name2) {}
  326. if (*name2 != '\0')
  327. clientName = name2;
  328. }
  329. else if (label != nullptr)
  330. {
  331. clientName = label;
  332. }
  333. else
  334. {
  335. const String jfilename = String(CharPointer_UTF8(filename));
  336. clientName = File(jfilename).getFileNameWithoutExtension().toRawUTF8();
  337. }
  338. // if we still have no client name by now, use a dummy one
  339. if (clientName.isEmpty())
  340. clientName = "carla-plugin";
  341. // just to be safe
  342. clientName.toBasic();
  343. // ---------------------------------------------------------------------
  344. // Set extraStuff
  345. const void* extraStuff = nullptr;
  346. if (itype == CarlaBackend::PLUGIN_GIG || itype == CarlaBackend::PLUGIN_SF2)
  347. {
  348. if (label == nullptr)
  349. label = clientName;
  350. if (std::strstr(label, " (16 outs)") != nullptr)
  351. extraStuff = "true";
  352. }
  353. #ifdef HAVE_X11
  354. if (std::getenv("DISPLAY") != nullptr)
  355. XInitThreads();
  356. #endif
  357. // ---------------------------------------------------------------------
  358. // Init plugin bridge
  359. CarlaBridgePlugin bridge(useBridge, clientName, audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName);
  360. if (! bridge.isOk())
  361. {
  362. carla_stderr("Failed to init engine, error was:\n%s", carla_get_last_error());
  363. return 1;
  364. }
  365. // ---------------------------------------------------------------------
  366. // Listen for ctrl+c or sigint/sigterm events
  367. initSignalHandler();
  368. // ---------------------------------------------------------------------
  369. // Init plugin
  370. int ret;
  371. if (carla_add_plugin(btype, itype, filename, name, label, uniqueId, extraStuff, 0x0))
  372. {
  373. ret = 0;
  374. if (! useBridge)
  375. {
  376. carla_set_active(0, true);
  377. if (const CarlaPluginInfo* const pluginInfo = carla_get_plugin_info(0))
  378. {
  379. if (pluginInfo->hints & CarlaBackend::PLUGIN_HAS_CUSTOM_UI)
  380. {
  381. #ifdef HAVE_X11
  382. if (std::getenv("DISPLAY") != nullptr)
  383. #endif
  384. carla_show_custom_ui(0, true);
  385. }
  386. }
  387. }
  388. bridge.exec(useBridge);
  389. }
  390. else
  391. {
  392. ret = 1;
  393. const char* const lastError(carla_get_last_error());
  394. carla_stderr("Plugin failed to load, error was:\n%s", lastError);
  395. //if (useBridge)
  396. // bridge.sendOscBridgeError(lastError);
  397. }
  398. return ret;
  399. }