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.

CarlaPipeUtils.hpp 9.7KB

11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
6 years ago
6 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
11 years ago
11 years ago
11 years ago
10 years ago
11 years ago
10 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356
  1. /*
  2. * Carla Pipe utils
  3. * Copyright (C) 2013-2018 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. #ifndef CARLA_PIPE_UTILS_HPP_INCLUDED
  18. #define CARLA_PIPE_UTILS_HPP_INCLUDED
  19. #include "CarlaJuceUtils.hpp"
  20. #include "CarlaMutex.hpp"
  21. #ifdef BUILDING_CARLA
  22. # include "lv2/atom.h"
  23. #else
  24. # include "lv2/lv2plug.in/ns/ext/atom/atom.h"
  25. #endif
  26. // -----------------------------------------------------------------------
  27. // CarlaPipeCommon class
  28. class CarlaPipeCommon
  29. {
  30. protected:
  31. /*!
  32. * Constructor.
  33. */
  34. CarlaPipeCommon() noexcept;
  35. /*!
  36. * Destructor.
  37. */
  38. virtual ~CarlaPipeCommon() /*noexcept*/;
  39. /*!
  40. * A message has been received (in the context of idlePipe()).
  41. * If extra data is required, use any of the readNextLineAs* functions.
  42. * Returning true means the message has been handled and should not propagate to subclasses.
  43. */
  44. virtual bool msgReceived(const char* msg) noexcept = 0;
  45. /*!
  46. * An error has occurred during the current requested operation.
  47. * Reimplementing this method allows to catch these errors as strings.
  48. * By default the error is simply printed to stderr.
  49. */
  50. virtual void fail(const char* error) noexcept
  51. {
  52. carla_stderr2(error);
  53. }
  54. public:
  55. /*!
  56. * Check if the pipe is running.
  57. */
  58. bool isPipeRunning() const noexcept;
  59. /*!
  60. * Check the pipe for new messages and send them to msgReceived().
  61. */
  62. void idlePipe(bool onlyOnce = false) noexcept;
  63. // -------------------------------------------------------------------
  64. // write lock
  65. /*!
  66. * Lock the pipe write mutex.
  67. */
  68. void lockPipe() const noexcept;
  69. /*!
  70. * Try locking the pipe write mutex.
  71. * Returns true if successful.
  72. */
  73. bool tryLockPipe() const noexcept;
  74. /*!
  75. * Unlock the pipe write mutex.
  76. */
  77. void unlockPipe() const noexcept;
  78. /*!
  79. * Get the pipe write lock.
  80. */
  81. CarlaMutex& getPipeLock() const noexcept;
  82. // -------------------------------------------------------------------
  83. // read lines, must only be called in the context of msgReceived()
  84. /*!
  85. * Read the next line as a boolean.
  86. */
  87. bool readNextLineAsBool(bool& value) const noexcept;
  88. /*!
  89. * Read the next line as a byte.
  90. */
  91. bool readNextLineAsByte(uint8_t& value) const noexcept;
  92. /*!
  93. * Read the next line as an integer.
  94. */
  95. bool readNextLineAsInt(int32_t& value) const noexcept;
  96. /*!
  97. * Read the next line as an unsigned integer.
  98. */
  99. bool readNextLineAsUInt(uint32_t& value) const noexcept;
  100. /*!
  101. * Read the next line as a long integer.
  102. */
  103. bool readNextLineAsLong(int64_t& value) const noexcept;
  104. /*!
  105. * Read the next line as a long unsigned integer.
  106. */
  107. bool readNextLineAsULong(uint64_t& value) const noexcept;
  108. /*!
  109. * Read the next line as a floating point number (single precision).
  110. */
  111. bool readNextLineAsFloat(float& value) const noexcept;
  112. /*!
  113. * Read the next line as a floating point number (double precision).
  114. */
  115. bool readNextLineAsDouble(double& value) const noexcept;
  116. /*!
  117. * Read the next line as a string.
  118. * @note: @a value must be deleted if valid.
  119. */
  120. bool readNextLineAsString(const char*& value, bool allocateString, uint32_t size = 0) const noexcept;
  121. // -------------------------------------------------------------------
  122. // write messages, must be locked before calling
  123. /*!
  124. * Write a valid message with unknown size.
  125. * A valid message has only one '\n' character and it's at the end.
  126. */
  127. bool writeMessage(const char* msg) const noexcept;
  128. /*!
  129. * Write a valid message with known size.
  130. * A valid message has only one '\n' character and it's at the end.
  131. */
  132. bool writeMessage(const char* msg, std::size_t size) const noexcept;
  133. /*!
  134. * Write and fix a message.
  135. */
  136. bool writeAndFixMessage(const char* msg) const noexcept;
  137. /*!
  138. * Write an empty message, which means a single '\n'.
  139. */
  140. bool writeEmptyMessage() const noexcept;
  141. /*!
  142. * Flush all messages currently in cache.
  143. */
  144. bool flushMessages() const noexcept;
  145. // -------------------------------------------------------------------
  146. // write prepared messages, no lock or flush needed (done internally)
  147. /*!
  148. * Write an "error" message.
  149. */
  150. bool writeErrorMessage(const char* error) const noexcept;
  151. /*!
  152. * Write a "control" message used for parameter/control changes.
  153. */
  154. bool writeControlMessage(uint32_t index, float value, bool withWriteLock = true) const noexcept;
  155. /*!
  156. * Write a "configure" message used for state changes.
  157. */
  158. bool writeConfigureMessage(const char* key, const char* value) const noexcept;
  159. /*!
  160. * Write a "program" message (using index).
  161. */
  162. bool writeProgramMessage(uint32_t index) const noexcept;
  163. /*!
  164. * Write a "program" message (using channel, bank and program).
  165. */
  166. bool writeProgramMessage(uint8_t channel, uint32_t bank, uint32_t program) const noexcept;
  167. /*!
  168. * Write a "midiprogram" message (using bank and program).
  169. */
  170. bool writeMidiProgramMessage(uint32_t bank, uint32_t program) const noexcept;
  171. /*!
  172. * Write a "reloadprograms" message.
  173. */
  174. bool writeReloadProgramsMessage(int32_t index) const noexcept;
  175. /*!
  176. * Write a MIDI "note" message.
  177. */
  178. bool writeMidiNoteMessage(bool onOff, uint8_t channel, uint8_t note, uint8_t velocity) const noexcept;
  179. /*!
  180. * Write an lv2 "atom" message.
  181. */
  182. bool writeLv2AtomMessage(uint32_t index, const LV2_Atom* atom) const noexcept;
  183. /*!
  184. * Write an lv2 "parameter" message.
  185. */
  186. bool writeLv2ParameterMessage(const char* uri, float value, bool withWriteLock = true) const noexcept;
  187. /*!
  188. * Write an lv2 "urid" message.
  189. */
  190. bool writeLv2UridMessage(uint32_t urid, const char* uri) const noexcept;
  191. // -------------------------------------------------------------------
  192. protected:
  193. struct PrivateData;
  194. PrivateData* const pData;
  195. // -------------------------------------------------------------------
  196. /*! @internal */
  197. const char* _readline(bool allocReturn, uint16_t size, bool& readSucess) const noexcept;
  198. /*! @internal */
  199. const char* _readlineblock(bool allocReturn, uint16_t size = 0, uint32_t timeOutMilliseconds = 50) const noexcept;
  200. /*! @internal */
  201. bool _writeMsgBuffer(const char* msg, std::size_t size) const noexcept;
  202. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPipeCommon)
  203. };
  204. // -----------------------------------------------------------------------
  205. // CarlaPipeServer class
  206. class CarlaPipeServer : public CarlaPipeCommon
  207. {
  208. public:
  209. /*!
  210. * Constructor.
  211. */
  212. CarlaPipeServer() noexcept;
  213. /*!
  214. * Destructor.
  215. */
  216. ~CarlaPipeServer() /*noexcept*/ override;
  217. /*!
  218. * Get the process ID of this pipe's matching client.
  219. * Will return 0 if client is not running.
  220. * @note: Unsupported on Windows
  221. */
  222. uintptr_t getPID() const noexcept;
  223. /*!
  224. * Start the pipe server using @a filename with 2 arguments.
  225. * @see fail()
  226. */
  227. bool startPipeServer(const char* const filename, const char* const arg1, const char* const arg2, const int size = -1) noexcept;
  228. /*!
  229. * Stop the pipe server.
  230. * This will send a quit message to the client, wait for it to close for @a timeOutMilliseconds, and close the pipes.
  231. */
  232. void stopPipeServer(const uint32_t timeOutMilliseconds) noexcept;
  233. /*!
  234. * Close the pipes without waiting for the child process to terminate.
  235. */
  236. void closePipeServer() noexcept;
  237. // -------------------------------------------------------------------
  238. // write prepared messages, no lock or flush needed (done internally)
  239. /*!
  240. * Write a single "show" message.
  241. */
  242. void writeShowMessage() const noexcept;
  243. /*!
  244. * Write a single "focus" message.
  245. */
  246. void writeFocusMessage() const noexcept;
  247. /*!
  248. * Write a single "hide" message.
  249. */
  250. void writeHideMessage() const noexcept;
  251. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPipeServer)
  252. };
  253. // -----------------------------------------------------------------------
  254. // CarlaPipeClient class
  255. class CarlaPipeClient : public CarlaPipeCommon
  256. {
  257. public:
  258. /*!
  259. * Constructor.
  260. */
  261. CarlaPipeClient() noexcept;
  262. /*!
  263. * Destructor.
  264. */
  265. ~CarlaPipeClient() /*noexcept*/ override;
  266. /*!
  267. * Initialize the pipes used by a server.
  268. * @a argv must match the arguments set the by server.
  269. */
  270. bool initPipeClient(const char* argv[]) noexcept;
  271. /*!
  272. * Close the pipes.
  273. */
  274. void closePipeClient() noexcept;
  275. // -------------------------------------------------------------------
  276. // write prepared messages, no lock or flush needed (done internally)
  277. /*!
  278. * Write a single "exiting" message and wait for server to respond.
  279. */
  280. void writeExitingMessageAndWait() noexcept;
  281. CARLA_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(CarlaPipeClient)
  282. };
  283. // -----------------------------------------------------------------------
  284. #endif // CARLA_PIPE_UTILS_HPP_INCLUDED