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.

340 lines
8.3KB

  1. /*
  2. * Carla Bridge UI
  3. * Copyright (C) 2011-2014 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 "CarlaBridgeUI.hpp"
  18. #include "CarlaMIDI.h"
  19. #include "CarlaBase64Utils.hpp"
  20. // needed for atom-util
  21. #ifndef nullptr
  22. # undef NULL
  23. # define NULL nullptr
  24. #endif
  25. #include "lv2/atom-util.h"
  26. CARLA_BRIDGE_START_NAMESPACE
  27. // ---------------------------------------------------------------------
  28. CarlaBridgeUI::CarlaBridgeUI() noexcept
  29. : CarlaPipeClient(),
  30. fQuitReceived(false),
  31. fGotOptions(false),
  32. fLastMsgTimer(-1),
  33. fToolkit(nullptr),
  34. fLib(nullptr),
  35. fLibFilename()
  36. {
  37. carla_debug("CarlaBridgeUI::CarlaBridgeUI()");
  38. try {
  39. fToolkit = CarlaBridgeToolkit::createNew(this);
  40. } CARLA_SAFE_EXCEPTION_RETURN("CarlaBridgeToolkit::createNew",);
  41. }
  42. CarlaBridgeUI::~CarlaBridgeUI() /*noexcept*/
  43. {
  44. carla_debug("CarlaBridgeUI::~CarlaBridgeUI()");
  45. if (fLib != nullptr)
  46. {
  47. lib_close(fLib);
  48. fLib = nullptr;
  49. }
  50. if (isPipeRunning() && ! fQuitReceived)
  51. {
  52. const CarlaMutexLocker cml(getPipeLock());
  53. writeMessage("exiting\n", 8);
  54. flushMessages();
  55. }
  56. if (fToolkit != nullptr)
  57. {
  58. fToolkit->quit();
  59. delete fToolkit;
  60. fToolkit = nullptr;
  61. }
  62. closePipeClient();
  63. }
  64. // ---------------------------------------------------------------------
  65. bool CarlaBridgeUI::libOpen(const char* const filename) noexcept
  66. {
  67. CARLA_SAFE_ASSERT_RETURN(fLib == nullptr, false);
  68. fLib = lib_open(filename);
  69. if (fLib != nullptr)
  70. {
  71. fLibFilename = filename;
  72. return true;
  73. }
  74. return false;
  75. }
  76. void* CarlaBridgeUI::libSymbol(const char* const symbol) const noexcept
  77. {
  78. CARLA_SAFE_ASSERT_RETURN(fLib != nullptr, nullptr);
  79. return lib_symbol<void*>(fLib, symbol);
  80. }
  81. const char* CarlaBridgeUI::libError() const noexcept
  82. {
  83. CARLA_SAFE_ASSERT_RETURN(fLibFilename.isNotEmpty(), nullptr);
  84. return lib_error(fLibFilename);
  85. }
  86. // ---------------------------------------------------------------------
  87. bool CarlaBridgeUI::msgReceived(const char* const msg) noexcept
  88. {
  89. carla_debug("CarlaBridgeUI::msgReceived(\"%s\")", msg);
  90. if (! fGotOptions) {
  91. CARLA_SAFE_ASSERT_RETURN(std::strcmp(msg, "urid") == 0 || std::strcmp(msg, "uiOptions") == 0, true);
  92. }
  93. if (fLastMsgTimer > 0)
  94. --fLastMsgTimer;
  95. if (std::strcmp(msg, "control") == 0)
  96. {
  97. uint32_t index;
  98. float value;
  99. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  100. CARLA_SAFE_ASSERT_RETURN(readNextLineAsFloat(value), true);
  101. dspParameterChanged(index, value);
  102. return true;
  103. }
  104. if (std::strcmp(msg, "program") == 0)
  105. {
  106. uint32_t index;
  107. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  108. dspProgramChanged(index);
  109. return true;
  110. }
  111. if (std::strcmp(msg, "midiprogram") == 0)
  112. {
  113. uint32_t bank, program;
  114. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(bank), true);
  115. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(program), true);
  116. dspMidiProgramChanged(bank, program);
  117. return true;
  118. }
  119. if (std::strcmp(msg, "configure") == 0)
  120. {
  121. const char* key;
  122. const char* value;
  123. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(key), true);
  124. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(value), true);
  125. dspStateChanged(key, value);
  126. delete[] key;
  127. delete[] value;
  128. return true;
  129. }
  130. if (std::strcmp(msg, "note") == 0)
  131. {
  132. bool onOff;
  133. uint8_t channel, note, velocity;
  134. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(onOff), true);
  135. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(channel), true);
  136. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(note), true);
  137. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(velocity), true);
  138. dspNoteReceived(onOff, channel, note, velocity);
  139. }
  140. if (std::strcmp(msg, "atom") == 0)
  141. {
  142. uint32_t index, size;
  143. const char* base64atom;
  144. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  145. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(size), true);
  146. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(base64atom), true);
  147. std::vector<uint8_t> chunk(carla_getChunkFromBase64String(base64atom));
  148. delete[] base64atom;
  149. CARLA_SAFE_ASSERT_RETURN(chunk.size() >= sizeof(LV2_Atom), true);
  150. const LV2_Atom* const atom((const LV2_Atom*)chunk.data());
  151. CARLA_SAFE_ASSERT_RETURN(lv2_atom_total_size(atom) == chunk.size(), true);
  152. dspAtomReceived(index, atom);
  153. return true;
  154. }
  155. if (std::strcmp(msg, "urid") == 0)
  156. {
  157. uint32_t urid;
  158. const char* uri;
  159. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(urid), true);
  160. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(uri), true);
  161. if (urid != 0)
  162. dspURIDReceived(urid, uri);
  163. delete[] uri;
  164. return true;
  165. }
  166. if (std::strcmp(msg, "uiOptions") == 0)
  167. {
  168. double sampleRate;
  169. bool useTheme, useThemeColors;
  170. const char* windowTitle;
  171. uint64_t transientWindowId;
  172. CARLA_SAFE_ASSERT_RETURN(readNextLineAsDouble(sampleRate), true);
  173. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(useTheme), true);
  174. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(useThemeColors), true);
  175. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(windowTitle), true);
  176. CARLA_SAFE_ASSERT_RETURN(readNextLineAsULong(transientWindowId), true);
  177. fGotOptions = true;
  178. uiOptionsChanged(sampleRate, useTheme, useThemeColors, windowTitle, static_cast<uintptr_t>(transientWindowId));
  179. delete[] windowTitle;
  180. return true;
  181. }
  182. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr, true);
  183. if (std::strcmp(msg, "show") == 0)
  184. {
  185. fToolkit->show();
  186. return true;
  187. }
  188. if (std::strcmp(msg, "focus") == 0)
  189. {
  190. fToolkit->focus();
  191. return true;
  192. }
  193. if (std::strcmp(msg, "hide") == 0)
  194. {
  195. fToolkit->hide();
  196. return true;
  197. }
  198. if (std::strcmp(msg, "quit") == 0)
  199. {
  200. fQuitReceived = true;
  201. fToolkit->quit();
  202. delete fToolkit;
  203. fToolkit = nullptr;
  204. return true;
  205. }
  206. if (std::strcmp(msg, "uiTitle") == 0)
  207. {
  208. const char* title;
  209. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(title), true);
  210. fToolkit->setTitle(title);
  211. delete[] title;
  212. return true;
  213. }
  214. carla_stderr("CarlaBridgeUI::msgReceived : %s", msg);
  215. return false;
  216. }
  217. // ---------------------------------------------------------------------
  218. bool CarlaBridgeUI::init(const int argc, const char* argv[])
  219. {
  220. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr, false);
  221. if (argc == 7)
  222. {
  223. if (! initPipeClient(argv))
  224. return false;
  225. fLastMsgTimer = 0;
  226. // wait for ui options
  227. for (; ++fLastMsgTimer < 50 && ! fGotOptions;)
  228. {
  229. idlePipe(true);
  230. carla_msleep(20);
  231. }
  232. if (! fGotOptions)
  233. {
  234. carla_stderr2("CarlaBridgeUI::init() - did not get options on time, quitting...");
  235. {
  236. const CarlaMutexLocker cml(getPipeLock());
  237. writeMessage("exiting\n", 8);
  238. flushMessages();
  239. }
  240. closePipeClient();
  241. return false;
  242. }
  243. }
  244. if (! fToolkit->init(argc, argv))
  245. {
  246. if (argc == 7)
  247. closePipeClient();
  248. return false;
  249. }
  250. return true;
  251. }
  252. void CarlaBridgeUI::exec(const bool showUI)
  253. {
  254. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr,);
  255. fToolkit->exec(showUI);
  256. }
  257. // ---------------------------------------------------------------------
  258. CARLA_BRIDGE_END_NAMESPACE
  259. #include "CarlaPipeUtils.cpp"
  260. // ---------------------------------------------------------------------