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.

carla-base.cpp 4.4KB

11 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. /*
  2. * Carla Native Plugins
  3. * Copyright (C) 2013-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 "CarlaEngine.hpp"
  18. #include "CarlaPlugin.hpp"
  19. #include "CarlaHost.h"
  20. #include "CarlaNative.h"
  21. #include "CarlaBackendUtils.hpp"
  22. #include "LinkedList.hpp"
  23. #ifdef CARLA_NATIVE_PLUGIN_DSSI
  24. # include "dssi/dssi.h"
  25. #endif
  26. #ifdef CARLA_NATIVE_PLUGIN_LV2
  27. # include "lv2/lv2.h"
  28. #endif
  29. using CarlaBackend::CarlaPlugin;
  30. // -----------------------------------------------------------------------
  31. CARLA_EXTERN_C
  32. std::size_t carla_getNativePluginCount() noexcept;
  33. CARLA_EXTERN_C
  34. const NativePluginDescriptor* carla_getNativePluginDescriptor(const std::size_t index) noexcept;
  35. // -----------------------------------------------------------------------
  36. // Plugin List
  37. struct PluginListManager {
  38. PluginListManager()
  39. #ifdef CARLA_NATIVE_PLUGIN_DSSI
  40. : dssiDescs(),
  41. #endif
  42. #ifdef CARLA_NATIVE_PLUGIN_LV2
  43. : lv2Descs(),
  44. #endif
  45. #ifdef CARLA_NATIVE_PLUGIN_VST
  46. : _dummy(0),
  47. #endif
  48. descs()
  49. {
  50. for (std::size_t i=0, count = carla_getNativePluginCount(); i < count; ++i)
  51. {
  52. const NativePluginDescriptor* const desc(carla_getNativePluginDescriptor(i));
  53. if (std::strcmp(desc->label, "lfo" ) == 0 ||
  54. std::strcmp(desc->label, "midichanfilter" ) == 0 ||
  55. std::strcmp(desc->label, "midigain" ) == 0 ||
  56. std::strcmp(desc->label, "midijoin" ) == 0 ||
  57. std::strcmp(desc->label, "midisplit" ) == 0 ||
  58. std::strcmp(desc->label, "midithrough" ) == 0 ||
  59. std::strcmp(desc->label, "miditranspose" ) == 0 ||
  60. std::strcmp(desc->label, "midipattern" ) == 0 ||
  61. std::strcmp(desc->label, "carlarack" ) == 0 ||
  62. std::strcmp(desc->label, "carlapatchbay" ) == 0 ||
  63. std::strcmp(desc->label, "carlapatchbay3s") == 0 ||
  64. std::strcmp(desc->label, "carlapatchbay16") == 0 ||
  65. std::strcmp(desc->label, "carlapatchbay32") == 0 ||
  66. std::strcmp(desc->label, "bigmeter" ) == 0 ||
  67. std::strcmp(desc->label, "notes" ) == 0 ||
  68. std::strcmp(desc->label, "at1" ) == 0 ||
  69. std::strcmp(desc->label, "bls1" ) == 0 ||
  70. std::strcmp(desc->label, "rev1-ambisonic" ) == 0 ||
  71. std::strcmp(desc->label, "rev1-stereo" ) == 0)
  72. {
  73. descs.append(desc);
  74. }
  75. }
  76. }
  77. ~PluginListManager()
  78. {
  79. #ifdef CARLA_NATIVE_PLUGIN_DSSI
  80. for (LinkedList<const DSSI_Descriptor*>::Itenerator it = dssiDescs.begin2(); it.valid(); it.next())
  81. {
  82. const DSSI_Descriptor* const dssiDesc(it.getValue());
  83. CARLA_SAFE_ASSERT_CONTINUE(dssiDesc != nullptr);
  84. //delete[] lv2Desc->URI;
  85. delete dssiDesc;
  86. }
  87. dssiDescs.clear();
  88. #endif
  89. #ifdef CARLA_NATIVE_PLUGIN_LV2
  90. for (LinkedList<const LV2_Descriptor*>::Itenerator it = lv2Descs.begin2(); it.valid(); it.next())
  91. {
  92. const LV2_Descriptor* const lv2Desc(it.getValue(nullptr));
  93. CARLA_SAFE_ASSERT_CONTINUE(lv2Desc != nullptr);
  94. delete[] lv2Desc->URI;
  95. delete lv2Desc;
  96. }
  97. lv2Descs.clear();
  98. #endif
  99. descs.clear();
  100. }
  101. static PluginListManager& getInstance()
  102. {
  103. static PluginListManager plm;
  104. return plm;
  105. }
  106. #ifdef CARLA_NATIVE_PLUGIN_DSSI
  107. LinkedList<const DSSI_Descriptor*> dssiDescs;
  108. #endif
  109. #ifdef CARLA_NATIVE_PLUGIN_LV2
  110. LinkedList<const LV2_Descriptor*> lv2Descs;
  111. #endif
  112. #ifdef CARLA_NATIVE_PLUGIN_VST
  113. char _dummy;
  114. #endif
  115. LinkedList<const NativePluginDescriptor*> descs;
  116. };
  117. // -----------------------------------------------------------------------