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.

CarlaStandaloneNSM.cpp 20KB

9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
9 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598
  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. std::free(msgURL);
  190. }
  191. else
  192. {
  193. carla_stdout("Got unknown NSM reply method '%s'", method);
  194. }
  195. return 0;
  196. }
  197. int handleOpen(const char* const projectPath, const char* const displayName, const char* const clientNameId)
  198. {
  199. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  200. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  201. carla_stdout("CarlaNSM::handleOpen(\"%s\", \"%s\", \"%s\")", projectPath, displayName, clientNameId);
  202. if (gStandalone.engineCallback != nullptr)
  203. {
  204. fReadyActionOpen = false;
  205. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 2, 0, 0.0f, projectPath);
  206. for (; ! fReadyActionOpen;)
  207. carla_msleep(10);
  208. }
  209. else
  210. {
  211. using namespace juce;
  212. if (carla_is_engine_running())
  213. carla_engine_close();
  214. carla_engine_init("JACK", clientNameId);
  215. fProjectPath = projectPath;
  216. fProjectPath += ".carxp";
  217. const String jfilename = String(CharPointer_UTF8(fProjectPath));
  218. if (File(jfilename).existsAsFile())
  219. carla_load_project(fProjectPath);
  220. }
  221. fClientNameId = clientNameId;
  222. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/reply", "ss", "/nsm/client/open", "OK");
  223. // Broadcast ourselves
  224. if (fHasBroadcast)
  225. {
  226. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/nsm/server/broadcast", "sssss",
  227. "/non/hello", fServerURL, "Carla", CARLA_VERSION_STRING, fClientNameId.buffer());
  228. }
  229. return 0;
  230. }
  231. int handleSave()
  232. {
  233. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  234. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  235. carla_stdout("CarlaNSM::handleSave()");
  236. if (gStandalone.engineCallback != nullptr)
  237. {
  238. fReadyActionSave = false;
  239. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 3, 0, 0.0f, nullptr);
  240. for (; ! fReadyActionSave;)
  241. carla_msleep(10);
  242. }
  243. else
  244. {
  245. CARLA_SAFE_ASSERT_RETURN(fProjectPath.isNotEmpty(), 0);
  246. carla_save_project(fProjectPath);
  247. }
  248. lo_send_from(fReplyAddress, fServer, LO_TT_IMMEDIATE, "/reply", "ss", "/nsm/client/save", "OK");
  249. return 0;
  250. }
  251. int handleSessionIsLoaded()
  252. {
  253. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  254. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  255. carla_stdout("CarlaNSM::handleSessionIsLoaded()");
  256. if (gStandalone.engineCallback != nullptr)
  257. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 4, 0, 0.0f, nullptr);
  258. return 0;
  259. }
  260. int handleShowOptionalGui()
  261. {
  262. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  263. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  264. carla_stdout("CarlaNSM::handleShowOptionalGui()");
  265. if (gStandalone.engineCallback != nullptr)
  266. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 5, 0, 0.0f, nullptr);
  267. return 0;
  268. }
  269. int handleHideOptionalGui()
  270. {
  271. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  272. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  273. carla_stdout("CarlaNSM::handleHideOptionalGui()");
  274. if (gStandalone.engineCallback != nullptr)
  275. gStandalone.engineCallback(gStandalone.engineCallbackPtr, CB::ENGINE_CALLBACK_NSM, 0, 6, 0, 0.0f, nullptr);
  276. return 0;
  277. }
  278. int handleBroadcast(const char* const path, const char* const types, lo_arg** const argv, const int argc,
  279. const lo_message msg)
  280. {
  281. CARLA_SAFE_ASSERT_RETURN(fReplyAddress != nullptr, 1);
  282. CARLA_SAFE_ASSERT_RETURN(fServer != nullptr, 1);
  283. CARLA_SAFE_ASSERT_RETURN(argc >= 0, 0);
  284. carla_stdout("CarlaNSM::handleBroadcast(%s, %s, %p, %i)", path, types, argv, argc);
  285. if (std::strcmp(path, "/non/hello") == 0)
  286. {
  287. CARLA_SAFE_ASSERT_RETURN(argc == 4, 0);
  288. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "ssss") == 0, 0);
  289. const char* const url = &argv[0]->s;
  290. //const char* const name = &argv[1]->s;
  291. //const char* const version = &argv[2]->s;
  292. //const char* const clientId = &argv[3]->s;
  293. const lo_address targetAddress(lo_address_new_from_url(url));
  294. CARLA_SAFE_ASSERT_RETURN(targetAddress != nullptr, 0);
  295. lo_send_from(targetAddress, fServer, LO_TT_IMMEDIATE, "/signal/hello", "ss",
  296. fClientNameId.buffer(), fServerURL);
  297. lo_address_free(targetAddress);
  298. return 0;
  299. }
  300. if (std::strcmp(path, "/signal/hello") == 0)
  301. {
  302. //const char* const name = &argv[0]->s;
  303. const char* const url = &argv[1]->s;
  304. const lo_address targetAddress(lo_address_new_from_url(url));
  305. CARLA_SAFE_ASSERT_RETURN(targetAddress != nullptr, 0);
  306. lo_send_from(targetAddress, fServer, LO_TT_IMMEDIATE, "/signal/hello", "ss",
  307. fClientNameId.buffer(), fServerURL);
  308. lo_address_free(targetAddress);
  309. return 0;
  310. }
  311. if (std::strcmp(path, "/signal/list") == 0)
  312. {
  313. carla_stdout("CarlaNSM::handleBroadcast - got list");
  314. CARLA_SAFE_ASSERT_RETURN(carla_is_engine_running(), 0);
  315. const char* prefix = nullptr;
  316. if (argc > 0)
  317. prefix = &argv[0]->s;
  318. const lo_address msgAddress(lo_message_get_source(msg));
  319. CARLA_SAFE_ASSERT_RETURN(msgAddress != nullptr, 0);
  320. for (uint32_t i = 0, pluginCount = carla_get_current_plugin_count(); i < pluginCount; ++i)
  321. {
  322. const CarlaPluginInfo* const pluginInfo(carla_get_plugin_info(i));
  323. CARLA_SAFE_ASSERT_CONTINUE(pluginInfo != nullptr);
  324. /*const*/ CarlaString pluginNameId(fClientNameId + "/" + CarlaString(pluginInfo->name).replace('/','_') + "/");
  325. for (uint32_t j=0, paramCount = carla_get_parameter_count(i); j < paramCount; ++j)
  326. {
  327. const CarlaParameterInfo* const paramInfo(carla_get_parameter_info(i, j));
  328. CARLA_SAFE_ASSERT_CONTINUE(paramInfo != nullptr);
  329. const ParameterData* const paramData(carla_get_parameter_data(i, j));
  330. CARLA_SAFE_ASSERT_CONTINUE(paramData != nullptr);
  331. const ParameterRanges* const paramRanges(carla_get_parameter_ranges(i, j));
  332. CARLA_SAFE_ASSERT_CONTINUE(paramRanges != nullptr);
  333. if (paramData->type != CB::PARAMETER_INPUT /*&& paramData->type != CB::PARAMETER_OUTPUT*/)
  334. continue;
  335. if ((paramData->hints & CB::PARAMETER_IS_ENABLED) == 0)
  336. continue;
  337. if ((paramData->hints & CB::PARAMETER_IS_AUTOMABLE) == 0)
  338. continue;
  339. if (paramData->hints & CB::PARAMETER_IS_READ_ONLY)
  340. continue;
  341. const char* const dir = paramData->type == CB::PARAMETER_INPUT ? "in" : "out";
  342. const CarlaString paramNameId = pluginNameId + CarlaString(paramInfo->name).replace('/','_');
  343. const float defNorm = paramRanges->getNormalizedValue(paramRanges->def);
  344. if (prefix == nullptr || std::strncmp(paramNameId, prefix, std::strlen(prefix)) == 0)
  345. {
  346. lo_send_from(msgAddress, fServer, LO_TT_IMMEDIATE, "/reply", "sssfff",
  347. path, paramNameId.buffer(), dir, 0.0f, 1.0f, defNorm);
  348. }
  349. }
  350. }
  351. lo_send_from(msgAddress, fServer, LO_TT_IMMEDIATE, "/reply", "s", path);
  352. //return 0;
  353. }
  354. for (int i=0; i<argc; ++i)
  355. if (types[i] == 's')
  356. carla_stdout("%i: %s", i+1, &argv[i]->s);
  357. return 0;
  358. }
  359. private:
  360. lo_address fReplyAddress;
  361. lo_server fServer;
  362. lo_server_thread fServerThread;
  363. char* fServerURL;
  364. CarlaString fClientNameId;
  365. CarlaString fProjectPath;
  366. bool fHasBroadcast;
  367. bool fHasOptionalGui;
  368. bool fHasServerControl;
  369. bool fStarted;
  370. volatile bool fReadyActionOpen;
  371. volatile bool fReadyActionSave;
  372. #define handlePtr ((CarlaNSM*)data)
  373. static void _osc_error_handler(int num, const char* msg, const char* path)
  374. {
  375. carla_stderr2("CarlaNSM::_osc_error_handler(%i, \"%s\", \"%s\")", num, msg, path);
  376. }
  377. static int _error_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message, void* data)
  378. {
  379. CARLA_SAFE_ASSERT_RETURN(argc == 3, 1);
  380. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "sis") == 0, 1);
  381. const char* const method = &argv[0]->s;
  382. const int code = argv[1]->i;
  383. const char* const message = &argv[2]->s;
  384. return handlePtr->handleError(method, code, message);
  385. }
  386. static int _reply_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message msg, void* data)
  387. {
  388. CARLA_SAFE_ASSERT_RETURN(argc == 4, 1);
  389. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "ssss") == 0, 1);
  390. const char* const method = &argv[0]->s;
  391. const char* const message = &argv[1]->s;
  392. const char* const smName = &argv[2]->s;
  393. const char* const features = &argv[3]->s;
  394. return handlePtr->handleReply(method, message, smName, features, msg);
  395. }
  396. static int _open_handler(const char*, const char* types, lo_arg** argv, int argc, lo_message, void* data)
  397. {
  398. CARLA_SAFE_ASSERT_RETURN(argc == 3, 1);
  399. CARLA_SAFE_ASSERT_RETURN(std::strcmp(types, "sss") == 0, 1);
  400. const char* const projectPath = &argv[0]->s;
  401. const char* const displayName = &argv[1]->s;
  402. const char* const clientNameId = &argv[2]->s;
  403. return handlePtr->handleOpen(projectPath, displayName, clientNameId);
  404. }
  405. static int _save_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  406. {
  407. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  408. return handlePtr->handleSave();
  409. }
  410. static int _loaded_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  411. {
  412. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  413. return handlePtr->handleSessionIsLoaded();
  414. }
  415. static int _show_gui_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  416. {
  417. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  418. return handlePtr->handleShowOptionalGui();
  419. }
  420. static int _hide_gui_handler(const char*, const char*, lo_arg**, int argc, lo_message, void* data)
  421. {
  422. CARLA_SAFE_ASSERT_RETURN(argc == 0, 1);
  423. return handlePtr->handleHideOptionalGui();
  424. }
  425. static int _broadcast_handler(const char* path, const char* types, lo_arg** argv, int argc, lo_message msg, void* data)
  426. {
  427. return handlePtr->handleBroadcast(path, types, argv, argc, msg);
  428. }
  429. #undef handlePtr
  430. CARLA_PREVENT_HEAP_ALLOCATION
  431. CARLA_DECLARE_NON_COPY_CLASS(CarlaNSM)
  432. };
  433. #endif // HAVE_LIBLO
  434. // -------------------------------------------------------------------------------------------------------------------
  435. CARLA_EXPORT
  436. bool carla_nsm_init(int pid, const char* executableName);
  437. bool carla_nsm_init(int pid, const char* executableName)
  438. {
  439. #ifdef HAVE_LIBLO
  440. return CarlaNSM::getInstance().announce(pid, executableName);
  441. #else
  442. return false;
  443. // unused
  444. (void)pid; (void)executableName;
  445. #endif
  446. }
  447. CARLA_EXPORT
  448. void carla_nsm_ready(int action);
  449. void carla_nsm_ready(int action)
  450. {
  451. #ifdef HAVE_LIBLO
  452. CarlaNSM::getInstance().ready(action);
  453. #endif
  454. }
  455. // -------------------------------------------------------------------------------------------------------------------