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.

405 lines
14KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend utils
  4. # Copyright (C) 2011-2018 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 (Global)
  19. from os import environ
  20. from sys import argv
  21. # ------------------------------------------------------------------------------------------------------------
  22. # Imports (Custom)
  23. from carla_backend import *
  24. # ------------------------------------------------------------------------------------------------------------
  25. def getPluginTypeAsString(ptype):
  26. if ptype == PLUGIN_NONE:
  27. return "NONE"
  28. if ptype == PLUGIN_INTERNAL:
  29. return "Internal"
  30. if ptype == PLUGIN_LADSPA:
  31. return "LADSPA"
  32. if ptype == PLUGIN_DSSI:
  33. return "DSSI"
  34. if ptype == PLUGIN_LV2:
  35. return "LV2"
  36. if ptype == PLUGIN_VST2:
  37. return "VST2"
  38. if ptype == PLUGIN_VST3:
  39. return "VST3"
  40. if ptype == PLUGIN_AU:
  41. return "AU"
  42. if ptype == PLUGIN_SF2:
  43. return "SF2"
  44. if ptype == PLUGIN_SFZ:
  45. return "SFZ"
  46. if ptype == PLUGIN_JACK:
  47. return "JACK"
  48. print("getPluginTypeAsString(%i) - invalid type" % ptype);
  49. return "Unknown"
  50. def getPluginTypeFromString(stype):
  51. if not stype:
  52. return PLUGIN_NONE
  53. stype = stype.lower()
  54. if stype == "none":
  55. return PLUGIN_NONE
  56. if stype in ("internal", "native"):
  57. return PLUGIN_INTERNAL
  58. if stype == "ladspa":
  59. return PLUGIN_LADSPA
  60. if stype == "dssi":
  61. return PLUGIN_DSSI
  62. if stype == "lv2":
  63. return PLUGIN_LV2
  64. if stype in ("vst2", "vst"):
  65. return PLUGIN_VST2
  66. if stype == "vst3":
  67. return PLUGIN_VST3
  68. if stype in ("au", "audiounit"):
  69. return PLUGIN_AU
  70. if stype == "sf2":
  71. return PLUGIN_SF2
  72. if stype == "sfz":
  73. return PLUGIN_SFZ
  74. if stype == "jack":
  75. return PLUGIN_JACK
  76. print("getPluginTypeFromString(\"%s\") - invalid string type" % stype)
  77. return PLUGIN_NONE
  78. # ------------------------------------------------------------------------------------------------------------
  79. # Carla Utils API (C stuff)
  80. CarlaPipeClientHandle = c_void_p
  81. CarlaPipeCallbackFunc = CFUNCTYPE(None, c_void_p, c_char_p)
  82. # Information about an internal Carla plugin.
  83. # @see carla_get_cached_plugin_info()
  84. class CarlaCachedPluginInfo(Structure):
  85. _fields_ = [
  86. # Wherever the data in this struct is valid.
  87. # For performance reasons, plugins are only checked on request,
  88. # and as such, the count vs number of really valid plugins might not match.
  89. # Use this field to skip on plugins which cannot be loaded in Carla.
  90. ("valid", c_bool),
  91. # Plugin category.
  92. ("category", c_enum),
  93. # Plugin hints.
  94. # @see PluginHints
  95. ("hints", c_uint),
  96. # Number of audio inputs.
  97. ("audioIns", c_uint32),
  98. # Number of audio outputs.
  99. ("audioOuts", c_uint32),
  100. # Number of CV inputs.
  101. ("cvIns", c_uint32),
  102. # Number of CV outputs.
  103. ("cvOuts", c_uint32),
  104. # Number of MIDI inputs.
  105. ("midiIns", c_uint32),
  106. # Number of MIDI outputs.
  107. ("midiOuts", c_uint32),
  108. # Number of input parameters.
  109. ("parameterIns", c_uint32),
  110. # Number of output parameters.
  111. ("parameterOuts", c_uint32),
  112. # Plugin name.
  113. ("name", c_char_p),
  114. # Plugin label.
  115. ("label", c_char_p),
  116. # Plugin author/maker.
  117. ("maker", c_char_p),
  118. # Plugin copyright/license.
  119. ("copyright", c_char_p)
  120. ]
  121. # ------------------------------------------------------------------------------------------------------------
  122. # Carla Utils API (Python compatible stuff)
  123. # @see CarlaCachedPluginInfo
  124. PyCarlaCachedPluginInfo = {
  125. 'valid': False,
  126. 'category': PLUGIN_CATEGORY_NONE,
  127. 'hints': 0x0,
  128. 'audioIns': 0,
  129. 'audioOuts': 0,
  130. 'cvIns': 0,
  131. 'cvOuts': 0,
  132. 'midiIns': 0,
  133. 'midiOuts': 0,
  134. 'parameterIns': 0,
  135. 'parameterOuts': 0,
  136. 'name': "",
  137. 'label': "",
  138. 'maker': "",
  139. 'copyright': ""
  140. }
  141. # ------------------------------------------------------------------------------------------------------------
  142. # Carla Utils object using a DLL
  143. class CarlaUtils(object):
  144. def __init__(self, filename):
  145. object.__init__(self)
  146. self.lib = cdll.LoadLibrary(filename)
  147. #self.lib = CDLL(filename, RTLD_GLOBAL)
  148. self.lib.carla_get_complete_license_text.argtypes = None
  149. self.lib.carla_get_complete_license_text.restype = c_char_p
  150. self.lib.carla_get_juce_version.argtypes = None
  151. self.lib.carla_get_juce_version.restype = c_char_p
  152. self.lib.carla_get_supported_file_extensions.argtypes = None
  153. self.lib.carla_get_supported_file_extensions.restype = POINTER(c_char_p)
  154. self.lib.carla_get_supported_features.argtypes = None
  155. self.lib.carla_get_supported_features.restype = POINTER(c_char_p)
  156. self.lib.carla_get_cached_plugin_count.argtypes = [c_enum, c_char_p]
  157. self.lib.carla_get_cached_plugin_count.restype = c_uint
  158. self.lib.carla_get_cached_plugin_info.argtypes = [c_enum, c_uint]
  159. self.lib.carla_get_cached_plugin_info.restype = POINTER(CarlaCachedPluginInfo)
  160. self.lib.carla_fflush.argtypes = [c_bool]
  161. self.lib.carla_fflush.restype = None
  162. self.lib.carla_fputs.argtypes = [c_bool, c_char_p]
  163. self.lib.carla_fputs.restype = None
  164. self.lib.carla_set_process_name.argtypes = [c_char_p]
  165. self.lib.carla_set_process_name.restype = None
  166. self.lib.carla_pipe_client_new.argtypes = [POINTER(c_char_p), CarlaPipeCallbackFunc, c_void_p]
  167. self.lib.carla_pipe_client_new.restype = CarlaPipeClientHandle
  168. self.lib.carla_pipe_client_idle.argtypes = [CarlaPipeClientHandle]
  169. self.lib.carla_pipe_client_idle.restype = c_char_p
  170. self.lib.carla_pipe_client_is_running.argtypes = [CarlaPipeClientHandle]
  171. self.lib.carla_pipe_client_is_running.restype = c_bool
  172. self.lib.carla_pipe_client_lock.argtypes = [CarlaPipeClientHandle]
  173. self.lib.carla_pipe_client_lock.restype = None
  174. self.lib.carla_pipe_client_unlock.argtypes = [CarlaPipeClientHandle]
  175. self.lib.carla_pipe_client_unlock.restype = None
  176. self.lib.carla_pipe_client_readlineblock.argtypes = [CarlaPipeClientHandle, c_uint]
  177. self.lib.carla_pipe_client_readlineblock.restype = c_char_p
  178. self.lib.carla_pipe_client_readlineblock_bool.argtypes = [CarlaPipeClientHandle, c_uint]
  179. self.lib.carla_pipe_client_readlineblock_bool.restype = c_bool
  180. self.lib.carla_pipe_client_readlineblock_int.argtypes = [CarlaPipeClientHandle, c_uint]
  181. self.lib.carla_pipe_client_readlineblock_int.restype = c_int
  182. self.lib.carla_pipe_client_readlineblock_float.argtypes = [CarlaPipeClientHandle, c_uint]
  183. self.lib.carla_pipe_client_readlineblock_float.restype = c_double
  184. self.lib.carla_pipe_client_write_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  185. self.lib.carla_pipe_client_write_msg.restype = c_bool
  186. self.lib.carla_pipe_client_write_and_fix_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  187. self.lib.carla_pipe_client_write_and_fix_msg.restype = c_bool
  188. self.lib.carla_pipe_client_flush.argtypes = [CarlaPipeClientHandle]
  189. self.lib.carla_pipe_client_flush.restype = c_bool
  190. self.lib.carla_pipe_client_flush_and_unlock.argtypes = [CarlaPipeClientHandle]
  191. self.lib.carla_pipe_client_flush_and_unlock.restype = c_bool
  192. self.lib.carla_pipe_client_destroy.argtypes = [CarlaPipeClientHandle]
  193. self.lib.carla_pipe_client_destroy.restype = None
  194. self.lib.carla_cocoa_get_window.argtypes = [c_uintptr]
  195. self.lib.carla_cocoa_get_window.restype = c_int
  196. self.lib.carla_x11_reparent_window.argtypes = [c_uintptr, c_uintptr]
  197. self.lib.carla_x11_reparent_window.restype = None
  198. self.lib.carla_x11_move_window.argtypes = [c_uintptr, c_int, c_int]
  199. self.lib.carla_x11_move_window.restype = None
  200. self.lib.carla_x11_get_window_pos.argtypes = [c_uintptr]
  201. self.lib.carla_x11_get_window_pos.restype = POINTER(c_int)
  202. # use _putenv on windows
  203. if not WINDOWS:
  204. self.msvcrt = None
  205. return
  206. self.msvcrt = cdll.msvcrt
  207. self.msvcrt._putenv.argtypes = [c_char_p]
  208. self.msvcrt._putenv.restype = None
  209. # --------------------------------------------------------------------------------------------------------
  210. # set environment variable
  211. def setenv(self, key, value):
  212. environ[key] = value
  213. if WINDOWS:
  214. keyvalue = "%s=%s" % (key, value)
  215. self.msvcrt._putenv(keyvalue.encode("utf-8"))
  216. # unset environment variable
  217. def unsetenv(self, key):
  218. if environ.get(key) is not None:
  219. environ.pop(key)
  220. if WINDOWS:
  221. keyrm = "%s=" % key
  222. self.msvcrt._putenv(keyrm.encode("utf-8"))
  223. # --------------------------------------------------------------------------------------------------------
  224. # Get the complete license text of used third-party code and features.
  225. # Returned string is in basic html format.
  226. def get_complete_license_text(self):
  227. return charPtrToString(self.lib.carla_get_complete_license_text())
  228. # Get the juce version used in the current Carla build.
  229. def get_juce_version(self):
  230. return charPtrToString(self.lib.carla_get_juce_version())
  231. # Get the list of supported file extensions in carla_load_file().
  232. def get_supported_file_extensions(self):
  233. return charPtrPtrToStringList(self.lib.carla_get_supported_file_extensions())
  234. # Get the list of supported features in the current Carla build.
  235. def get_supported_features(self):
  236. return charPtrPtrToStringList(self.lib.carla_get_supported_features())
  237. # Get how many internal plugins are available.
  238. # Internal and LV2 plugin formats are cached and need to be discovered via this function.
  239. # Do not call this for any other plugin formats.
  240. def get_cached_plugin_count(self, ptype, pluginPath):
  241. return int(self.lib.carla_get_cached_plugin_count(ptype, pluginPath.encode("utf-8")))
  242. # Get information about a cached plugin.
  243. def get_cached_plugin_info(self, ptype, index):
  244. return structToDict(self.lib.carla_get_cached_plugin_info(ptype, index).contents)
  245. def fflush(self, err):
  246. self.lib.carla_fflush(err)
  247. def fputs(self, err, string):
  248. self.lib.carla_fputs(err, string.encode("utf-8"))
  249. def set_process_name(self, name):
  250. self.lib.carla_set_process_name(name.encode("utf-8"))
  251. def pipe_client_new(self, func):
  252. argc = len(argv)
  253. cagrvtype = c_char_p * argc
  254. cargv = cagrvtype()
  255. for i in range(argc):
  256. cargv[i] = c_char_p(argv[i].encode("utf-8"))
  257. self._pipeClientFunc = func
  258. self._pipeClientCallback = CarlaPipeCallbackFunc(func)
  259. return self.lib.carla_pipe_client_new(cargv, self._pipeClientCallback, None)
  260. def pipe_client_idle(self, handle):
  261. while True:
  262. try:
  263. msg = self.lib.carla_pipe_client_idle(handle)
  264. except OSError as e:
  265. print("pipe_client_idle", e)
  266. return
  267. if not msg:
  268. break
  269. self._pipeClientFunc(None, msg.decode("utf-8", errors="ignore"))
  270. def pipe_client_is_running(self, handle):
  271. return bool(self.lib.carla_pipe_client_is_running(handle))
  272. def pipe_client_lock(self, handle):
  273. self.lib.carla_pipe_client_lock(handle)
  274. def pipe_client_unlock(self, handle):
  275. self.lib.carla_pipe_client_unlock(handle)
  276. def pipe_client_readlineblock(self, handle, timeout):
  277. return charPtrToString(self.lib.carla_pipe_client_readlineblock(handle, timeout))
  278. def pipe_client_readlineblock_bool(self, handle, timeout):
  279. return bool(self.lib.carla_pipe_client_readlineblock_bool(handle, timeout))
  280. def pipe_client_readlineblock_int(self, handle, timeout):
  281. return int(self.lib.carla_pipe_client_readlineblock_int(handle, timeout))
  282. def pipe_client_readlineblock_float(self, handle, timeout):
  283. return float(self.lib.carla_pipe_client_readlineblock_float(handle, timeout))
  284. def pipe_client_write_msg(self, handle, msg):
  285. return bool(self.lib.carla_pipe_client_write_msg(handle, msg.encode("utf-8")))
  286. def pipe_client_write_and_fix_msg(self, handle, msg):
  287. return bool(self.lib.carla_pipe_client_write_and_fix_msg(handle, msg.encode("utf-8")))
  288. def pipe_client_flush(self, handle):
  289. return bool(self.lib.carla_pipe_client_flush(handle))
  290. def pipe_client_flush_and_unlock(self, handle):
  291. return bool(self.lib.carla_pipe_client_flush_and_unlock(handle))
  292. def pipe_client_destroy(self, handle):
  293. self.lib.carla_pipe_client_destroy(handle)
  294. def cocoa_get_window(self, winId):
  295. return self.lib.carla_cocoa_get_window(winId)
  296. def x11_reparent_window(self, winId1, winId2):
  297. self.lib.carla_x11_reparent_window(winId1, winId2)
  298. def x11_move_window(self, winId, x, y):
  299. self.lib.carla_x11_move_window(winId, x, y)
  300. def x11_get_window_pos(self, winId):
  301. data = self.lib.carla_x11_get_window_pos(winId)
  302. return tuple(int(data[i]) for i in range(4))
  303. # ------------------------------------------------------------------------------------------------------------