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.

255 lines
7.9KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Script to start carla plugin bridges
  4. # Copyright (C) 2015 Filipe Coelho <falktx@falktx.com>
  5. #
  6. # This program is free software; you can redistribute it and/or
  7. # modify it under the terms of the GNU General Public License as
  8. # published by the Free Software Foundation; either version 2 of
  9. # the License, or any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # For a full copy of the GNU General Public License see the doc/GPL.txt file.
  17. # --------------------------------------------------------------------------------------------------------
  18. # Imports
  19. import os
  20. import sys
  21. # --------------------------------------------------------------------------------------------------------
  22. # Setup
  23. INSTALL_PREFIX = "X-PREFIX-X"
  24. CARLA_LIBDIR = os.path.join(INSTALL_PREFIX, "lib", "carla")
  25. CARLA_RESDIR = os.path.join(INSTALL_PREFIX, "share", "carla", "resources")
  26. # --------------------------------------------------------------------------------------------------------
  27. # Check for enough arguments
  28. usageMsg = """\
  29. usage: %s [arch (optional)] [format] [filename/uri] [label (optional)] [uniqueId (optional)]
  30. Possible archs:
  31. - native (default)
  32. - linux32
  33. - linux64
  34. - win32
  35. - win64
  36. Possible formats:
  37. - internal
  38. - ladspa
  39. - dssi
  40. - lv2
  41. - vst|vst2
  42. - gig
  43. - sf2
  44. - sfz
  45. Examples:
  46. $ %s internal midisplit
  47. $ %s dssi /usr/lib/dssi/whysynth.so
  48. $ %s lv2 http://calf.sourceforge.net/plugins/Compressor
  49. $ %s native vst /usr/lib/vst/TAL-NoiseMaker.so
  50. $ %s win32 vst \"~/.wine/drive_c/Program Files (x86)/VstPlugins/Kontakt 5.dll\"
  51. Format can be skipped for internal and lv2 plugins (auto-detected), like this:
  52. $ %s midipattern
  53. $ %s http://synthv1.sourceforge.net/lv2""" % ((sys.argv[0],)*8)
  54. def printUsageAndQuit():
  55. print(usageMsg)
  56. sys.exit(0)
  57. if len(sys.argv) < 2:
  58. printUsageAndQuit()
  59. # --------------------------------------------------------------------------------------------------------
  60. # Initialize variables to null
  61. ARCH = "native"
  62. FORMAT = "none"
  63. FILENAME = ""
  64. LABEL = ""
  65. UNIQUEID = 0
  66. # --------------------------------------------------------------------------------------------------------
  67. # Set arch
  68. arg = 1
  69. if sys.argv[arg] in ("native", "posix32", "posix64", "linux32", "linux64", "mac32", "mac64", "win32", "win64"):
  70. ARCH = sys.argv[arg].replace("linux", "posix").replace("mac", "posix")
  71. arg += 1
  72. if len(sys.argv) == arg:
  73. printUsageAndQuit()
  74. # --------------------------------------------------------------------------------------------------------
  75. # Set format
  76. if sys.argv[arg] in ("internal", "ladspa", "dssi", "lv2", "vst", "vst2", "gig", "sf2", "sfz"):
  77. FORMAT = sys.argv[arg]
  78. arg += 1
  79. if FORMAT == "vst":
  80. FORMAT = "vst2"
  81. elif len(sys.argv) == arg+1:
  82. FORMAT = "lv2" if ":" in sys.argv[arg] else "internal"
  83. else:
  84. print("Invalid format")
  85. sys.exit(1)
  86. if len(sys.argv) == arg:
  87. printUsageAndQuit()
  88. # --------------------------------------------------------------------------------------------------------
  89. # Set filename/uri
  90. if FORMAT in ("internal", "lv2"):
  91. LABEL = sys.argv[arg]
  92. arg += 1
  93. else:
  94. FILENAME = os.path.expanduser(sys.argv[arg])
  95. arg += 1
  96. # --------------------------------------------------------------------------------------------------------
  97. # Set label (optional)
  98. if len(sys.argv) > arg:
  99. if FORMAT in ("internal", "lv2"):
  100. print("label/uri already set, ignoring 2nd label")
  101. else:
  102. LABEL = sys.argv[arg]
  103. arg += 1
  104. # --------------------------------------------------------------------------------------------------------
  105. # Set uniqueId (optional)
  106. if len(sys.argv) > arg:
  107. if FORMAT in ("internal", "dssi", "lv2", "au", "gig", "sf2", "sfz"):
  108. print("uniqueId is not used in this format, ignored")
  109. else:
  110. try:
  111. UNIQUEID = int(sys.argv[arg])
  112. except:
  113. print("uniqueId must be a number")
  114. sys.exit(1)
  115. arg += 1
  116. # --------------------------------------------------------------------------------------------------------
  117. # Others?
  118. if len(sys.argv) > arg:
  119. print("Got too many arguments, ignoring past uniqueId")
  120. # --------------------------------------------------------------------------------------------------------
  121. # Set bridge binary
  122. BRIDGE = os.path.join(CARLA_LIBDIR, "carla-bridge-" + ARCH)
  123. if ARCH in ("win32", "win64"):
  124. BRIDGE = BRIDGE + ".exe"
  125. # --------------------------------------------------------------------------------------------------------
  126. # Check for existing carla folder
  127. if not os.path.exists(CARLA_LIBDIR):
  128. print("Carla library folder does not exist, is Carla installed?")
  129. sys.exit(2)
  130. if not os.path.exists(CARLA_RESDIR):
  131. print("Carla resource folder does not exist, is Carla installed?")
  132. sys.exit(2)
  133. # --------------------------------------------------------------------------------------------------------
  134. # Check for existing arch binary
  135. if not os.path.exists(BRIDGE):
  136. print("Carla plugin bridge for the requested arch (%s) does not exist" % (ARCH,))
  137. sys.exit(2)
  138. # --------------------------------------------------------------------------------------------------------
  139. # Final checks
  140. if ARCH not in ("native", "posix32", "posix64", "win32", "win64"):
  141. print("Invalid arch")
  142. sys.exit(1)
  143. if FORMAT not in ("internal", "ladspa", "dssi", "lv2", "vst2", "gig", "sf2", "sfz"):
  144. print("Invalid format")
  145. sys.exit(1)
  146. if FILENAME and not os.path.exists(FILENAME):
  147. print("Requested filename does not exist")
  148. sys.exit(1)
  149. # --------------------------------------------------------------------------------------------------------
  150. # Setup environment
  151. #os.environ["ENGINE_OPTION_UIS_ALWAYS_ON_TOP"] = "false"
  152. #os.environ["ENGINE_OPTION_MAX_PARAMETERS"] = "200"
  153. #os.environ["ENGINE_OPTION_UI_BRIDGES_TIMEOUT"] = "3000"
  154. LADSPA_PATH = os.getenv("LADSPA_PATH")
  155. DSSI_PATH = os.getenv("DSSI_PATH")
  156. LV2_PATH = os.getenv("LV2_PATH")
  157. VST2_PATH = os.getenv("VST_PATH")
  158. GIG_PATH = os.getenv("GIG_PATH")
  159. SF2_PATH = os.getenv("SF2_PATH")
  160. SFZ_PATH = os.getenv("SFZ_PATH")
  161. if LADSPA_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_LADSPA"] = LADSPA_PATH
  162. if DSSI_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_DSSI"] = DSSI_PATH
  163. if LV2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_LV2"] = LV2_PATH
  164. if VST2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_VST2"] = VST2_PATH
  165. if GIG_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_GIG"] = GIG_PATH
  166. if SF2_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_SF2"] = SF2_PATH
  167. if SFZ_PATH is not None: os.environ["ENGINE_OPTION_PLUGIN_PATH_SFZ"] = SFZ_PATH
  168. os.environ["ENGINE_OPTION_PATH_BINARIES"] = CARLA_LIBDIR
  169. os.environ["ENGINE_OPTION_PATH_RESOURCES"] = CARLA_RESDIR
  170. # --------------------------------------------------------------------------------------------------------
  171. CARLA_CLIENT_NAME = os.getenv("CARLA_CLIENT_NAME")
  172. LADISH_APP_NAME = os.getenv("LADISH_APP_NAME")
  173. if CARLA_CLIENT_NAME is not None:
  174. os.environ["CARLA_CLIENT_NAME"] = CARLA_CLIENT_NAME
  175. elif CARLA_CLIENT_NAME is not None:
  176. os.environ["CARLA_CLIENT_NAME"] = LADISH_APP_NAME
  177. else:
  178. os.environ["CARLA_CLIENT_NAME"] = "(none)"
  179. # --------------------------------------------------------------------------------------------------------
  180. # Exec
  181. command = []
  182. if ARCH == "win32":
  183. command.append("wine")
  184. elif ARCH == "win64":
  185. command.append("wine64")
  186. command.append(BRIDGE)
  187. command.append(FORMAT)
  188. command.append(FILENAME or "(none)")
  189. command.append(LABEL or "(none)")
  190. command.append(str(UNIQUEID))
  191. print(command)
  192. os.execvp(command[0], command)
  193. # --------------------------------------------------------------------------------------------------------