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.

595 lines
20KB

  1. /*
  2. * Carla Standalone
  3. * Copyright (C) 2011-2015 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. #include "CarlaDefines.h"
  18. #ifdef HAVE_LIBLO
  19. #define NSM_API_VERSION_MAJOR 1
  20. #define NSM_API_VERSION_MINOR 2
  21. #define NSM_CLIENT_FEATURES ":switch:"
  22. //#define NSM_CLIENT_FEATURES ":switch:optional-gui:"
  23. #include "CarlaHost.h"
  24. #include "CarlaOscUtils.hpp"
  25. #include "CarlaString.hpp"
  26. #include "juce_core.h"
  27. namespace CB = CarlaBackend;
  28. // -------------------------------------------------------------------------------------------------------------------
  29. struct CarlaBackendStandalone {
  30. CarlaEngine* engine;
  31. EngineCallbackFunc engineCallback;
  32. void* engineCallbackPtr;
  33. // ...
  34. };
  35. extern CarlaBackendStandalone gStandalone;
  36. // -------------------------------------------------------------------------------------------------------------------
  37. class CarlaNSM
  38. {
  39. public:
  40. CarlaNSM() noexcept
  41. : fReplyAddress(nullptr),
  42. fServer(nullptr),
  43. fServerThread(nullptr),
  44. fServerURL(nullptr),
  45. fClientNameId(),
  46. fProjectPath(),
  47. fHasBroadcast(false),
  48. fHasOptionalGui(false),
  49. fHasServerControl(false),
  50. fStarted(),
  51. fReadyActionOpen(true),
  52. fReadyActionSave(true) {}
  53. ~CarlaNSM()
  54. {
  55. CARLA_SAFE_ASSERT(fReadyActionOpen);
  56. CARLA_SAFE_ASSERT(fReadyActionSave);
  57. if (fServerThread != nullptr)
  58. {
  59. lo_server_thread_stop(fServerThread);
  60. lo_server_thread_free(fServerThread);
  61. fServerThread = nullptr;
  62. fServer = nullptr;
  63. }
  64. if (fServerURL != nullptr)
  65. {
  66. std::free(fServerURL);
  67. fServerURL = nullptr;
  68. }
  69. if (fReplyAddress != nullptr)
  70. {
  71. lo_address_free(fReplyAddress);
  72. fReplyAddress = nullptr;
  73. }
  74. }
  75. bool announce(const int pid, const char* const executableName)
  76. {
  77. CARLA_SAFE_ASSERT_RETURN(pid != 0, false);
  78. CARLA_SAFE_ASSERT_RETURN(executableName != nullptr && executableName[0] != '\0', false);
  79. const char* const NSM_URL(std::getenv("NSM_URL"));
  80. if (NSM_URL == nullptr)
  81. return false;
  82. const lo_address nsmAddress(lo_address_new_from_url(NSM_URL));
  83. CARLA_SAFE_ASSERT_RETURN(nsmAddress != nullptr, false);
  84. const int proto = lo_address_get_protocol(nsmAddress);
  85. if (fServerThread == nullptr)
  86. {
  87. // create new OSC server
  88. fServerThread = lo_server_thread_new_with_proto(nullptr, proto, _osc_error_handler);
  89. CARLA_SAFE_ASSERT_RETURN(fServerThread != nullptr, false);
  90. // register message handlers
  91. lo_server_thread_add_method(fServerThread, "/error", "sis", _error_handler, this);
  92. lo_server_thread_add_method(fServerThread, "/reply", "ssss", _reply_handler, this);
  93. lo_server_thread_add_method(fServerThread, "/nsm/client/open", "sss", _open_handler, this);
  94. lo_server_thread_add_method(fServerThread, "/nsm/client/save", "", _save_handler, this);
  95. lo_server_thread_add_method(fServerThread, "/nsm/client/session_is_loaded", "", _loaded_handler, this);
  96. lo_server_thread_add_method(fServerThread, "/nsm/client/show_optional_gui", "", _show_gui_handler, this);
  97. lo_server_thread_add_method(fServerThread, "/nsm/client/hide_optional_gui", "", _hide_gui_handler, this);
  98. lo_server_thread_add_method(fServerThread, nullptr, nullptr, _broadcast_handler, this);
  99. fServer = lo_server_thread_get_server(fServerThread);
  100. fServerURL = lo_server_thread_get_url(fServerThread);
  101. }
  102. lo_send_from(nsmAddress, fServer, LO_TT_IMMEDIATE, "/nsm/server/announce", "sssiii",
  103. "Carla", NSM_CLIENT_FEATURES, executableName, NSM_API_VERSION_MAJOR, NSM_API_VERSION_MINOR, pid);
  104. lo_address_free(nsmAddress);
  105. return true;
  106. }
  107. void ready(const int action)
  108. {
  109. CARLA_SAFE_ASSERT_RETURN(fServerThread != nullptr,);
  110. switch (action)
  111. {
  112. case -1: // init
  113. CARLA_SAFE_ASSERT_BREAK(! fStarted);
  114. fStarted = true;
  115. lo_server_thread_start(fServerThread);
  116. break;
  117. case 0: // error
  118. break;
  119. case 1: // reply
  120. break;
  121. case 2: // open
  122. fReadyActionOpen = true;
  123. break;
  124. case 3: // save
  125. fReadyActionSave = true;
  126. break;
  127. case 4: // session loaded
  128. break;
  129. case 5: // show gui
  130. CARLA_SAFE_ASSERT_BREAK(fReplyAddress != nullptr);
  131. CARLA_SAFE_ASSERT_BREAK(fServer != nullptr);
  132. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/nsm/client/gui_is_shown", "");
  133. break;
  134. case 6: // hide gui
  135. CARLA_SAFE_ASSERT_BREAK(fReplyAddress != nullptr);
  136. CARLA_SAFE_ASSERT_BREAK(fServer != nullptr);
  137. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/nsm/client/gui_is_hidden", "");
  138. break;
  139. }
  140. }
  141. static CarlaNSM& getInstance()
  142. {
  143. static CarlaNSM sInstance;
  144. return sInstance;
  145. }
  146. protected:
  147. int handleError(const char* const method, const int code, const char* const message)
  148. {
  149. carla_stdout("CarlaNSM::handleError(\"%s\", %i, \"%s\")", method, code, message);
  150. if (gStandalone.engineCallback != nullptr)
  151. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 0, code, 0.0f, message);
  152. return 1;
  153. // may be unused
  154. (void)method;
  155. }
  156. int handleReply(const char* const method, const char* const message, const char* const smName, const char* const features,
  157. const lo_message msg)
  158. {
  159. CARLA_SAFE_ASSERT_RETURN(fServerThread != nullptr, 1);
  160. carla_stdout("CarlaNSM::handleReply(\"%s\", \"%s\", \"%s\", \"%s\")", method, message, smName, features);
  161. if (std::strcmp(method, "/nsm/server/announce") == 0)
  162. {
  163. const lo_address msgAddress(lo_message_get_source(msg));
  164. CARLA_SAFE_ASSERT_RETURN(msgAddress != nullptr, 0);
  165. char* const msgURL(lo_address_get_url(msgAddress));
  166. CARLA_SAFE_ASSERT_RETURN(msgURL != nullptr, 0);
  167. if (fReplyAddress != nullptr)
  168. lo_address_free(fReplyAddress);
  169. fReplyAddress = lo_address_new_from_url(msgURL);
  170. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 0);
  171. fHasBroadcast = std::strstr(features, ":broadcast:") != nullptr;
  172. fHasOptionalGui = std::strstr(features, ":optional-gui:") != nullptr;
  173. fHasServerControl = std::strstr(features, ":server_control:") != nullptr;
  174. // UI starts visible
  175. if (fHasOptionalGui)
  176. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/nsm/client/gui_is_shown", "");
  177. carla_stdout("Carla started via '%s', message: %s", smName, message);
  178. if (gStandalone.engineCallback != nullptr)
  179. {
  180. int flags = 0;
  181. if (fHasBroadcast)
  182. flags |= 1 << 0;
  183. if (fHasOptionalGui)
  184. flags |= 1 << 1;
  185. if (fHasServerControl)
  186. flags |= 1 << 2;
  187. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 1, flags, 0.0f, smName);
  188. }
  189. }
  190. else
  191. {
  192. carla_stdout("Got unknown NSM reply method '%s'", method);
  193. }
  194. return 0;
  195. }
  196. int handleOpen(const char* const projectPath, const char* const displayName, const char* const clientNameId)
  197. {
  198. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  199. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  200. carla_stdout("CarlaNSM::handleOpen(\"%s\", \"%s\", \"%s\")", projectPath, displayName, clientNameId);
  201. if (gStandalone.engineCallback != nullptr)
  202. {
  203. fReadyActionOpen = false;
  204. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 2, 0, 0.0f, projectPath);
  205. for (; ! fReadyActionOpen;)
  206. carla_msleep(10);
  207. }
  208. else
  209. {
  210. using namespace juce;
  211. if (carla_is_engine_running())
  212. carla_engine_close();
  213. carla_engine_init("JACK", clientNameId);
  214. fProjectPath = projectPath;
  215. fProjectPath += ".carxp";
  216. const String jfilename = String(CharPointer_UTF8(fProjectPath));
  217. if (File(jfilename).existsAsFile())
  218. carla_load_project(fProjectPath);
  219. }
  220. fClientNameId = clientNameId;
  221. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/reply", "ss", "/nsm/client/open", "OK");
  222. // Broadcast ourselves
  223. if (fHasBroadcast)
  224. {
  225. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/nsm/server/broadcast", "sssss",
  226. "/non/hello", fServerURL, "Carla", CARLA_VERSION_STRING, fClientNameId.buffer());
  227. }
  228. return 0;
  229. }
  230. int handleSave()
  231. {
  232. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  233. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  234. carla_stdout("CarlaNSM::handleSave()");
  235. if (gStandalone.engineCallback != nullptr)
  236. {
  237. fReadyActionSave = false;
  238. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 3, 0, 0.0f, nullptr);
  239. for (; ! fReadyActionSave;)
  240. carla_msleep(10);
  241. }
  242. else
  243. {
  244. CARLA_SAFE_ASSERT_RETURN(fProjectPath.isNotEmpty(), 0);
  245. carla_save_project(fProjectPath);
  246. }
  247. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/reply", "ss", "/nsm/client/save", "OK");
  248. return 0;
  249. }
  250. int handleSessionIsLoaded()
  251. {
  252. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  253. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  254. carla_stdout("CarlaNSM::handleSessionIsLoaded()");
  255. if (gStandalone.engineCallback != nullptr)
  256. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 4, 0, 0.0f, nullptr);
  257. return 0;
  258. }
  259. int handleShowOptionalGui()
  260. {
  261. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  262. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  263. carla_stdout("CarlaNSM::handleShowOptionalGui()");
  264. if (gStandalone.engineCallback != nullptr)
  265. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 5, 0, 0.0f, nullptr);
  266. return 0;
  267. }
  268. int handleHideOptionalGui()
  269. {
  270. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  271. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  272. carla_stdout("CarlaNSM::handleHideOptionalGui()");
  273. if (gStandalone.engineCallback != nullptr)
  274. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 6, 0, 0.0f, nullptr);
  275. return 0;
  276. }
  277. int handleBroadcast(const char* const path, const char* const types, lo_arg** const argv, const int argc,
  278. const lo_message msg)
  279. {
  280. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  281. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  282. CARLA_SAFE_ASSERT_RETURN(argc >= 0, 0);
  283. carla_stdout("CarlaNSM::handleBroadcast(%s, %s, %p, %i)", path, types, argv, argc);
  284. if (std::strcmp(path, "/non/hello") == 0)
  285. {
  286. CARLA_SAFE_ASSERT_RETURN(argc == 4, 0);
  287. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "ssss") == 0, 0);
  288. const char* const url = &argv[0]->s;
  289. //const char* const name = &argv[1]->s;
  290. //const char* const version = &argv[2]->s;
  291. //const char* const clientId = &argv[3]->s;
  292. const lo_address targetAddress(lo_address_new_from_url(url));
  293. CARLA_SAFE_ASSERT_RETURN(targetAddress != nullptr, 0);
  294. lo_send_from(targetAddress, fServer, LO_TT_IMMEDIATE, "/signal/hello", "ss",
  295. fClientNameId.buffer(), fServerURL);
  296. lo_address_free(targetAddress);
  297. return 0;
  298. }
  299. if (std::strcmp(path, "/signal/hello") == 0)
  300. {
  301. //const char* const name = &argv[0]->s;
  302. const char* const url = &argv[1]->s;
  303. const lo_address targetAddress(lo_address_new_from_url(url));
  304. CARLA_SAFE_ASSERT_RETURN(targetAddress != nullptr, 0);
  305. lo_send_from(targetAddress, fServer, LO_TT_IMMEDIATE, "/signal/hello", "ss",
  306. fClientNameId.buffer(), fServerURL);
  307. lo_address_free(targetAddress);
  308. return 0;
  309. }
  310. if (std::strcmp(path, "/signal/list") == 0)
  311. {
  312. carla_stdout("CarlaNSM::handleBroadcast - got list");
  313. CARLA_SAFE_ASSERT_RETURN(carla_is_engine_running(), 0);
  314. //const char* prefix = nullptr;
  315. //if (argc > 0)
  316. //prefix = &argv[0]->s;
  317. const lo_address msgAddress(lo_message_get_source(msg));
  318. CARLA_SAFE_ASSERT_RETURN(msgAddress != nullptr, 0);
  319. for (uint32_t i = 0, pluginCount = carla_get_current_plugin_count(); i < pluginCount; ++i)
  320. {
  321. const CarlaPluginInfo* const pluginInfo(carla_get_plugin_info(i));
  322. CARLA_SAFE_ASSERT_CONTINUE(pluginInfo != nullptr);
  323. /*const*/ CarlaString pluginNameId(fClientNameId + "/" + CarlaString(pluginInfo->name).toBasic() + "/");
  324. for (uint32_t j=0, paramCount = carla_get_parameter_count(i); j < paramCount; ++j)
  325. {
  326. const CarlaParameterInfo* const paramInfo(carla_get_parameter_info(i, j));
  327. CARLA_SAFE_ASSERT_CONTINUE(paramInfo != nullptr);
  328. const ParameterData* const paramData(carla_get_parameter_data(i, j));
  329. CARLA_SAFE_ASSERT_CONTINUE(paramData != nullptr);
  330. const ParameterRanges* const paramRanges(carla_get_parameter_ranges(i, j));
  331. CARLA_SAFE_ASSERT_CONTINUE(paramRanges != nullptr);
  332. if (paramData->type != CB::PARAMETER_INPUT && paramData->type != CB::PARAMETER_OUTPUT)
  333. continue;
  334. if ((paramData->hints & CB::PARAMETER_IS_ENABLED) == 0)
  335. continue;
  336. if ((paramData->hints & CB::PARAMETER_IS_AUTOMABLE) == 0)
  337. continue;
  338. if (paramData->hints & CB::PARAMETER_IS_READ_ONLY)
  339. continue;
  340. const char* const dir = paramData->type == CB::PARAMETER_INPUT ? "in" : "out";
  341. const CarlaString paramNameId = pluginNameId + CarlaString(paramInfo->name).toBasic();
  342. //if (prefix == nullptr || std::strncmp(paramNameId, prefix, std::strlen(prefix)) == 0)
  343. {
  344. lo_send_from(msgAddress, fServer, LO_TT_IMMEDIATE, "/reply", "sssfff",
  345. path, paramNameId.buffer(), dir, paramRanges->min, paramRanges->max, paramRanges->def);
  346. }
  347. }
  348. }
  349. lo_send_from(msgAddress, fServer, LO_TT_IMMEDIATE, "/reply", "s", path);
  350. //return 0;
  351. }
  352. for (int i=0; i<argc; ++i)
  353. if (types[i] == 's')
  354. carla_stdout("%i: %s", i+1, &argv[i]->s);
  355. return 0;
  356. }
  357. private:
  358. lo_address fReplyAddress;
  359. lo_server fServer;
  360. lo_server_thread fServerThread;
  361. char* fServerURL;
  362. CarlaString fClientNameId;
  363. CarlaString fProjectPath;
  364. bool fHasBroadcast;
  365. bool fHasOptionalGui;
  366. bool fHasServerControl;
  367. bool fStarted;
  368. volatile bool fReadyActionOpen;
  369. volatile bool fReadyActionSave;
  370. #define handlePtr ((CarlaNSM*)data)
  371. static void _osc_error_handler(int num, const char* msg, const char* path)
  372. {
  373. carla_stderr2("CarlaNSM::_osc_error_handler(%i, \"%s\", \"%s\")", num, msg, path);
  374. }
  375. static int _error_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message, void* data)
  376. {
  377. CARLA_SAFE_ASSERT_RETURN(argc == 3, 1);
  378. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "sis") == 0, 1);
  379. const char* const method = &argv[0]->s;
  380. const int code = argv[1]->i;
  381. const char* const message = &argv[2]->s;
  382. return handlePtr->handleError(method, code, message);
  383. }
  384. static int _reply_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message msg, void* data)
  385. {
  386. CARLA_SAFE_ASSERT_RETURN(argc == 4, 1);
  387. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "ssss") == 0, 1);
  388. const char* const method = &argv[0]->s;
  389. const char* const message = &argv[1]->s;
  390. const char* const smName = &argv[2]->s;
  391. const char* const features = &argv[3]->s;
  392. return handlePtr->handleReply(method, message, smName, features, msg);
  393. }
  394. static int _open_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message, void* data)
  395. {
  396. CARLA_SAFE_ASSERT_RETURN(argc == 3, 1);
  397. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "sss") == 0, 1);
  398. const char* const projectPath = &argv[0]->s;
  399. const char* const displayName = &argv[1]->s;
  400. const char* const clientNameId = &argv[2]->s;
  401. return handlePtr->handleOpen(projectPath, displayName, clientNameId);
  402. }
  403. static int _save_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  404. {
  405. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  406. return handlePtr->handleSave();
  407. }
  408. static int _loaded_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  409. {
  410. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  411. return handlePtr->handleSessionIsLoaded();
  412. }
  413. static int _show_gui_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  414. {
  415. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  416. return handlePtr->handleShowOptionalGui();
  417. }
  418. static int _hide_gui_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  419. {
  420. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  421. return handlePtr->handleHideOptionalGui();
  422. }
  423. static int _broadcast_handler(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* data)
  424. {
  425. return handlePtr->handleBroadcast(path, types, argv, argc, msg);
  426. }
  427. #undef handlePtr
  428. CARLA_PREVENT_HEAP_ALLOCATION
  429. CARLA_DECLARE_NON_COPY_CLASS(CarlaNSM)
  430. };
  431. #endif // HAVE_LIBLO
  432. // -------------------------------------------------------------------------------------------------------------------
  433. CARLA_EXPORT
  434. bool carla_nsm_init(int pid, const char* executableName);
  435. bool carla_nsm_init(int pid, const char* executableName)
  436. {
  437. #ifdef HAVE_LIBLO
  438. return CarlaNSM::getInstance().announce(pid, executableName);
  439. #else
  440. return false;
  441. // unused
  442. (void)pid; (void)executableName;
  443. #endif
  444. }
  445. CARLA_EXPORT
  446. void carla_nsm_ready(int action);
  447. void carla_nsm_ready(int action)
  448. {
  449. #ifdef HAVE_LIBLO
  450. CarlaNSM::getInstance().ready(action);
  451. #endif
  452. }
  453. // -------------------------------------------------------------------------------------------------------------------