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.

CarlaBackendUtils.hpp 18KB

11 years ago
11 years ago
11 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
11 years ago
11 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
11 years ago
11 years ago
11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. /*
  2. * Carla Backend utils
  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 CARLA_BACKEND_UTILS_HPP_INCLUDED
  18. #define CARLA_BACKEND_UTILS_HPP_INCLUDED
  19. #include "CarlaBackend.h"
  20. #include "CarlaHost.h"
  21. #include "CarlaString.hpp"
  22. CARLA_BACKEND_START_NAMESPACE
  23. // -----------------------------------------------------------------------
  24. static inline
  25. const char* PluginOption2Str(const uint option) noexcept
  26. {
  27. switch (option)
  28. {
  29. case PLUGIN_OPTION_FIXED_BUFFERS:
  30. return "PLUGIN_OPTION_FIXED_BUFFERS";
  31. case PLUGIN_OPTION_FORCE_STEREO:
  32. return "PLUGIN_OPTION_FORCE_STEREO";
  33. case PLUGIN_OPTION_MAP_PROGRAM_CHANGES:
  34. return "PLUGIN_OPTION_MAP_PROGRAM_CHANGES";
  35. case PLUGIN_OPTION_USE_CHUNKS:
  36. return "PLUGIN_OPTION_USE_CHUNKS";
  37. case PLUGIN_OPTION_SEND_CONTROL_CHANGES:
  38. return "PLUGIN_OPTION_SEND_CONTROL_CHANGES";
  39. case PLUGIN_OPTION_SEND_CHANNEL_PRESSURE:
  40. return "PLUGIN_OPTION_SEND_CHANNEL_PRESSURE";
  41. case PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH:
  42. return "PLUGIN_OPTION_SEND_NOTE_AFTERTOUCH";
  43. case PLUGIN_OPTION_SEND_PITCHBEND:
  44. return "PLUGIN_OPTION_SEND_PITCHBEND";
  45. case PLUGIN_OPTION_SEND_ALL_SOUND_OFF:
  46. return "PLUGIN_OPTION_SEND_ALL_SOUND_OFF";
  47. }
  48. carla_stderr("CarlaBackend::PluginOption2Str(%i) - invalid option", option);
  49. return nullptr;
  50. }
  51. // -----------------------------------------------------------------------
  52. static inline
  53. const char* BinaryType2Str(const BinaryType type) noexcept
  54. {
  55. switch (type)
  56. {
  57. case BINARY_NONE:
  58. return "BINARY_NONE";
  59. case BINARY_POSIX32:
  60. return "BINARY_POSIX32";
  61. case BINARY_POSIX64:
  62. return "BINARY_POSIX64";
  63. case BINARY_WIN32:
  64. return "BINARY_WIN32";
  65. case BINARY_WIN64:
  66. return "BINARY_WIN64";
  67. case BINARY_OTHER:
  68. return "BINARY_OTHER";
  69. }
  70. carla_stderr("CarlaBackend::BinaryType2Str(%i) - invalid type", type);
  71. return nullptr;
  72. }
  73. static inline
  74. const char* PluginType2Str(const PluginType type) noexcept
  75. {
  76. switch (type)
  77. {
  78. case PLUGIN_NONE:
  79. return "PLUGIN_NONE";
  80. case PLUGIN_INTERNAL:
  81. return "PLUGIN_INTERNAL";
  82. case PLUGIN_LADSPA:
  83. return "PLUGIN_LADSPA";
  84. case PLUGIN_DSSI:
  85. return "PLUGIN_DSSI";
  86. case PLUGIN_LV2:
  87. return "PLUGIN_LV2";
  88. case PLUGIN_VST:
  89. return "PLUGIN_VST";
  90. case PLUGIN_VST3:
  91. return "PLUGIN_VST3";
  92. case PLUGIN_AU:
  93. return "PLUGIN_AU";
  94. case PLUGIN_GIG:
  95. return "PLUGIN_GIG";
  96. case PLUGIN_SF2:
  97. return "PLUGIN_SF2";
  98. case PLUGIN_SFZ:
  99. return "PLUGIN_SFZ";
  100. }
  101. carla_stderr("CarlaBackend::PluginType2Str(%i) - invalid type", type);
  102. return nullptr;
  103. }
  104. static inline
  105. const char* PluginCategory2Str(const PluginCategory category) noexcept
  106. {
  107. switch (category)
  108. {
  109. case PLUGIN_CATEGORY_NONE:
  110. return "PLUGIN_CATEGORY_NONE";
  111. case PLUGIN_CATEGORY_SYNTH:
  112. return "PLUGIN_CATEGORY_SYNTH";
  113. case PLUGIN_CATEGORY_DELAY:
  114. return "PLUGIN_CATEGORY_DELAY";
  115. case PLUGIN_CATEGORY_EQ:
  116. return "PLUGIN_CATEGORY_EQ";
  117. case PLUGIN_CATEGORY_FILTER:
  118. return "PLUGIN_CATEGORY_FILTER";
  119. case PLUGIN_CATEGORY_DISTORTION:
  120. return "PLUGIN_CATEGORY_DISTORTION";
  121. case PLUGIN_CATEGORY_DYNAMICS:
  122. return "PLUGIN_CATEGORY_DYNAMICS";
  123. case PLUGIN_CATEGORY_MODULATOR:
  124. return "PLUGIN_CATEGORY_MODULATOR";
  125. case PLUGIN_CATEGORY_UTILITY:
  126. return "PLUGIN_CATEGORY_UTILITY";
  127. case PLUGIN_CATEGORY_OTHER:
  128. return "PLUGIN_CATEGORY_OTHER";
  129. }
  130. carla_stderr("CarlaBackend::PluginCategory2Str(%i) - invalid category", category);
  131. return nullptr;
  132. }
  133. static inline
  134. const char* ParameterType2Str(const ParameterType type) noexcept
  135. {
  136. switch (type)
  137. {
  138. case PARAMETER_UNKNOWN:
  139. return "PARAMETER_UNKNOWN";
  140. case PARAMETER_INPUT:
  141. return "PARAMETER_INPUT";
  142. case PARAMETER_OUTPUT:
  143. return "PARAMETER_OUTPUT";
  144. }
  145. carla_stderr("CarlaBackend::ParameterType2Str(%i) - invalid type", type);
  146. return nullptr;
  147. }
  148. static inline
  149. const char* InternalParameterIndex2Str(const InternalParameterIndex index) noexcept
  150. {
  151. switch (index)
  152. {
  153. case PARAMETER_NULL:
  154. return "PARAMETER_NULL";
  155. #ifndef BUILD_BRIDGE
  156. case PARAMETER_ACTIVE:
  157. return "PARAMETER_ACTIVE";
  158. case PARAMETER_DRYWET:
  159. return "PARAMETER_DRYWET";
  160. case PARAMETER_VOLUME:
  161. return "PARAMETER_VOLUME";
  162. case PARAMETER_BALANCE_LEFT:
  163. return "PARAMETER_BALANCE_LEFT";
  164. case PARAMETER_BALANCE_RIGHT:
  165. return "PARAMETER_BALANCE_RIGHT";
  166. case PARAMETER_PANNING:
  167. return "PARAMETER_PANNING";
  168. case PARAMETER_CTRL_CHANNEL:
  169. return "PARAMETER_CTRL_CHANNEL";
  170. #endif
  171. case PARAMETER_MAX:
  172. return "PARAMETER_MAX";
  173. }
  174. carla_stderr("CarlaBackend::InternalParameterIndex2Str(%i) - invalid index", index);
  175. return nullptr;
  176. }
  177. static inline
  178. const char* EngineCallbackOpcode2Str(const EngineCallbackOpcode opcode) noexcept
  179. {
  180. switch (opcode)
  181. {
  182. case ENGINE_CALLBACK_DEBUG:
  183. return "ENGINE_CALLBACK_DEBUG";
  184. case ENGINE_CALLBACK_PLUGIN_ADDED:
  185. return "ENGINE_CALLBACK_PLUGIN_ADDED";
  186. case ENGINE_CALLBACK_PLUGIN_REMOVED:
  187. return "ENGINE_CALLBACK_PLUGIN_REMOVED";
  188. case ENGINE_CALLBACK_PLUGIN_RENAMED:
  189. return "ENGINE_CALLBACK_PLUGIN_RENAMED";
  190. case ENGINE_CALLBACK_PLUGIN_UNAVAILABLE:
  191. return "ENGINE_CALLBACK_PLUGIN_UNAVAILABLE";
  192. case ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED:
  193. return "ENGINE_CALLBACK_PARAMETER_VALUE_CHANGED";
  194. case ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED:
  195. return "ENGINE_CALLBACK_PARAMETER_DEFAULT_CHANGED";
  196. #ifndef BUILD_BRIDGE
  197. case ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED:
  198. return "ENGINE_CALLBACK_PARAMETER_MIDI_CHANNEL_CHANGED";
  199. case ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED:
  200. return "ENGINE_CALLBACK_PARAMETER_MIDI_CC_CHANGED";
  201. case ENGINE_CALLBACK_OPTION_CHANGED:
  202. return "ENGINE_CALLBACK_OPTION_CHANGED";
  203. #endif
  204. case ENGINE_CALLBACK_PROGRAM_CHANGED:
  205. return "ENGINE_CALLBACK_PROGRAM_CHANGED";
  206. case ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED:
  207. return "ENGINE_CALLBACK_MIDI_PROGRAM_CHANGED";
  208. case ENGINE_CALLBACK_UI_STATE_CHANGED:
  209. return "ENGINE_CALLBACK_UI_STATE_CHANGED";
  210. case ENGINE_CALLBACK_NOTE_ON:
  211. return "ENGINE_CALLBACK_NOTE_ON";
  212. case ENGINE_CALLBACK_NOTE_OFF:
  213. return "ENGINE_CALLBACK_NOTE_OFF";
  214. case ENGINE_CALLBACK_UPDATE:
  215. return "ENGINE_CALLBACK_UPDATE";
  216. case ENGINE_CALLBACK_RELOAD_INFO:
  217. return "ENGINE_CALLBACK_RELOAD_INFO";
  218. case ENGINE_CALLBACK_RELOAD_PARAMETERS:
  219. return "ENGINE_CALLBACK_RELOAD_PARAMETERS";
  220. case ENGINE_CALLBACK_RELOAD_PROGRAMS:
  221. return "ENGINE_CALLBACK_RELOAD_PROGRAMS";
  222. case ENGINE_CALLBACK_RELOAD_ALL:
  223. return "ENGINE_CALLBACK_RELOAD_ALL";
  224. #ifndef BUILD_BRIDGE
  225. case ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED:
  226. return "ENGINE_CALLBACK_PATCHBAY_CLIENT_ADDED";
  227. case ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED:
  228. return "ENGINE_CALLBACK_PATCHBAY_CLIENT_REMOVED";
  229. case ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED:
  230. return "ENGINE_CALLBACK_PATCHBAY_CLIENT_RENAMED";
  231. case ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED:
  232. return "ENGINE_CALLBACK_PATCHBAY_CLIENT_DATA_CHANGED";
  233. case ENGINE_CALLBACK_PATCHBAY_PORT_ADDED:
  234. return "ENGINE_CALLBACK_PATCHBAY_PORT_ADDED";
  235. case ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED:
  236. return "ENGINE_CALLBACK_PATCHBAY_PORT_REMOVED";
  237. case ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED:
  238. return "ENGINE_CALLBACK_PATCHBAY_PORT_RENAMED";
  239. case ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED:
  240. return "ENGINE_CALLBACK_PATCHBAY_CONNECTION_ADDED";
  241. case ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED:
  242. return "ENGINE_CALLBACK_PATCHBAY_CONNECTION_REMOVED";
  243. #endif
  244. case ENGINE_CALLBACK_ENGINE_STARTED:
  245. return "ENGINE_CALLBACK_ENGINE_STARTED";
  246. case ENGINE_CALLBACK_ENGINE_STOPPED:
  247. return "ENGINE_CALLBACK_ENGINE_STOPPED";
  248. case ENGINE_CALLBACK_PROCESS_MODE_CHANGED:
  249. return "ENGINE_CALLBACK_PROCESS_MODE_CHANGED";
  250. case ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED:
  251. return "ENGINE_CALLBACK_TRANSPORT_MODE_CHANGED";
  252. case ENGINE_CALLBACK_BUFFER_SIZE_CHANGED:
  253. return "ENGINE_CALLBACK_BUFFER_SIZE_CHANGED";
  254. case ENGINE_CALLBACK_SAMPLE_RATE_CHANGED:
  255. return "ENGINE_CALLBACK_SAMPLE_RATE_CHANGED";
  256. case ENGINE_CALLBACK_IDLE:
  257. return "ENGINE_CALLBACK_IDLE";
  258. case ENGINE_CALLBACK_INFO:
  259. return "ENGINE_CALLBACK_INFO";
  260. case ENGINE_CALLBACK_ERROR:
  261. return "ENGINE_CALLBACK_ERROR";
  262. case ENGINE_CALLBACK_QUIT:
  263. return "ENGINE_CALLBACK_QUIT";
  264. }
  265. carla_stderr("CarlaBackend::EngineCallbackOpcode2Str(%i) - invalid opcode", opcode);
  266. return nullptr;
  267. }
  268. static inline
  269. const char* EngineOption2Str(const EngineOption option) noexcept
  270. {
  271. switch (option)
  272. {
  273. case ENGINE_OPTION_DEBUG:
  274. return "ENGINE_OPTION_DEBUG";
  275. case ENGINE_OPTION_PROCESS_MODE:
  276. return "ENGINE_OPTION_PROCESS_MODE";
  277. case ENGINE_OPTION_TRANSPORT_MODE:
  278. return "ENGINE_OPTION_TRANSPORT_MODE";
  279. case ENGINE_OPTION_FORCE_STEREO:
  280. return "ENGINE_OPTION_FORCE_STEREO";
  281. case ENGINE_OPTION_PREFER_PLUGIN_BRIDGES:
  282. return "ENGINE_OPTION_PREFER_PLUGIN_BRIDGES";
  283. case ENGINE_OPTION_PREFER_UI_BRIDGES:
  284. return "ENGINE_OPTION_PREFER_UI_BRIDGES";
  285. case ENGINE_OPTION_UIS_ALWAYS_ON_TOP:
  286. return "ENGINE_OPTION_UIS_ALWAYS_ON_TOP";
  287. case ENGINE_OPTION_MAX_PARAMETERS:
  288. return "ENGINE_OPTION_MAX_PARAMETERS";
  289. case ENGINE_OPTION_UI_BRIDGES_TIMEOUT:
  290. return "ENGINE_OPTION_UI_BRIDGES_TIMEOUT";
  291. case ENGINE_OPTION_AUDIO_NUM_PERIODS:
  292. return "ENGINE_OPTION_AUDIO_NUM_PERIODS";
  293. case ENGINE_OPTION_AUDIO_BUFFER_SIZE:
  294. return "ENGINE_OPTION_AUDIO_BUFFER_SIZE";
  295. case ENGINE_OPTION_AUDIO_SAMPLE_RATE:
  296. return "ENGINE_OPTION_AUDIO_SAMPLE_RATE";
  297. case ENGINE_OPTION_AUDIO_DEVICE:
  298. return "ENGINE_OPTION_AUDIO_DEVICE";
  299. case ENGINE_OPTION_NSM_INIT:
  300. return "ENGINE_OPTION_NSM_INIT";
  301. case ENGINE_OPTION_PLUGIN_PATH:
  302. return "ENGINE_OPTION_PLUGIN_PATH";
  303. case ENGINE_OPTION_PATH_BINARIES:
  304. return "ENGINE_OPTION_PATH_BINARIES";
  305. case ENGINE_OPTION_PATH_RESOURCES:
  306. return "ENGINE_OPTION_PATH_RESOURCES";
  307. case ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR:
  308. return "ENGINE_OPTION_PREVENT_BAD_BEHAVIOUR";
  309. case ENGINE_OPTION_FRONTEND_WIN_ID:
  310. return "ENGINE_OPTION_FRONTEND_WIN_ID";
  311. }
  312. carla_stderr("CarlaBackend::EngineOption2Str(%i) - invalid option", option);
  313. return nullptr;
  314. }
  315. static inline
  316. const char* EngineProcessMode2Str(const EngineProcessMode mode) noexcept
  317. {
  318. switch (mode)
  319. {
  320. case ENGINE_PROCESS_MODE_SINGLE_CLIENT:
  321. return "ENGINE_PROCESS_MODE_SINGLE_CLIENT";
  322. case ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS:
  323. return "ENGINE_PROCESS_MODE_MULTIPLE_CLIENTS";
  324. case ENGINE_PROCESS_MODE_CONTINUOUS_RACK:
  325. return "ENGINE_PROCESS_MODE_CONTINUOUS_RACK";
  326. case ENGINE_PROCESS_MODE_PATCHBAY:
  327. return "ENGINE_PROCESS_MODE_PATCHBAY";
  328. case ENGINE_PROCESS_MODE_BRIDGE:
  329. return "ENGINE_PROCESS_MODE_BRIDGE";
  330. }
  331. carla_stderr("CarlaBackend::EngineProcessMode2Str(%i) - invalid mode", mode);
  332. return nullptr;
  333. }
  334. static inline
  335. const char* EngineTransportMode2Str(const EngineTransportMode mode) noexcept
  336. {
  337. switch (mode)
  338. {
  339. case ENGINE_TRANSPORT_MODE_INTERNAL:
  340. return "ENGINE_TRANSPORT_MODE_INTERNAL";
  341. case ENGINE_TRANSPORT_MODE_JACK:
  342. return "ENGINE_TRANSPORT_MODE_JACK";
  343. case ENGINE_TRANSPORT_MODE_PLUGIN:
  344. return "ENGINE_TRANSPORT_MODE_PLUGIN";
  345. case ENGINE_TRANSPORT_MODE_BRIDGE:
  346. return "ENGINE_TRANSPORT_MODE_BRIDGE";
  347. }
  348. carla_stderr("CarlaBackend::EngineTransportMode2Str(%i) - invalid mode", mode);
  349. return nullptr;
  350. }
  351. static inline
  352. const char* FileCallbackOpcode2Str(const FileCallbackOpcode opcode) noexcept
  353. {
  354. switch (opcode)
  355. {
  356. case FILE_CALLBACK_DEBUG:
  357. return "FILE_CALLBACK_DEBUG";
  358. case FILE_CALLBACK_OPEN:
  359. return "FILE_CALLBACK_OPEN";
  360. case FILE_CALLBACK_SAVE:
  361. return "FILE_CALLBACK_SAVE";
  362. }
  363. carla_stderr("CarlaBackend::FileCallbackOpcode2Str(%i) - invalid opcode", opcode);
  364. return nullptr;
  365. }
  366. static inline
  367. const char* PatchbayIcon2Str(const PatchbayIcon icon) noexcept
  368. {
  369. switch (icon)
  370. {
  371. case PATCHBAY_ICON_APPLICATION:
  372. return "PATCHBAY_ICON_APPLICATION";
  373. case PATCHBAY_ICON_PLUGIN:
  374. return "PATCHBAY_ICON_PLUGIN";
  375. case PATCHBAY_ICON_HARDWARE:
  376. return "PATCHBAY_ICON_HARDWARE";
  377. case PATCHBAY_ICON_CARLA:
  378. return "PATCHBAY_ICON_CARLA";
  379. case PATCHBAY_ICON_DISTRHO:
  380. return "PATCHBAY_ICON_DISTRHO";
  381. case PATCHBAY_ICON_FILE:
  382. return "PATCHBAY_ICON_FILE";
  383. }
  384. carla_stderr("CarlaBackend::PatchbayIcon2Str(%i) - invalid icon", icon);
  385. return nullptr;
  386. }
  387. // -----------------------------------------------------------------------
  388. static inline
  389. const char* getPluginTypeAsString(const PluginType type) noexcept
  390. {
  391. carla_debug("CarlaBackend::getPluginTypeAsString(%i:%s)", type, PluginType2Str(type));
  392. switch (type)
  393. {
  394. case PLUGIN_NONE:
  395. return "NONE";
  396. case PLUGIN_INTERNAL:
  397. return "INTERNAL";
  398. case PLUGIN_LADSPA:
  399. return "LADSPA";
  400. case PLUGIN_DSSI:
  401. return "DSSI";
  402. case PLUGIN_LV2:
  403. return "LV2";
  404. case PLUGIN_VST:
  405. return "VST";
  406. case PLUGIN_VST3:
  407. return "VST3";
  408. case PLUGIN_AU:
  409. return "AU";;
  410. case PLUGIN_GIG:
  411. return "GIG";
  412. case PLUGIN_SF2:
  413. return "SF2";
  414. case PLUGIN_SFZ:
  415. return "SFZ";
  416. }
  417. carla_stderr("CarlaBackend::getPluginTypeAsString(%i) - invalid type", type);
  418. return "NONE";
  419. }
  420. static inline
  421. PluginType getPluginTypeFromString(const char* const ctype) noexcept
  422. {
  423. CARLA_SAFE_ASSERT_RETURN(ctype != nullptr && ctype[0] != '\0', PLUGIN_NONE);
  424. carla_debug("CarlaBackend::getPluginTypeFromString(\"%s\")", ctype);
  425. CarlaString stype(ctype);
  426. if (stype.isEmpty())
  427. return PLUGIN_NONE;
  428. stype.toLower();
  429. if (stype == "none")
  430. return PLUGIN_NONE;
  431. if (stype == "internal")
  432. return PLUGIN_INTERNAL;
  433. if (stype == "ladspa")
  434. return PLUGIN_LADSPA;
  435. if (stype == "dssi")
  436. return PLUGIN_DSSI;
  437. if (stype == "lv2")
  438. return PLUGIN_LV2;
  439. if (stype == "vst")
  440. return PLUGIN_VST;
  441. if (stype == "vst3")
  442. return PLUGIN_VST3;
  443. if (stype == "au")
  444. return PLUGIN_AU;
  445. if (stype == "gig")
  446. return PLUGIN_GIG;
  447. if (stype == "sf2")
  448. return PLUGIN_SF2;
  449. if (stype == "sfz")
  450. return PLUGIN_SFZ;
  451. carla_stderr("CarlaBackend::getPluginTypeFromString(\"%s\") - invalid string type", ctype);
  452. return PLUGIN_NONE;
  453. }
  454. // -----------------------------------------------------------------------
  455. static inline
  456. PluginCategory getPluginCategoryFromName(const char* const name) noexcept
  457. {
  458. CARLA_SAFE_ASSERT_RETURN(name != nullptr && name[0] != '\0', PLUGIN_CATEGORY_NONE);
  459. carla_debug("CarlaBackend::getPluginCategoryFromName(\"%s\")", name);
  460. CarlaString sname(name);
  461. if (sname.isEmpty())
  462. return PLUGIN_CATEGORY_NONE;
  463. sname.toLower();
  464. // generic tags first
  465. if (sname.contains("delay"))
  466. return PLUGIN_CATEGORY_DELAY;
  467. if (sname.contains("reverb"))
  468. return PLUGIN_CATEGORY_DELAY;
  469. // filter
  470. if (sname.contains("filter"))
  471. return PLUGIN_CATEGORY_FILTER;
  472. // distortion
  473. if (sname.contains("distortion"))
  474. return PLUGIN_CATEGORY_DISTORTION;
  475. // dynamics
  476. if (sname.contains("dynamics"))
  477. return PLUGIN_CATEGORY_DYNAMICS;
  478. if (sname.contains("amplifier"))
  479. return PLUGIN_CATEGORY_DYNAMICS;
  480. if (sname.contains("compressor"))
  481. return PLUGIN_CATEGORY_DYNAMICS;
  482. if (sname.contains("enhancer"))
  483. return PLUGIN_CATEGORY_DYNAMICS;
  484. if (sname.contains("exciter"))
  485. return PLUGIN_CATEGORY_DYNAMICS;
  486. if (sname.contains("gate"))
  487. return PLUGIN_CATEGORY_DYNAMICS;
  488. if (sname.contains("limiter"))
  489. return PLUGIN_CATEGORY_DYNAMICS;
  490. // modulator
  491. if (sname.contains("modulator"))
  492. return PLUGIN_CATEGORY_MODULATOR;
  493. if (sname.contains("chorus"))
  494. return PLUGIN_CATEGORY_MODULATOR;
  495. if (sname.contains("flanger"))
  496. return PLUGIN_CATEGORY_MODULATOR;
  497. if (sname.contains("phaser"))
  498. return PLUGIN_CATEGORY_MODULATOR;
  499. if (sname.contains("saturator"))
  500. return PLUGIN_CATEGORY_MODULATOR;
  501. // utility
  502. if (sname.contains("utility"))
  503. return PLUGIN_CATEGORY_UTILITY;
  504. if (sname.contains("analyzer"))
  505. return PLUGIN_CATEGORY_UTILITY;
  506. if (sname.contains("converter"))
  507. return PLUGIN_CATEGORY_UTILITY;
  508. if (sname.contains("deesser"))
  509. return PLUGIN_CATEGORY_UTILITY;
  510. if (sname.contains("mixer"))
  511. return PLUGIN_CATEGORY_UTILITY;
  512. // common tags
  513. if (sname.contains("verb"))
  514. return PLUGIN_CATEGORY_DELAY;
  515. if (sname.contains("eq"))
  516. return PLUGIN_CATEGORY_EQ;
  517. if (sname.contains("tool"))
  518. return PLUGIN_CATEGORY_UTILITY;
  519. return PLUGIN_CATEGORY_NONE;
  520. }
  521. // -----------------------------------------------------------------------
  522. CARLA_BACKEND_END_NAMESPACE
  523. #endif // CARLA_BACKEND_UTILS_HPP_INCLUDED