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.

496 lines
14KB

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