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.

662 lines
23KB

  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_PORT_NON_AUTOMABLE 0x4000
  141. #define LV2_IS_PORT_OPTIONAL(x) ((x) & LV2_PORT_OPTIONAL)
  142. #define LV2_IS_PORT_ENUMERATION(x) ((x) & LV2_PORT_ENUMERATION)
  143. #define LV2_IS_PORT_INTEGER(x) ((x) & LV2_PORT_INTEGER)
  144. #define LV2_IS_PORT_SAMPLE_RATE(x) ((x) & LV2_PORT_SAMPLE_RATE)
  145. #define LV2_IS_PORT_TOGGLED(x) ((x) & LV2_PORT_TOGGLED)
  146. #define LV2_IS_PORT_CAUSES_ARTIFACTS(x) ((x) & LV2_PORT_CAUSES_ARTIFACTS)
  147. #define LV2_IS_PORT_CONTINUOUS_CV(x) ((x) & LV2_PORT_CONTINUOUS_CV)
  148. #define LV2_IS_PORT_DISCRETE_CV(x) ((x) & LV2_PORT_DISCRETE_CV)
  149. #define LV2_IS_PORT_EXPENSIVE(x) ((x) & LV2_PORT_EXPENSIVE)
  150. #define LV2_IS_PORT_STRICT_BOUNDS(x) ((x) & LV2_PORT_STRICT_BOUNDS)
  151. #define LV2_IS_PORT_LOGARITHMIC(x) ((x) & LV2_PORT_LOGARITHMIC)
  152. #define LV2_IS_PORT_NOT_AUTOMATIC(x) ((x) & LV2_PORT_NOT_AUTOMATIC)
  153. #define LV2_IS_PORT_NOT_ON_GUI(x) ((x) & LV2_PORT_NOT_ON_GUI)
  154. #define LV2_IS_PORT_TRIGGER(x) ((x) & LV2_PORT_TRIGGER)
  155. #define LV2_IS_PORT_NON_AUTOMABLE(x) ((x) & LV2_PORT_NON_AUTOMABLE)
  156. // Port Designation
  157. #define LV2_PORT_DESIGNATION_CONTROL 1
  158. #define LV2_PORT_DESIGNATION_ENABLED 2
  159. #define LV2_PORT_DESIGNATION_FREEWHEELING 3
  160. #define LV2_PORT_DESIGNATION_LATENCY 4
  161. #define LV2_PORT_DESIGNATION_SAMPLE_RATE 5
  162. #define LV2_PORT_DESIGNATION_TIME_BAR 6
  163. #define LV2_PORT_DESIGNATION_TIME_BAR_BEAT 7
  164. #define LV2_PORT_DESIGNATION_TIME_BEAT 8
  165. #define LV2_PORT_DESIGNATION_TIME_BEAT_UNIT 9
  166. #define LV2_PORT_DESIGNATION_TIME_BEATS_PER_BAR 10
  167. #define LV2_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE 11
  168. #define LV2_PORT_DESIGNATION_TIME_FRAME 12
  169. #define LV2_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND 13
  170. #define LV2_PORT_DESIGNATION_TIME_SPEED 14
  171. #define LV2_PORT_DESIGNATION_TIME_TICKS_PER_BEAT 15
  172. #define LV2_IS_PORT_DESIGNATION_CONTROL(x) ((x) == LV2_PORT_DESIGNATION_CONTROL)
  173. #define LV2_IS_PORT_DESIGNATION_ENABLED(x) ((x) == LV2_PORT_DESIGNATION_ENABLED)
  174. #define LV2_IS_PORT_DESIGNATION_FREEWHEELING(x) ((x) == LV2_PORT_DESIGNATION_FREEWHEELING)
  175. #define LV2_IS_PORT_DESIGNATION_LATENCY(x) ((x) == LV2_PORT_DESIGNATION_LATENCY)
  176. #define LV2_IS_PORT_DESIGNATION_SAMPLE_RATE(x) ((x) == LV2_PORT_DESIGNATION_SAMPLE_RATE)
  177. #define LV2_IS_PORT_DESIGNATION_TIME_BAR(x) ((x) == LV2_PORT_DESIGNATION_TIME_BAR)
  178. #define LV2_IS_PORT_DESIGNATION_TIME_BAR_BEAT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BAR_BEAT)
  179. #define LV2_IS_PORT_DESIGNATION_TIME_BEAT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEAT)
  180. #define LV2_IS_PORT_DESIGNATION_TIME_BEAT_UNIT(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEAT_UNIT)
  181. #define LV2_IS_PORT_DESIGNATION_TIME_BEATS_PER_BAR(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEATS_PER_BAR)
  182. #define LV2_IS_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE(x) ((x) == LV2_PORT_DESIGNATION_TIME_BEATS_PER_MINUTE)
  183. #define LV2_IS_PORT_DESIGNATION_TIME_FRAME(x) ((x) == LV2_PORT_DESIGNATION_TIME_FRAME)
  184. #define LV2_IS_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND(x) ((x) == LV2_PORT_DESIGNATION_TIME_FRAMES_PER_SECOND)
  185. #define LV2_IS_PORT_DESIGNATION_TIME_SPEED(x) ((x) == LV2_PORT_DESIGNATION_TIME_SPEED)
  186. #define LV2_IS_PORT_DESIGNATION_TIME_TICKS_PER_BEAT(x) ((x) == LV2_PORT_DESIGNATION_TIME_TICKS_PER_BEAT)
  187. #define LV2_IS_PORT_DESIGNATION_TIME(x) ((x) >= LV2_PORT_DESIGNATION_TIME_BAR && (x) <= LV2_PORT_DESIGNATION_TIME_TICKS_PER_BEAT)
  188. // UI Types
  189. #define LV2_UI_GTK2 1
  190. #define LV2_UI_GTK3 2
  191. #define LV2_UI_QT4 3
  192. #define LV2_UI_QT5 4
  193. #define LV2_UI_COCOA 5
  194. #define LV2_UI_WINDOWS 6
  195. #define LV2_UI_X11 7
  196. #define LV2_UI_EXTERNAL 8
  197. #define LV2_UI_OLD_EXTERNAL 9
  198. #define LV2_UI_MOD 10
  199. #define LV2_IS_UI_GTK2(x) ((x) == LV2_UI_GTK2)
  200. #define LV2_IS_UI_GTK3(x) ((x) == LV2_UI_GTK3)
  201. #define LV2_IS_UI_QT4(x) ((x) == LV2_UI_QT4)
  202. #define LV2_IS_UI_QT5(x) ((x) == LV2_UI_QT5)
  203. #define LV2_IS_UI_COCOA(x) ((x) == LV2_UI_COCOA)
  204. #define LV2_IS_UI_WINDOWS(x) ((x) == LV2_UI_WINDOWS)
  205. #define LV2_IS_UI_X11(x) ((x) == LV2_UI_X11)
  206. #define LV2_IS_UI_EXTERNAL(x) ((x) == LV2_UI_EXTERNAL)
  207. #define LV2_IS_UI_OLD_EXTERNAL(x) ((x) == LV2_UI_OLD_EXTERNAL)
  208. #define LV2_IS_UI_MOD(x) ((x) == LV2_UI_MOD)
  209. // Plugin Types
  210. #define LV2_PLUGIN_DELAY 0x000001
  211. #define LV2_PLUGIN_REVERB 0x000002
  212. #define LV2_PLUGIN_SIMULATOR 0x000004
  213. #define LV2_PLUGIN_DISTORTION 0x000008
  214. #define LV2_PLUGIN_WAVESHAPER 0x000010
  215. #define LV2_PLUGIN_DYNAMICS 0x000020
  216. #define LV2_PLUGIN_AMPLIFIER 0x000040
  217. #define LV2_PLUGIN_COMPRESSOR 0x000080
  218. #define LV2_PLUGIN_ENVELOPE 0x000100
  219. #define LV2_PLUGIN_EXPANDER 0x000200
  220. #define LV2_PLUGIN_GATE 0x000400
  221. #define LV2_PLUGIN_LIMITER 0x000800
  222. #define LV2_PLUGIN_EQ 0x001000
  223. #define LV2_PLUGIN_MULTI_EQ 0x002000
  224. #define LV2_PLUGIN_PARA_EQ 0x004000
  225. #define LV2_PLUGIN_FILTER 0x008000
  226. #define LV2_PLUGIN_ALLPASS 0x010000
  227. #define LV2_PLUGIN_BANDPASS 0x020000
  228. #define LV2_PLUGIN_COMB 0x040000
  229. #define LV2_PLUGIN_HIGHPASS 0x080000
  230. #define LV2_PLUGIN_LOWPASS 0x100000
  231. #define LV2_PLUGIN_GENERATOR 0x000001
  232. #define LV2_PLUGIN_CONSTANT 0x000002
  233. #define LV2_PLUGIN_INSTRUMENT 0x000004
  234. #define LV2_PLUGIN_OSCILLATOR 0x000008
  235. #define LV2_PLUGIN_MODULATOR 0x000010
  236. #define LV2_PLUGIN_CHORUS 0x000020
  237. #define LV2_PLUGIN_FLANGER 0x000040
  238. #define LV2_PLUGIN_PHASER 0x000080
  239. #define LV2_PLUGIN_SPATIAL 0x000100
  240. #define LV2_PLUGIN_SPECTRAL 0x000200
  241. #define LV2_PLUGIN_PITCH 0x000400
  242. #define LV2_PLUGIN_UTILITY 0x000800
  243. #define LV2_PLUGIN_ANALYSER 0x001000
  244. #define LV2_PLUGIN_CONVERTER 0x002000
  245. #define LV2_PLUGIN_FUNCTION 0x008000
  246. #define LV2_PLUGIN_MIXER 0x010000
  247. #define LV2_GROUP_DELAY (LV2_PLUGIN_DELAY|LV2_PLUGIN_REVERB)
  248. #define LV2_GROUP_DISTORTION (LV2_PLUGIN_DISTORTION|LV2_PLUGIN_WAVESHAPER)
  249. #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)
  250. #define LV2_GROUP_EQ (LV2_PLUGIN_EQ|LV2_PLUGIN_MULTI_EQ|LV2_PLUGIN_PARA_EQ)
  251. #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)
  252. #define LV2_GROUP_GENERATOR (LV2_PLUGIN_GENERATOR|LV2_PLUGIN_CONSTANT|LV2_PLUGIN_INSTRUMENT|LV2_PLUGIN_OSCILLATOR)
  253. #define LV2_GROUP_MODULATOR (LV2_PLUGIN_MODULATOR|LV2_PLUGIN_CHORUS|LV2_PLUGIN_FLANGER|LV2_PLUGIN_PHASER)
  254. #define LV2_GROUP_REVERB (LV2_PLUGIN_REVERB)
  255. #define LV2_GROUP_SIMULATOR (LV2_PLUGIN_SIMULATOR|LV2_PLUGIN_REVERB)
  256. #define LV2_GROUP_SPATIAL (LV2_PLUGIN_SPATIAL)
  257. #define LV2_GROUP_SPECTRAL (LV2_PLUGIN_SPECTRAL|LV2_PLUGIN_PITCH)
  258. #define LV2_GROUP_UTILITY (LV2_PLUGIN_UTILITY|LV2_PLUGIN_ANALYSER|LV2_PLUGIN_CONVERTER|LV2_PLUGIN_FUNCTION|LV2_PLUGIN_MIXER)
  259. #define LV2_IS_DELAY(x, y) ((x) & LV2_GROUP_DELAY)
  260. #define LV2_IS_DISTORTION(x, y) ((x) & LV2_GROUP_DISTORTION)
  261. #define LV2_IS_DYNAMICS(x, y) ((x) & LV2_GROUP_DYNAMICS)
  262. #define LV2_IS_EQ(x, y) ((x) & LV2_GROUP_EQ)
  263. #define LV2_IS_FILTER(x, y) ((x) & LV2_GROUP_FILTER)
  264. #define LV2_IS_GENERATOR(x, y) ((y) & LV2_GROUP_GENERATOR)
  265. #define LV2_IS_INSTRUMENT(x, y) ((y) & LV2_PLUGIN_INSTRUMENT)
  266. #define LV2_IS_MODULATOR(x, y) ((y) & LV2_GROUP_MODULATOR)
  267. #define LV2_IS_REVERB(x, y) ((x) & LV2_GROUP_REVERB)
  268. #define LV2_IS_SIMULATOR(x, y) ((x) & LV2_GROUP_SIMULATOR)
  269. #define LV2_IS_SPATIAL(x, y) ((y) & LV2_GROUP_SPATIAL)
  270. #define LV2_IS_SPECTRAL(x, y) ((y) & LV2_GROUP_SPECTRAL)
  271. #define LV2_IS_UTILITY(x, y) ((y) & LV2_GROUP_UTILITY)
  272. // Port Midi Map
  273. struct LV2_RDF_PortMidiMap {
  274. LV2_Property Type;
  275. uint32_t Number;
  276. LV2_RDF_PortMidiMap() noexcept
  277. : Type(0),
  278. Number(0) {}
  279. };
  280. // Port Points
  281. struct LV2_RDF_PortPoints {
  282. LV2_Property Hints;
  283. float Default;
  284. float Minimum;
  285. float Maximum;
  286. LV2_RDF_PortPoints() noexcept
  287. : Hints(0x0),
  288. Default(0.0f),
  289. Minimum(0.0f),
  290. Maximum(1.0f) {}
  291. };
  292. // Port Unit
  293. struct LV2_RDF_PortUnit {
  294. LV2_Property Hints;
  295. const char* Name;
  296. const char* Render;
  297. const char* Symbol;
  298. LV2_Property Unit;
  299. LV2_RDF_PortUnit() noexcept
  300. : Hints(0x0),
  301. Name(nullptr),
  302. Render(nullptr),
  303. Symbol(nullptr),
  304. Unit(0) {}
  305. ~LV2_RDF_PortUnit() noexcept
  306. {
  307. if (Name != nullptr)
  308. {
  309. delete[] Name;
  310. Name = nullptr;
  311. }
  312. if (Render != nullptr)
  313. {
  314. delete[] Render;
  315. Render = nullptr;
  316. }
  317. if (Symbol != nullptr)
  318. {
  319. delete[] Symbol;
  320. Symbol = nullptr;
  321. }
  322. }
  323. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_PortUnit)
  324. };
  325. // Port Scale Point
  326. struct LV2_RDF_PortScalePoint {
  327. const char* Label;
  328. float Value;
  329. LV2_RDF_PortScalePoint() noexcept
  330. : Label(nullptr),
  331. Value(0.0f) {}
  332. ~LV2_RDF_PortScalePoint() noexcept
  333. {
  334. if (Label != nullptr)
  335. {
  336. delete[] Label;
  337. Label = nullptr;
  338. }
  339. }
  340. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_PortScalePoint)
  341. };
  342. // Port
  343. struct LV2_RDF_Port {
  344. LV2_Property Types;
  345. LV2_Property Properties;
  346. LV2_Property Designation;
  347. const char* Name;
  348. const char* Symbol;
  349. LV2_RDF_PortMidiMap MidiMap;
  350. LV2_RDF_PortPoints Points;
  351. LV2_RDF_PortUnit Unit;
  352. uint32_t MinimumSize;
  353. uint32_t ScalePointCount;
  354. LV2_RDF_PortScalePoint* ScalePoints;
  355. LV2_RDF_Port() noexcept
  356. : Types(0x0),
  357. Properties(0x0),
  358. Designation(0),
  359. Name(nullptr),
  360. Symbol(nullptr),
  361. MidiMap(),
  362. Points(),
  363. Unit(),
  364. MinimumSize(0),
  365. ScalePointCount(0),
  366. ScalePoints(nullptr) {}
  367. ~LV2_RDF_Port() noexcept
  368. {
  369. if (Name != nullptr)
  370. {
  371. delete[] Name;
  372. Name = nullptr;
  373. }
  374. if (Symbol != nullptr)
  375. {
  376. delete[] Symbol;
  377. Symbol = nullptr;
  378. }
  379. if (ScalePoints != nullptr)
  380. {
  381. delete[] ScalePoints;
  382. ScalePoints = nullptr;
  383. }
  384. }
  385. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Port)
  386. };
  387. // Preset
  388. struct LV2_RDF_Preset {
  389. LV2_URI URI;
  390. const char* Label;
  391. LV2_RDF_Preset() noexcept
  392. : URI(nullptr),
  393. Label(nullptr) {}
  394. ~LV2_RDF_Preset() noexcept
  395. {
  396. if (URI != nullptr)
  397. {
  398. delete[] URI;
  399. URI = nullptr;
  400. }
  401. if (Label != nullptr)
  402. {
  403. delete[] Label;
  404. Label = nullptr;
  405. }
  406. }
  407. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Preset)
  408. };
  409. // Feature
  410. struct LV2_RDF_Feature {
  411. bool Required;
  412. LV2_URI URI;
  413. LV2_RDF_Feature() noexcept
  414. : Required(false),
  415. URI(nullptr) {}
  416. ~LV2_RDF_Feature() noexcept
  417. {
  418. if (URI != nullptr)
  419. {
  420. delete[] URI;
  421. URI = nullptr;
  422. }
  423. }
  424. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Feature)
  425. };
  426. // UI
  427. struct LV2_RDF_UI {
  428. LV2_Property Type;
  429. LV2_URI URI;
  430. const char* Binary;
  431. const char* Bundle;
  432. uint32_t FeatureCount;
  433. LV2_RDF_Feature* Features;
  434. uint32_t ExtensionCount;
  435. LV2_URI* Extensions;
  436. LV2_RDF_UI() noexcept
  437. : Type(0),
  438. URI(nullptr),
  439. Binary(nullptr),
  440. Bundle(nullptr),
  441. FeatureCount(0),
  442. Features(nullptr),
  443. ExtensionCount(0),
  444. Extensions(nullptr) {}
  445. ~LV2_RDF_UI() noexcept
  446. {
  447. if (URI != nullptr)
  448. {
  449. delete[] URI;
  450. URI = nullptr;
  451. }
  452. if (Binary != nullptr)
  453. {
  454. delete[] Binary;
  455. Binary = nullptr;
  456. }
  457. if (Bundle != nullptr)
  458. {
  459. delete[] Bundle;
  460. Bundle = nullptr;
  461. }
  462. if (Features != nullptr)
  463. {
  464. delete[] Features;
  465. Features = nullptr;
  466. }
  467. if (Extensions != nullptr)
  468. {
  469. for (uint32_t i=0; i<ExtensionCount; ++i)
  470. {
  471. if (Extensions[i] != nullptr)
  472. {
  473. delete[] Extensions[i];
  474. Extensions[i] = nullptr;
  475. }
  476. }
  477. delete[] Extensions;
  478. Extensions = nullptr;
  479. }
  480. }
  481. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_UI)
  482. };
  483. // Plugin Descriptor
  484. struct LV2_RDF_Descriptor {
  485. LV2_Property Type[2];
  486. LV2_URI URI;
  487. const char* Name;
  488. const char* Author;
  489. const char* License;
  490. const char* Binary;
  491. const char* Bundle;
  492. ulong UniqueID;
  493. uint32_t PortCount;
  494. LV2_RDF_Port* Ports;
  495. uint32_t PresetCount;
  496. LV2_RDF_Preset* Presets;
  497. uint32_t FeatureCount;
  498. LV2_RDF_Feature* Features;
  499. uint32_t ExtensionCount;
  500. LV2_URI* Extensions;
  501. uint32_t UICount;
  502. LV2_RDF_UI* UIs;
  503. LV2_RDF_Descriptor() noexcept
  504. : URI(nullptr),
  505. Name(nullptr),
  506. Author(nullptr),
  507. License(nullptr),
  508. Binary(nullptr),
  509. Bundle(nullptr),
  510. UniqueID(0),
  511. PortCount(0),
  512. Ports(nullptr),
  513. PresetCount(0),
  514. Presets(nullptr),
  515. FeatureCount(0),
  516. Features(nullptr),
  517. ExtensionCount(0),
  518. Extensions(nullptr),
  519. UICount(0),
  520. UIs(nullptr)
  521. {
  522. Type[0] = Type[1] = 0x0;
  523. }
  524. ~LV2_RDF_Descriptor() noexcept
  525. {
  526. if (URI != nullptr)
  527. {
  528. delete[] URI;
  529. URI = nullptr;
  530. }
  531. if (Name != nullptr)
  532. {
  533. delete[] Name;
  534. Name = nullptr;
  535. }
  536. if (Author != nullptr)
  537. {
  538. delete[] Author;
  539. Author = nullptr;
  540. }
  541. if (License != nullptr)
  542. {
  543. delete[] License;
  544. License = nullptr;
  545. }
  546. if (Binary != nullptr)
  547. {
  548. delete[] Binary;
  549. Binary = nullptr;
  550. }
  551. if (Bundle != nullptr)
  552. {
  553. delete[] Bundle;
  554. Bundle = nullptr;
  555. }
  556. if (Ports != nullptr)
  557. {
  558. delete[] Ports;
  559. Ports = nullptr;
  560. }
  561. if (Presets != nullptr)
  562. {
  563. delete[] Presets;
  564. Presets = nullptr;
  565. }
  566. if (Features != nullptr)
  567. {
  568. delete[] Features;
  569. Features = nullptr;
  570. }
  571. if (Extensions != nullptr)
  572. {
  573. for (uint32_t i=0; i<ExtensionCount; ++i)
  574. {
  575. if (Extensions[i] != nullptr)
  576. {
  577. delete[] Extensions[i];
  578. Extensions[i] = nullptr;
  579. }
  580. }
  581. delete[] Extensions;
  582. Extensions = nullptr;
  583. }
  584. if (UIs != nullptr)
  585. {
  586. delete[] UIs;
  587. UIs = nullptr;
  588. }
  589. }
  590. CARLA_DECLARE_NON_COPY_STRUCT(LV2_RDF_Descriptor)
  591. };
  592. #endif // LV2_RDF_HPP_INCLUDED