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.

657 lines
22KB

  1. /*
  2. * Custom types to store LV2 information
  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. #ifndef LV2_RDF_HPP_INCLUDED
  18. #define LV2_RDF_HPP_INCLUDED
  19. #include "CarlaDefines.h"
  20. #ifdef CARLA_PROPER_CPP11_SUPPORT
  21. # include <cstdint>
  22. #else
  23. # include <stdint.h>
  24. #endif
  25. // Base Types
  26. typedef const char* LV2_URI;
  27. typedef uint32_t LV2_Property;
  28. // Port Midi Map Types
  29. #define LV2_PORT_MIDI_MAP_CC 1
  30. #define LV2_PORT_MIDI_MAP_NRPN 2
  31. #define LV2_IS_PORT_MIDI_MAP_CC(x) ((x) == LV2_PORT_MIDI_MAP_CC)
  32. #define LV2_IS_PORT_MIDI_MAP_NRPN(x) ((x) == LV2_PORT_MIDI_MAP_NRPN)
  33. // Port Point Hints
  34. #define LV2_PORT_POINT_DEFAULT 0x1
  35. #define LV2_PORT_POINT_MINIMUM 0x2
  36. #define LV2_PORT_POINT_MAXIMUM 0x4
  37. #define LV2_HAVE_DEFAULT_PORT_POINT(x) ((x) & LV2_PORT_POINT_DEFAULT)
  38. #define LV2_HAVE_MINIMUM_PORT_POINT(x) ((x) & LV2_PORT_POINT_MINIMUM)
  39. #define LV2_HAVE_MAXIMUM_PORT_POINT(x) ((x) & LV2_PORT_POINT_MAXIMUM)
  40. // Port Unit Hints
  41. #define LV2_PORT_UNIT_NAME 0x1
  42. #define LV2_PORT_UNIT_RENDER 0x2
  43. #define LV2_PORT_UNIT_SYMBOL 0x4
  44. #define LV2_PORT_UNIT_UNIT 0x8
  45. #define LV2_HAVE_PORT_UNIT_NAME(x) ((x) & LV2_PORT_UNIT_NAME)
  46. #define LV2_HAVE_PORT_UNIT_RENDER(x) ((x) & LV2_PORT_UNIT_RENDER)
  47. #define LV2_HAVE_PORT_UNIT_SYMBOL(x) ((x) & LV2_PORT_UNIT_SYMBOL)
  48. #define LV2_HAVE_PORT_UNIT_UNIT(x) ((x) & LV2_PORT_UNIT_UNIT)
  49. // Port Unit Unit
  50. #define LV2_PORT_UNIT_BAR 1
  51. #define LV2_PORT_UNIT_BEAT 2
  52. #define LV2_PORT_UNIT_BPM 3
  53. #define LV2_PORT_UNIT_CENT 4
  54. #define LV2_PORT_UNIT_CM 5
  55. #define LV2_PORT_UNIT_COEF 6
  56. #define LV2_PORT_UNIT_DB 7
  57. #define LV2_PORT_UNIT_DEGREE 8
  58. #define LV2_PORT_UNIT_FRAME 9
  59. #define LV2_PORT_UNIT_HZ 10
  60. #define LV2_PORT_UNIT_INCH 11
  61. #define LV2_PORT_UNIT_KHZ 12
  62. #define LV2_PORT_UNIT_KM 13
  63. #define LV2_PORT_UNIT_M 14
  64. #define LV2_PORT_UNIT_MHZ 15
  65. #define LV2_PORT_UNIT_MIDINOTE 16
  66. #define LV2_PORT_UNIT_MILE 17
  67. #define LV2_PORT_UNIT_MIN 18
  68. #define LV2_PORT_UNIT_MM 19
  69. #define LV2_PORT_UNIT_MS 20
  70. #define LV2_PORT_UNIT_OCT 21
  71. #define LV2_PORT_UNIT_PC 22
  72. #define LV2_PORT_UNIT_S 23
  73. #define LV2_PORT_UNIT_SEMITONE 24
  74. #define LV2_IS_PORT_UNIT_BAR(x) ((x) == LV2_PORT_UNIT_BAR)
  75. #define LV2_IS_PORT_UNIT_BEAT(x) ((x) == LV2_PORT_UNIT_BEAT)
  76. #define LV2_IS_PORT_UNIT_BPM(x) ((x) == LV2_PORT_UNIT_BPM)
  77. #define LV2_IS_PORT_UNIT_CENT(x) ((x) == LV2_PORT_UNIT_CENT)
  78. #define LV2_IS_PORT_UNIT_CM(x) ((x) == LV2_PORT_UNIT_CM)
  79. #define LV2_IS_PORT_UNIT_COEF(x) ((x) == LV2_PORT_UNIT_COEF)
  80. #define LV2_IS_PORT_UNIT_DB(x) ((x) == LV2_PORT_UNIT_DB)
  81. #define LV2_IS_PORT_UNIT_DEGREE(x) ((x) == LV2_PORT_UNIT_DEGREE)
  82. #define LV2_IS_PORT_UNIT_FRAME(x) ((x) == LV2_PORT_UNIT_FRAME)
  83. #define LV2_IS_PORT_UNIT_HZ(x) ((x) == LV2_PORT_UNIT_HZ)
  84. #define LV2_IS_PORT_UNIT_INCH(x) ((x) == LV2_PORT_UNIT_INCH)
  85. #define LV2_IS_PORT_UNIT_KHZ(x) ((x) == LV2_PORT_UNIT_KHZ)
  86. #define LV2_IS_PORT_UNIT_KM(x) ((x) == LV2_PORT_UNIT_KM)
  87. #define LV2_IS_PORT_UNIT_M(x) ((x) == LV2_PORT_UNIT_M)
  88. #define LV2_IS_PORT_UNIT_MHZ(x) ((x) == LV2_PORT_UNIT_MHZ)
  89. #define LV2_IS_PORT_UNIT_MIDINOTE(x) ((x) == LV2_PORT_UNIT_MIDINOTE)
  90. #define LV2_IS_PORT_UNIT_MILE(x) ((x) == LV2_PORT_UNIT_MILE)
  91. #define LV2_IS_PORT_UNIT_MIN(x) ((x) == LV2_PORT_UNIT_MIN)
  92. #define LV2_IS_PORT_UNIT_MM(x) ((x) == LV2_PORT_UNIT_MM)
  93. #define LV2_IS_PORT_UNIT_MS(x) ((x) == LV2_PORT_UNIT_MS)
  94. #define LV2_IS_PORT_UNIT_OCT(x) ((x) == LV2_PORT_UNIT_OCT)
  95. #define LV2_IS_PORT_UNIT_PC(x) ((x) == LV2_PORT_UNIT_PC)
  96. #define LV2_IS_PORT_UNIT_S(x) ((x) == LV2_PORT_UNIT_S)
  97. #define LV2_IS_PORT_UNIT_SEMITONE(x) ((x) == LV2_PORT_UNIT_SEMITONE)
  98. // Port Types
  99. #define LV2_PORT_INPUT 0x001
  100. #define LV2_PORT_OUTPUT 0x002
  101. #define LV2_PORT_CONTROL 0x004
  102. #define LV2_PORT_AUDIO 0x008
  103. #define LV2_PORT_CV 0x010
  104. #define LV2_PORT_ATOM 0x020
  105. #define LV2_PORT_ATOM_SEQUENCE (0x040 | LV2_PORT_ATOM)
  106. #define LV2_PORT_EVENT 0x080
  107. #define LV2_PORT_MIDI_LL 0x100
  108. // Port Data Types
  109. #define LV2_PORT_DATA_MIDI_EVENT 0x1000
  110. #define LV2_PORT_DATA_OSC_EVENT 0x2000
  111. #define LV2_PORT_DATA_PATCH_MESSAGE 0x4000
  112. #define LV2_PORT_DATA_TIME_POSITION 0x8000
  113. #define LV2_IS_PORT_INPUT(x) ((x) & LV2_PORT_INPUT)
  114. #define LV2_IS_PORT_OUTPUT(x) ((x) & LV2_PORT_OUTPUT)
  115. #define LV2_IS_PORT_CONTROL(x) ((x) & LV2_PORT_CONTROL)
  116. #define LV2_IS_PORT_AUDIO(x) ((x) & LV2_PORT_AUDIO)
  117. #define LV2_IS_PORT_CV(x) ((x) & LV2_PORT_CV)
  118. #define LV2_IS_PORT_ATOM_SEQUENCE(x) ((x) & LV2_PORT_ATOM_SEQUENCE)
  119. #define LV2_IS_PORT_EVENT(x) ((x) & LV2_PORT_EVENT)
  120. #define LV2_IS_PORT_MIDI_LL(x) ((x) & LV2_PORT_MIDI_LL)
  121. #define LV2_PORT_SUPPORTS_MIDI_EVENT(x) ((x) & LV2_PORT_DATA_MIDI_EVENT)
  122. #define LV2_PORT_SUPPORTS_OSC_EVENT(x) ((x) & LV2_PORT_DATA_OSC_EVENT)
  123. #define LV2_PORT_SUPPORTS_PATCH_MESSAGE(x) ((x) & LV2_PORT_DATA_PATCH_MESSAGE)
  124. #define LV2_PORT_SUPPORTS_TIME_POSITION(x) ((x) & LV2_PORT_DATA_TIME_POSITION)
  125. // Port Properties
  126. #define LV2_PORT_OPTIONAL 0x0001
  127. #define LV2_PORT_ENUMERATION 0x0002
  128. #define LV2_PORT_INTEGER 0x0004
  129. #define LV2_PORT_SAMPLE_RATE 0x0008
  130. #define LV2_PORT_TOGGLED 0x0010
  131. #define LV2_PORT_CAUSES_ARTIFACTS 0x0020
  132. #define LV2_PORT_CONTINUOUS_CV 0x0040
  133. #define LV2_PORT_DISCRETE_CV 0x0080
  134. #define LV2_PORT_EXPENSIVE 0x0100
  135. #define LV2_PORT_STRICT_BOUNDS 0x0200
  136. #define LV2_PORT_LOGARITHMIC 0x0400
  137. #define LV2_PORT_NOT_AUTOMATIC 0x0800
  138. #define LV2_PORT_NOT_ON_GUI 0x1000
  139. #define LV2_PORT_TRIGGER 0x2000
  140. #define LV2_IS_PORT_OPTIONAL(x) ((x) & LV2_PORT_OPTIONAL)
  141. #define LV2_IS_PORT_ENUMERATION(x) ((x) & LV2_PORT_ENUMERATION)
  142. #define LV2_IS_PORT_INTEGER(x) ((x) & LV2_PORT_INTEGER)
  143. #define LV2_IS_PORT_SAMPLE_RATE(x) ((x) & LV2_PORT_SAMPLE_RATE)
  144. #define LV2_IS_PORT_TOGGLED(x) ((x) & LV2_PORT_TOGGLED)
  145. #define LV2_IS_PORT_CAUSES_ARTIFACTS(x) ((x) & LV2_PORT_CAUSES_ARTIFACTS)
  146. #define LV2_IS_PORT_CONTINUOUS_CV(x) ((x) & LV2_PORT_CONTINUOUS_CV)
  147. #define LV2_IS_PORT_DISCRETE_CV(x) ((x) & LV2_PORT_DISCRETE_CV)
  148. #define LV2_IS_PORT_EXPENSIVE(x) ((x) & LV2_PORT_EXPENSIVE)
  149. #define LV2_IS_PORT_STRICT_BOUNDS(x) ((x) & LV2_PORT_STRICT_BOUNDS)
  150. #define LV2_IS_PORT_LOGARITHMIC(x) ((x) & LV2_PORT_LOGARITHMIC)
  151. #define LV2_IS_PORT_NOT_AUTOMATIC(x) ((x) & LV2_PORT_NOT_AUTOMATIC)
  152. #define LV2_IS_PORT_NOT_ON_GUI(x) ((x) & LV2_PORT_NOT_ON_GUI)
  153. #define LV2_IS_PORT_TRIGGER(x) ((x) & LV2_PORT_TRIGGER)
  154. // Port Designation
  155. #define LV2_PORT_DESIGNATION_CONTROL 1
  156. #define LV2_PORT_DESIGNATION_FREEWHEELING 2
  157. #define LV2_PORT_DESIGNATION_LATENCY 3
  158. #define LV2_PORT_DESIGNATION_SAMPLE_RATE 4
  159. #define LV2_PORT_DESIGNATION_TIME_BAR 5
  160. #define LV2_PORT_DESIGNATION_TIME_BAR_BEAT 6
  161. #define LV2_PORT_DESIGNATION_TIME_BEAT 7
  162. #define LV2_PORT_DESIGNATION_TIME_BEAT_UNIT 8
  163. #define LV2_PORT_DESIGNATION_TIME_BEATS_PER_BAR 9
  164. #define LV2_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE 10
  165. #define LV2_PORT_DESIGNATION_TIME_FRAME 11
  166. #define LV2_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND 12
  167. #define LV2_PORT_DESIGNATION_TIME_SPEED 13
  168. #define LV2_IS_PORT_DESIGNATION_CONTROL(x) ((x) == LV2_PORT_DESIGNATION_CONTROL)
  169. #define LV2_IS_PORT_DESIGNATION_FREEWHEELING(x) ((x) == LV2_PORT_DESIGNATION_FREEWHEELING)
  170. #define LV2_IS_PORT_DESIGNATION_LATENCY(x) ((x) == LV2_PORT_DESIGNATION_LATENCY)
  171. #define LV2_IS_PORT_DESIGNATION_SAMPLE_RATE(x) ((x) == LV2_PORT_DESIGNATION_SAMPLE_RATE)
  172. #define LV2_IS_PORT_DESIGNATION_TIME_BAR(x) ((x) == LV2_PORT_DESIGNATION_TIME_BAR)
  173. #define LV2_IS_PORT_DESIGNATION_TIME_BAR_BEAT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BAR_BEAT)
  174. #define LV2_IS_PORT_DESIGNATION_TIME_BEAT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEAT)
  175. #define LV2_IS_PORT_DESIGNATION_TIME_BEAT_UNIT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEAT_UNIT)
  176. #define LV2_IS_PORT_DESIGNATION_TIME_BEATS_PER_BAR(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEATS_PER_BAR)
  177. #define LV2_IS_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE)
  178. #define LV2_IS_PORT_DESIGNATION_TIME_FRAME(x) ((x) == LV2_PORT_DESIGNATION_TIME_FRAME)
  179. #define LV2_IS_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND(x) ((x) == LV2_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND)
  180. #define LV2_IS_PORT_DESIGNATION_TIME_SPEED(x) ((x) == LV2_PORT_DESIGNATION_TIME_SPEED)
  181. #define LV2_IS_PORT_DESIGNATION_TIME(x) ((x) >= LV2_PORT_DESIGNATION_TIME_BAR && (x) <= LV2_PORT_DESIGNATION_TIME_SPEED)
  182. // Feature Types
  183. #define LV2_FEATURE_OPTIONAL 1
  184. #define LV2_FEATURE_REQUIRED 2
  185. #define LV2_IS_FEATURE_OPTIONAL(x) ((x) == LV2_FEATURE_OPTIONAL)
  186. #define LV2_IS_FEATURE_REQUIRED(x) ((x) == LV2_FEATURE_REQUIRED)
  187. // UI Types
  188. #define LV2_UI_GTK2 1
  189. #define LV2_UI_GTK3 2
  190. #define LV2_UI_QT4 3
  191. #define LV2_UI_QT5 4
  192. #define LV2_UI_COCOA 5
  193. #define LV2_UI_WINDOWS 6
  194. #define LV2_UI_X11 7
  195. #define LV2_UI_EXTERNAL 8
  196. #define LV2_UI_OLD_EXTERNAL 9
  197. #define LV2_IS_UI_GTK2(x) ((x) == LV2_UI_GTK2)
  198. #define LV2_IS_UI_GTK3(x) ((x) == LV2_UI_GTK3)
  199. #define LV2_IS_UI_QT4(x) ((x) == LV2_UI_QT4)
  200. #define LV2_IS_UI_QT5(x) ((x) == LV2_UI_QT5)
  201. #define LV2_IS_UI_COCOA(x) ((x) == LV2_UI_COCOA)
  202. #define LV2_IS_UI_WINDOWS(x) ((x) == LV2_UI_WINDOWS)
  203. #define LV2_IS_UI_X11(x) ((x) == LV2_UI_X11)
  204. #define LV2_IS_UI_EXTERNAL(x) ((x) == LV2_UI_EXTERNAL)
  205. #define LV2_IS_UI_OLD_EXTERNAL(x) ((x) == LV2_UI_OLD_EXTERNAL)
  206. // Plugin Types
  207. #define LV2_PLUGIN_DELAY 0x000001
  208. #define LV2_PLUGIN_REVERB 0x000002
  209. #define LV2_PLUGIN_SIMULATOR 0x000004
  210. #define LV2_PLUGIN_DISTORTION 0x000008
  211. #define LV2_PLUGIN_WAVESHAPER 0x000010
  212. #define LV2_PLUGIN_DYNAMICS 0x000020
  213. #define LV2_PLUGIN_AMPLIFIER 0x000040
  214. #define LV2_PLUGIN_COMPRESSOR 0x000080
  215. #define LV2_PLUGIN_ENVELOPE 0x000100
  216. #define LV2_PLUGIN_EXPANDER 0x000200
  217. #define LV2_PLUGIN_GATE 0x000400
  218. #define LV2_PLUGIN_LIMITER 0x000800
  219. #define LV2_PLUGIN_EQ 0x001000
  220. #define LV2_PLUGIN_MULTI_EQ 0x002000
  221. #define LV2_PLUGIN_PARA_EQ 0x004000
  222. #define LV2_PLUGIN_FILTER 0x008000
  223. #define LV2_PLUGIN_ALLPASS 0x010000
  224. #define LV2_PLUGIN_BANDPASS 0x020000
  225. #define LV2_PLUGIN_COMB 0x040000
  226. #define LV2_PLUGIN_HIGHPASS 0x080000
  227. #define LV2_PLUGIN_LOWPASS 0x100000
  228. #define LV2_PLUGIN_GENERATOR 0x000001
  229. #define LV2_PLUGIN_CONSTANT 0x000002
  230. #define LV2_PLUGIN_INSTRUMENT 0x000004
  231. #define LV2_PLUGIN_OSCILLATOR 0x000008
  232. #define LV2_PLUGIN_MODULATOR 0x000010
  233. #define LV2_PLUGIN_CHORUS 0x000020
  234. #define LV2_PLUGIN_FLANGER 0x000040
  235. #define LV2_PLUGIN_PHASER 0x000080
  236. #define LV2_PLUGIN_SPATIAL 0x000100
  237. #define LV2_PLUGIN_SPECTRAL 0x000200
  238. #define LV2_PLUGIN_PITCH 0x000400
  239. #define LV2_PLUGIN_UTILITY 0x000800
  240. #define LV2_PLUGIN_ANALYSER 0x001000
  241. #define LV2_PLUGIN_CONVERTER 0x002000
  242. #define LV2_PLUGIN_FUNCTION 0x008000
  243. #define LV2_PLUGIN_MIXER 0x010000
  244. #define LV2_GROUP_DELAY (LV2_PLUGIN_DELAY|LV2_PLUGIN_REVERB)
  245. #define LV2_GROUP_DISTORTION (LV2_PLUGIN_DISTORTION|LV2_PLUGIN_WAVESHAPER)
  246. #define LV2_GROUP_DYNAMICS (LV2_PLUGIN_DYNAMICS|LV2_PLUGIN_AMPLIFIER|LV2_PLUGIN_COMPRESSOR|LV2_PLUGIN_ENVELOPE|LV2_PLUGIN_EXPANDER|LV2_PLUGIN_GATE|LV2_PLUGIN_LIMITER)
  247. #define LV2_GROUP_EQ (LV2_PLUGIN_EQ|LV2_PLUGIN_MULTI_EQ|LV2_PLUGIN_PARA_EQ)
  248. #define LV2_GROUP_FILTER (LV2_PLUGIN_FILTER|LV2_PLUGIN_ALLPASS|LV2_PLUGIN_BANDPASS|LV2_PLUGIN_COMB|LV2_GROUP_EQ|LV2_PLUGIN_HIGHPASS|LV2_PLUGIN_LOWPASS)
  249. #define LV2_GROUP_GENERATOR (LV2_PLUGIN_GENERATOR|LV2_PLUGIN_CONSTANT|LV2_PLUGIN_INSTRUMENT|LV2_PLUGIN_OSCILLATOR)
  250. #define LV2_GROUP_MODULATOR (LV2_PLUGIN_MODULATOR|LV2_PLUGIN_CHORUS|LV2_PLUGIN_FLANGER|LV2_PLUGIN_PHASER)
  251. #define LV2_GROUP_REVERB (LV2_PLUGIN_REVERB)
  252. #define LV2_GROUP_SIMULATOR (LV2_PLUGIN_SIMULATOR|LV2_PLUGIN_REVERB)
  253. #define LV2_GROUP_SPATIAL (LV2_PLUGIN_SPATIAL)
  254. #define LV2_GROUP_SPECTRAL (LV2_PLUGIN_SPECTRAL|LV2_PLUGIN_PITCH)
  255. #define LV2_GROUP_UTILITY (LV2_PLUGIN_UTILITY|LV2_PLUGIN_ANALYSER|LV2_PLUGIN_CONVERTER|LV2_PLUGIN_FUNCTION|LV2_PLUGIN_MIXER)
  256. #define LV2_IS_DELAY(x, y) ((x) & LV2_GROUP_DELAY)
  257. #define LV2_IS_DISTORTION(x, y) ((x) & LV2_GROUP_DISTORTION)
  258. #define LV2_IS_DYNAMICS(x, y) ((x) & LV2_GROUP_DYNAMICS)
  259. #define LV2_IS_EQ(x, y) ((x) & LV2_GROUP_EQ)
  260. #define LV2_IS_FILTER(x, y) ((x) & LV2_GROUP_FILTER)
  261. #define LV2_IS_GENERATOR(x, y) ((y) & LV2_GROUP_GENERATOR)
  262. #define LV2_IS_MODULATOR(x, y) ((y) & LV2_GROUP_MODULATOR)
  263. #define LV2_IS_REVERB(x, y) ((x) & LV2_GROUP_REVERB)
  264. #define LV2_IS_SIMULATOR(x, y) ((x) & LV2_GROUP_SIMULATOR)
  265. #define LV2_IS_SPATIAL(x, y) ((y) & LV2_GROUP_SPATIAL)
  266. #define LV2_IS_SPECTRAL(x, y) ((y) & LV2_GROUP_SPECTRAL)
  267. #define LV2_IS_UTILITY(x, y) ((y) & LV2_GROUP_UTILITY)
  268. // Port Midi Map
  269. struct LV2_RDF_PortMidiMap {
  270. LV2_Property Type;
  271. uint32_t Number;
  272. LV2_RDF_PortMidiMap() noexcept
  273. : Type(0),
  274. Number(0) {}
  275. };
  276. // Port Points
  277. struct LV2_RDF_PortPoints {
  278. LV2_Property Hints;
  279. float Default;
  280. float Minimum;
  281. float Maximum;
  282. LV2_RDF_PortPoints() noexcept
  283. : Hints(0x0),
  284. Default(0.0f),
  285. Minimum(0.0f),
  286. Maximum(1.0f) {}
  287. };
  288. // Port Unit
  289. struct LV2_RDF_PortUnit {
  290. LV2_Property Hints;
  291. const char* Name;
  292. const char* Render;
  293. const char* Symbol;
  294. LV2_Property Unit;
  295. LV2_RDF_PortUnit() noexcept
  296. : Hints(0x0),
  297. Name(nullptr),
  298. Render(nullptr),
  299. Symbol(nullptr),
  300. Unit(0) {}
  301. ~LV2_RDF_PortUnit() noexcept
  302. {
  303. if (Name != nullptr)
  304. {
  305. delete[] Name;
  306. Name = nullptr;
  307. }
  308. if (Render != nullptr)
  309. {
  310. delete[] Render;
  311. Render = nullptr;
  312. }
  313. if (Symbol != nullptr)
  314. {
  315. delete[] Symbol;
  316. Symbol = nullptr;
  317. }
  318. }
  319. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_PortUnit)
  320. };
  321. // Port Scale Point
  322. struct LV2_RDF_PortScalePoint {
  323. const char* Label;
  324. float Value;
  325. LV2_RDF_PortScalePoint() noexcept
  326. : Label(nullptr),
  327. Value(0.0f) {}
  328. ~LV2_RDF_PortScalePoint() noexcept
  329. {
  330. if (Label != nullptr)
  331. {
  332. delete[] Label;
  333. Label = nullptr;
  334. }
  335. }
  336. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_PortScalePoint)
  337. };
  338. // Port
  339. struct LV2_RDF_Port {
  340. LV2_Property Types;
  341. LV2_Property Properties;
  342. LV2_Property Designation;
  343. const char* Name;
  344. const char* Symbol;
  345. LV2_RDF_PortMidiMap MidiMap;
  346. LV2_RDF_PortPoints Points;
  347. LV2_RDF_PortUnit Unit;
  348. uint32_t MinimumSize;
  349. uint32_t ScalePointCount;
  350. LV2_RDF_PortScalePoint* ScalePoints;
  351. LV2_RDF_Port() noexcept
  352. : Types(0x0),
  353. Properties(0x0),
  354. Designation(0),
  355. Name(nullptr),
  356. Symbol(nullptr),
  357. MinimumSize(0),
  358. ScalePointCount(0),
  359. ScalePoints(nullptr) {}
  360. ~LV2_RDF_Port() noexcept
  361. {
  362. if (Name != nullptr)
  363. {
  364. delete[] Name;
  365. Name = nullptr;
  366. }
  367. if (Symbol != nullptr)
  368. {
  369. delete[] Symbol;
  370. Symbol = nullptr;
  371. }
  372. if (ScalePoints != nullptr)
  373. {
  374. delete[] ScalePoints;
  375. ScalePoints = nullptr;
  376. }
  377. }
  378. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Port)
  379. };
  380. // Preset
  381. struct LV2_RDF_Preset {
  382. LV2_URI URI;
  383. const char* Label;
  384. LV2_RDF_Preset() noexcept
  385. : URI(nullptr),
  386. Label(nullptr) {}
  387. ~LV2_RDF_Preset() noexcept
  388. {
  389. if (URI != nullptr)
  390. {
  391. delete[] URI;
  392. URI = nullptr;
  393. }
  394. if (Label != nullptr)
  395. {
  396. delete[] Label;
  397. Label = nullptr;
  398. }
  399. }
  400. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Preset)
  401. };
  402. // Feature
  403. struct LV2_RDF_Feature {
  404. LV2_Property Type;
  405. LV2_URI URI;
  406. LV2_RDF_Feature() noexcept
  407. : Type(0),
  408. URI(nullptr) {}
  409. ~LV2_RDF_Feature() noexcept
  410. {
  411. if (URI != nullptr)
  412. {
  413. delete[] URI;
  414. URI = nullptr;
  415. }
  416. }
  417. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Feature)
  418. };
  419. // UI
  420. struct LV2_RDF_UI {
  421. LV2_Property Type;
  422. LV2_URI URI;
  423. const char* Binary;
  424. const char* Bundle;
  425. uint32_t FeatureCount;
  426. LV2_RDF_Feature* Features;
  427. uint32_t ExtensionCount;
  428. LV2_URI* Extensions;
  429. LV2_RDF_UI() noexcept
  430. : Type(0),
  431. URI(nullptr),
  432. Binary(nullptr),
  433. Bundle(nullptr),
  434. FeatureCount(0),
  435. Features(nullptr),
  436. ExtensionCount(0),
  437. Extensions(nullptr) {}
  438. ~LV2_RDF_UI() noexcept
  439. {
  440. if (URI != nullptr)
  441. {
  442. delete[] URI;
  443. URI = nullptr;
  444. }
  445. if (Binary != nullptr)
  446. {
  447. delete[] Binary;
  448. Binary = nullptr;
  449. }
  450. if (Bundle != nullptr)
  451. {
  452. delete[] Bundle;
  453. Bundle = nullptr;
  454. }
  455. if (Features != nullptr)
  456. {
  457. delete[] Features;
  458. Features = nullptr;
  459. }
  460. if (Extensions != nullptr)
  461. {
  462. for (uint32_t i=0; i<ExtensionCount; ++i)
  463. {
  464. if (Extensions[i] != nullptr)
  465. {
  466. delete[] Extensions[i];
  467. Extensions[i] = nullptr;
  468. }
  469. }
  470. delete[] Extensions;
  471. Extensions = nullptr;
  472. }
  473. }
  474. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_UI)
  475. };
  476. // Plugin Descriptor
  477. struct LV2_RDF_Descriptor {
  478. LV2_Property Type[2];
  479. LV2_URI URI;
  480. const char* Name;
  481. const char* Author;
  482. const char* License;
  483. const char* Binary;
  484. const char* Bundle;
  485. ulong UniqueID;
  486. uint32_t PortCount;
  487. LV2_RDF_Port* Ports;
  488. uint32_t PresetCount;
  489. LV2_RDF_Preset* Presets;
  490. uint32_t FeatureCount;
  491. LV2_RDF_Feature* Features;
  492. uint32_t ExtensionCount;
  493. LV2_URI* Extensions;
  494. uint32_t UICount;
  495. LV2_RDF_UI* UIs;
  496. LV2_RDF_Descriptor() noexcept
  497. : URI(nullptr),
  498. Name(nullptr),
  499. Author(nullptr),
  500. License(nullptr),
  501. Binary(nullptr),
  502. Bundle(nullptr),
  503. UniqueID(0),
  504. PortCount(0),
  505. Ports(nullptr),
  506. PresetCount(0),
  507. Presets(nullptr),
  508. FeatureCount(0),
  509. Features(nullptr),
  510. ExtensionCount(0),
  511. Extensions(nullptr),
  512. UICount(0),
  513. UIs(nullptr)
  514. {
  515. Type[0] = Type[1] = 0x0;
  516. }
  517. ~LV2_RDF_Descriptor() noexcept
  518. {
  519. if (URI != nullptr)
  520. {
  521. delete[] URI;
  522. URI = nullptr;
  523. }
  524. if (Name != nullptr)
  525. {
  526. delete[] Name;
  527. Name = nullptr;
  528. }
  529. if (Author != nullptr)
  530. {
  531. delete[] Author;
  532. Author = nullptr;
  533. }
  534. if (License != nullptr)
  535. {
  536. delete[] License;
  537. License = nullptr;
  538. }
  539. if (Binary != nullptr)
  540. {
  541. delete[] Binary;
  542. Binary = nullptr;
  543. }
  544. if (Bundle != nullptr)
  545. {
  546. delete[] Bundle;
  547. Bundle = nullptr;
  548. }
  549. if (Ports != nullptr)
  550. {
  551. delete[] Ports;
  552. Ports = nullptr;
  553. }
  554. if (Presets != nullptr)
  555. {
  556. delete[] Presets;
  557. Presets = nullptr;
  558. }
  559. if (Features != nullptr)
  560. {
  561. delete[] Features;
  562. Features = nullptr;
  563. }
  564. if (Extensions != nullptr)
  565. {
  566. for (uint32_t i=0; i<ExtensionCount; ++i)
  567. {
  568. if (Extensions[i] != nullptr)
  569. {
  570. delete[] Extensions[i];
  571. Extensions[i] = nullptr;
  572. }
  573. }
  574. delete[] Extensions;
  575. Extensions = nullptr;
  576. }
  577. if (UIs != nullptr)
  578. {
  579. delete[] UIs;
  580. UIs = nullptr;
  581. }
  582. }
  583. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Descriptor)
  584. };
  585. #endif // LV2_RDF_HPP_INCLUDED