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.

CarlaBridgePlugin.cpp 14KB

10 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. /*
  2. * Carla Bridge Plugin
  3. * Copyright (C) 2012-2017 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. {
  107. CARLA_ASSERT(clientName != nullptr && clientName[0] != '\0');
  108. carla_debug("CarlaBridgePlugin::CarlaBridgePlugin(%s, \"%s\", %s, %s, %s, %s)",
  109. bool2str(useBridge), clientName, audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName);
  110. carla_set_engine_callback(callback, this);
  111. if (useBridge)
  112. carla_engine_init_bridge(audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName, clientName);
  113. else
  114. carla_engine_init("JACK", clientName);
  115. fEngine = carla_get_engine();
  116. }
  117. ~CarlaBridgePlugin()
  118. {
  119. carla_debug("CarlaBridgePlugin::~CarlaBridgePlugin()");
  120. carla_engine_close();
  121. }
  122. bool isOk() const noexcept
  123. {
  124. return (fEngine != nullptr);
  125. }
  126. // ---------------------------------------------------------------------
  127. void exec(const bool useBridge, int argc, char* argv[])
  128. {
  129. fUsingBridge = useBridge;
  130. if (! useBridge)
  131. {
  132. const CarlaPluginInfo* const pInfo(carla_get_plugin_info(0));
  133. CARLA_SAFE_ASSERT_RETURN(pInfo != nullptr,);
  134. gProjectFilename = CharPointer_UTF8(pInfo->name);
  135. gProjectFilename += ".carxs";
  136. if (! File::isAbsolutePath(gProjectFilename))
  137. gProjectFilename = File::getCurrentWorkingDirectory().getChildFile(gProjectFilename).getFullPathName();
  138. if (File(gProjectFilename).existsAsFile() && ! carla_load_plugin_state(0, gProjectFilename.toRawUTF8()))
  139. carla_stderr("Plugin preset load failed, error was:\n%s", carla_get_last_error());
  140. }
  141. gIsInitiated = true;
  142. for (; runMainLoopOnce() && ! gCloseNow;)
  143. {
  144. gIdle();
  145. carla_msleep(1);
  146. }
  147. carla_set_engine_about_to_close();
  148. carla_remove_plugin(0);
  149. // may be unused
  150. return; (void)argc; (void)argv;
  151. }
  152. // ---------------------------------------------------------------------
  153. protected:
  154. void handleCallback(const EngineCallbackOpcode action, const int value1, const int, const float, const char* const)
  155. {
  156. CARLA_BACKEND_USE_NAMESPACE;
  157. switch (action)
  158. {
  159. case ENGINE_CALLBACK_ENGINE_STOPPED:
  160. case ENGINE_CALLBACK_PLUGIN_REMOVED:
  161. case ENGINE_CALLBACK_QUIT:
  162. gCloseNow = true;
  163. break;
  164. case ENGINE_CALLBACK_UI_STATE_CHANGED:
  165. if (gIsInitiated && value1 != 1 && ! fUsingBridge)
  166. gCloseNow = true;
  167. break;
  168. default:
  169. break;
  170. }
  171. }
  172. private:
  173. const CarlaEngine* fEngine;
  174. bool fUsingBridge;
  175. static void callback(void* ptr, EngineCallbackOpcode action, unsigned int pluginId, int value1, int value2, float value3, const char* valueStr)
  176. {
  177. carla_debug("CarlaBridgePlugin::callback(%p, %i:%s, %i, %i, %i, %f, \"%s\")", ptr, action, EngineCallbackOpcode2Str(action), pluginId, value1, value2, value3, valueStr);
  178. CARLA_SAFE_ASSERT_RETURN(ptr != nullptr,);
  179. CARLA_SAFE_ASSERT_RETURN(pluginId == 0,);
  180. return ((CarlaBridgePlugin*)ptr)->handleCallback(action, value1, value2, value3, valueStr);
  181. }
  182. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaBridgePlugin)
  183. };
  184. // -------------------------------------------------------------------------
  185. int main(int argc, char* argv[])
  186. {
  187. // ---------------------------------------------------------------------
  188. // Check argument count
  189. if (argc != 4 && argc != 5)
  190. {
  191. carla_stdout("usage: %s <type> <filename> <label> [uniqueId]", argv[0]);
  192. return 1;
  193. }
  194. #if defined(CARLA_OS_WIN) && ! defined(BUILDING_CARLA_FOR_WINDOWS)
  195. // ---------------------------------------------------------------------
  196. // Test if bridge is working
  197. if (! jackbridge_is_ok())
  198. {
  199. carla_stderr("A JACK or Wine library is missing, cannot continue");
  200. return 1;
  201. }
  202. #endif
  203. // ---------------------------------------------------------------------
  204. // Get args
  205. const char* const stype = argv[1];
  206. const char* filename = argv[2];
  207. const char* label = argv[3];
  208. const int64_t uniqueId = (argc == 5) ? static_cast<int64_t>(std::atoll(argv[4])) : 0;
  209. if (filename[0] == '\0' || std::strcmp(filename, "(none)") == 0)
  210. filename = nullptr;
  211. if (label[0] == '\0' || std::strcmp(label, "(none)") == 0)
  212. label = nullptr;
  213. // ---------------------------------------------------------------------
  214. // Check binary type
  215. CarlaBackend::BinaryType btype = CarlaBackend::BINARY_NATIVE;
  216. if (const char* const binaryTypeStr = std::getenv("CARLA_BRIDGE_PLUGIN_BINARY_TYPE"))
  217. btype = CarlaBackend::getBinaryTypeFromString(binaryTypeStr);
  218. if (btype == CarlaBackend::BINARY_NONE)
  219. {
  220. carla_stderr("Invalid binary type '%i'", btype);
  221. return 1;
  222. }
  223. // ---------------------------------------------------------------------
  224. // Check plugin type
  225. CarlaBackend::PluginType itype(CarlaBackend::getPluginTypeFromString(stype));
  226. if (itype == CarlaBackend::PLUGIN_NONE)
  227. {
  228. carla_stderr("Invalid plugin type '%s'", stype);
  229. return 1;
  230. }
  231. // ---------------------------------------------------------------------
  232. // Set name
  233. const char* name(std::getenv("CARLA_CLIENT_NAME"));
  234. if (name != nullptr && (name[0] == '\0' || std::strcmp(name, "(none)") == 0))
  235. name = nullptr;
  236. // ---------------------------------------------------------------------
  237. // Setup options
  238. const char* const shmIds(std::getenv("ENGINE_BRIDGE_SHM_IDS"));
  239. const bool useBridge = (shmIds != nullptr);
  240. // ---------------------------------------------------------------------
  241. // Setup bridge ids
  242. char audioPoolBaseName[6+1];
  243. char rtClientBaseName[6+1];
  244. char nonRtClientBaseName[6+1];
  245. char nonRtServerBaseName[6+1];
  246. if (useBridge)
  247. {
  248. CARLA_SAFE_ASSERT_RETURN(std::strlen(shmIds) == 6*4, 1);
  249. std::strncpy(audioPoolBaseName, shmIds+6*0, 6);
  250. std::strncpy(rtClientBaseName, shmIds+6*1, 6);
  251. std::strncpy(nonRtClientBaseName, shmIds+6*2, 6);
  252. std::strncpy(nonRtServerBaseName, shmIds+6*3, 6);
  253. audioPoolBaseName[6] = '\0';
  254. rtClientBaseName[6] = '\0';
  255. nonRtClientBaseName[6] = '\0';
  256. nonRtServerBaseName[6] = '\0';
  257. #ifdef CARLA_OS_LINUX
  258. // terminate ourselves if main carla dies
  259. ::prctl(PR_SET_PDEATHSIG, SIGTERM);
  260. // TODO, osx version too, see https://stackoverflow.com/questions/284325/how-to-make-child-process-die-after-parent-exits
  261. #endif
  262. }
  263. else
  264. {
  265. audioPoolBaseName[0] = '\0';
  266. rtClientBaseName[0] = '\0';
  267. nonRtClientBaseName[0] = '\0';
  268. nonRtServerBaseName[0] = '\0';
  269. jackbridge_init();
  270. }
  271. // ---------------------------------------------------------------------
  272. // Set client name
  273. CarlaString clientName;
  274. if (name != nullptr)
  275. {
  276. clientName = name;
  277. }
  278. else if (itype == CarlaBackend::PLUGIN_LV2)
  279. {
  280. // LV2 requires URI
  281. CARLA_SAFE_ASSERT_RETURN(label != nullptr && label[0] != '\0', 1);
  282. // LV2 URI is not usable as client name, create a usable name from URI
  283. CarlaString label2(label);
  284. // truncate until last valid char
  285. for (std::size_t i=label2.length()-1; i != 0; --i)
  286. {
  287. if (! std::isalnum(label2[i]))
  288. continue;
  289. label2.truncate(i+1);
  290. break;
  291. }
  292. // get last used separator
  293. bool found;
  294. std::size_t septmp, sep = 0;
  295. septmp = label2.rfind('#', &found)+1;
  296. if (found && septmp > sep)
  297. sep = septmp;
  298. septmp = label2.rfind('/', &found)+1;
  299. if (found && septmp > sep)
  300. sep = septmp;
  301. septmp = label2.rfind('=', &found)+1;
  302. if (found && septmp > sep)
  303. sep = septmp;
  304. septmp = label2.rfind(':', &found)+1;
  305. if (found && septmp > sep)
  306. sep = septmp;
  307. // make name starting from the separator and first valid char
  308. const char* name2 = label2.buffer() + sep;
  309. for (; *name2 != '\0' && ! std::isalnum(*name2); ++name2) {}
  310. if (*name2 != '\0')
  311. clientName = name2;
  312. }
  313. else if (label != nullptr)
  314. {
  315. clientName = label;
  316. }
  317. else
  318. {
  319. const String jfilename = String(CharPointer_UTF8(filename));
  320. clientName = File(jfilename).getFileNameWithoutExtension().toRawUTF8();
  321. }
  322. // if we still have no client name by now, use a dummy one
  323. if (clientName.isEmpty())
  324. clientName = "carla-plugin";
  325. // just to be safe
  326. clientName.toBasic();
  327. // ---------------------------------------------------------------------
  328. // Set extraStuff
  329. const void* extraStuff = nullptr;
  330. if (itype == CarlaBackend::PLUGIN_GIG || itype == CarlaBackend::PLUGIN_SF2)
  331. {
  332. if (label == nullptr)
  333. label = clientName;
  334. if (std::strstr(label, " (16 outs)") != nullptr)
  335. extraStuff = "true";
  336. }
  337. #ifdef HAVE_X11
  338. if (std::getenv("DISPLAY") != nullptr)
  339. XInitThreads();
  340. #endif
  341. // ---------------------------------------------------------------------
  342. // Init plugin bridge
  343. CarlaBridgePlugin bridge(useBridge, clientName, audioPoolBaseName, rtClientBaseName, nonRtClientBaseName, nonRtServerBaseName);
  344. if (! bridge.isOk())
  345. {
  346. carla_stderr("Failed to init engine, error was:\n%s", carla_get_last_error());
  347. return 1;
  348. }
  349. // ---------------------------------------------------------------------
  350. // Listen for ctrl+c or sigint/sigterm events
  351. initSignalHandler();
  352. // ---------------------------------------------------------------------
  353. // Init plugin
  354. int ret;
  355. if (carla_add_plugin(btype, itype, filename, name, label, uniqueId, extraStuff, 0x0))
  356. {
  357. ret = 0;
  358. if (! useBridge)
  359. {
  360. carla_set_active(0, true);
  361. if (const CarlaPluginInfo* const pluginInfo = carla_get_plugin_info(0))
  362. {
  363. if (pluginInfo->hints & CarlaBackend::PLUGIN_HAS_CUSTOM_UI)
  364. {
  365. #ifdef HAVE_X11
  366. if (std::getenv("DISPLAY") != nullptr)
  367. #endif
  368. carla_show_custom_ui(0, true);
  369. }
  370. }
  371. }
  372. bridge.exec(useBridge, argc, argv);
  373. }
  374. else
  375. {
  376. ret = 1;
  377. const char* const lastError(carla_get_last_error());
  378. carla_stderr("Plugin failed to load, error was:\n%s", lastError);
  379. //if (useBridge)
  380. // bridge.sendOscBridgeError(lastError);
  381. }
  382. return ret;
  383. }