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.

661 lines
23KB

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