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.

346 lines
8.6KB

  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 && std::strcmp(msg, "urid") != 0 && std::strcmp(msg, "uiOptions") != 0)
  91. {
  92. carla_stderr2("CarlaBridgeUI::msgReceived(\"%s\") - invalid message while waiting for options", msg);
  93. return true;
  94. }
  95. if (fLastMsgTimer > 0)
  96. --fLastMsgTimer;
  97. if (std::strcmp(msg, "control") == 0)
  98. {
  99. uint32_t index;
  100. float value;
  101. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  102. CARLA_SAFE_ASSERT_RETURN(readNextLineAsFloat(value), true);
  103. dspParameterChanged(index, value);
  104. return true;
  105. }
  106. if (std::strcmp(msg, "program") == 0)
  107. {
  108. uint32_t index;
  109. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  110. dspProgramChanged(index);
  111. return true;
  112. }
  113. if (std::strcmp(msg, "midiprogram") == 0)
  114. {
  115. uint32_t bank, program;
  116. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(bank), true);
  117. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(program), true);
  118. dspMidiProgramChanged(bank, program);
  119. return true;
  120. }
  121. if (std::strcmp(msg, "configure") == 0)
  122. {
  123. const char* key;
  124. const char* value;
  125. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(key), true);
  126. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(value), true);
  127. dspStateChanged(key, value);
  128. delete[] key;
  129. delete[] value;
  130. return true;
  131. }
  132. if (std::strcmp(msg, "note") == 0)
  133. {
  134. bool onOff;
  135. uint8_t channel, note, velocity;
  136. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(onOff), true);
  137. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(channel), true);
  138. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(note), true);
  139. CARLA_SAFE_ASSERT_RETURN(readNextLineAsByte(velocity), true);
  140. dspNoteReceived(onOff, channel, note, velocity);
  141. return true;
  142. }
  143. if (std::strcmp(msg, "atom") == 0)
  144. {
  145. uint32_t index, atomTotalSize;
  146. const char* base64atom;
  147. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(index), true);
  148. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(atomTotalSize), true);
  149. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(base64atom), true);
  150. std::vector<uint8_t> chunk(carla_getChunkFromBase64String(base64atom));
  151. delete[] base64atom;
  152. CARLA_SAFE_ASSERT_RETURN(chunk.size() >= sizeof(LV2_Atom), true);
  153. const LV2_Atom* const atom((const LV2_Atom*)chunk.data());
  154. const uint32_t atomTotalSizeCheck(lv2_atom_total_size(atom));
  155. CARLA_SAFE_ASSERT_RETURN(atomTotalSizeCheck == atomTotalSize, true);
  156. CARLA_SAFE_ASSERT_RETURN(atomTotalSizeCheck == chunk.size(), true);
  157. dspAtomReceived(index, atom);
  158. return true;
  159. }
  160. if (std::strcmp(msg, "urid") == 0)
  161. {
  162. uint32_t urid;
  163. const char* uri;
  164. CARLA_SAFE_ASSERT_RETURN(readNextLineAsUInt(urid), true);
  165. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(uri), true);
  166. if (urid != 0)
  167. dspURIDReceived(urid, uri);
  168. delete[] uri;
  169. return true;
  170. }
  171. if (std::strcmp(msg, "uiOptions") == 0)
  172. {
  173. double sampleRate;
  174. bool useTheme, useThemeColors;
  175. const char* windowTitle;
  176. uint64_t transientWindowId;
  177. CARLA_SAFE_ASSERT_RETURN(readNextLineAsDouble(sampleRate), true);
  178. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(useTheme), true);
  179. CARLA_SAFE_ASSERT_RETURN(readNextLineAsBool(useThemeColors), true);
  180. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(windowTitle), true);
  181. CARLA_SAFE_ASSERT_RETURN(readNextLineAsULong(transientWindowId), true);
  182. fGotOptions = true;
  183. uiOptionsChanged(sampleRate, useTheme, useThemeColors, windowTitle, static_cast<uintptr_t>(transientWindowId));
  184. delete[] windowTitle;
  185. return true;
  186. }
  187. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr, true);
  188. if (std::strcmp(msg, "show") == 0)
  189. {
  190. fToolkit->show();
  191. return true;
  192. }
  193. if (std::strcmp(msg, "focus") == 0)
  194. {
  195. fToolkit->focus();
  196. return true;
  197. }
  198. if (std::strcmp(msg, "hide") == 0)
  199. {
  200. fToolkit->hide();
  201. return true;
  202. }
  203. if (std::strcmp(msg, "quit") == 0)
  204. {
  205. fQuitReceived = true;
  206. fToolkit->quit();
  207. delete fToolkit;
  208. fToolkit = nullptr;
  209. return true;
  210. }
  211. if (std::strcmp(msg, "uiTitle") == 0)
  212. {
  213. const char* title;
  214. CARLA_SAFE_ASSERT_RETURN(readNextLineAsString(title), true);
  215. fToolkit->setTitle(title);
  216. delete[] title;
  217. return true;
  218. }
  219. carla_stderr("CarlaBridgeUI::msgReceived : %s", msg);
  220. return false;
  221. }
  222. // ---------------------------------------------------------------------
  223. bool CarlaBridgeUI::init(const int argc, const char* argv[])
  224. {
  225. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr, false);
  226. if (argc == 7)
  227. {
  228. if (! initPipeClient(argv))
  229. return false;
  230. fLastMsgTimer = 0;
  231. // wait for ui options
  232. for (; ++fLastMsgTimer < 50 && ! fGotOptions;)
  233. {
  234. idlePipe(true);
  235. carla_msleep(20);
  236. }
  237. if (! fGotOptions)
  238. {
  239. carla_stderr2("CarlaBridgeUI::init() - did not get options on time, quitting...");
  240. {
  241. const CarlaMutexLocker cml(getPipeLock());
  242. writeMessage("exiting\n", 8);
  243. flushMessages();
  244. }
  245. closePipeClient();
  246. return false;
  247. }
  248. }
  249. if (! fToolkit->init(argc, argv))
  250. {
  251. if (argc == 7)
  252. closePipeClient();
  253. return false;
  254. }
  255. return true;
  256. }
  257. void CarlaBridgeUI::exec(const bool showUI)
  258. {
  259. CARLA_SAFE_ASSERT_RETURN(fToolkit != nullptr,);
  260. fToolkit->exec(showUI);
  261. }
  262. // ---------------------------------------------------------------------
  263. CARLA_BRIDGE_END_NAMESPACE
  264. #include "CarlaPipeUtils.cpp"
  265. // ---------------------------------------------------------------------