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.

347 lines
12KB

  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_SF2:
  39. return "SF2"
  40. if ptype == PLUGIN_SFZ:
  41. return "SFZ"
  42. if ptype == PLUGIN_JACK:
  43. return "JACK"
  44. print("getPluginTypeAsString(%i) - invalid type" % ptype);
  45. return "Unknown"
  46. def getPluginTypeFromString(stype):
  47. if not stype:
  48. return PLUGIN_NONE
  49. stype = stype.lower()
  50. if stype == "none":
  51. return PLUGIN_NONE
  52. if stype in ("internal", "native"):
  53. return PLUGIN_INTERNAL
  54. if stype == "ladspa":
  55. return PLUGIN_LADSPA
  56. if stype == "dssi":
  57. return PLUGIN_DSSI
  58. if stype == "lv2":
  59. return PLUGIN_LV2
  60. if stype in ("vst2", "vst"):
  61. return PLUGIN_VST2
  62. if stype == "sf2":
  63. return PLUGIN_SF2
  64. if stype == "sfz":
  65. return PLUGIN_SFZ
  66. if stype == "jack":
  67. return PLUGIN_JACK
  68. print("getPluginTypeFromString(\"%s\") - invalid string type" % stype)
  69. return PLUGIN_NONE
  70. # ------------------------------------------------------------------------------------------------------------
  71. # Carla Utils API (C stuff)
  72. CarlaPipeClientHandle = c_void_p
  73. CarlaPipeCallbackFunc = CFUNCTYPE(None, c_void_p, c_char_p)
  74. # Information about an internal Carla plugin.
  75. # @see carla_get_cached_plugin_info()
  76. class CarlaCachedPluginInfo(Structure):
  77. _fields_ = [
  78. # Plugin category.
  79. ("category", c_enum),
  80. # Plugin hints.
  81. # @see PluginHints
  82. ("hints", c_uint),
  83. # Number of audio inputs.
  84. ("audioIns", c_uint32),
  85. # Number of audio outputs.
  86. ("audioOuts", c_uint32),
  87. # Number of MIDI inputs.
  88. ("midiIns", c_uint32),
  89. # Number of MIDI outputs.
  90. ("midiOuts", c_uint32),
  91. # Number of input parameters.
  92. ("parameterIns", c_uint32),
  93. # Number of output parameters.
  94. ("parameterOuts", c_uint32),
  95. # Plugin name.
  96. ("name", c_char_p),
  97. # Plugin label.
  98. ("label", c_char_p),
  99. # Plugin author/maker.
  100. ("maker", c_char_p),
  101. # Plugin copyright/license.
  102. ("copyright", c_char_p)
  103. ]
  104. # ------------------------------------------------------------------------------------------------------------
  105. # Carla Utils API (Python compatible stuff)
  106. # @see CarlaCachedPluginInfo
  107. PyCarlaCachedPluginInfo = {
  108. 'category': PLUGIN_CATEGORY_NONE,
  109. 'hints': 0x0,
  110. 'audioIns': 0,
  111. 'audioOuts': 0,
  112. 'midiIns': 0,
  113. 'midiOuts': 0,
  114. 'parameterIns': 0,
  115. 'parameterOuts': 0,
  116. 'name': "",
  117. 'label': "",
  118. 'maker': "",
  119. 'copyright': ""
  120. }
  121. # ------------------------------------------------------------------------------------------------------------
  122. # Carla Utils object using a DLL
  123. class CarlaUtils(object):
  124. def __init__(self, filename):
  125. object.__init__(self)
  126. self.lib = cdll.LoadLibrary(filename)
  127. #self.lib = CDLL(filename, RTLD_GLOBAL)
  128. self.lib.carla_get_complete_license_text.argtypes = None
  129. self.lib.carla_get_complete_license_text.restype = c_char_p
  130. self.lib.carla_get_supported_file_extensions.argtypes = None
  131. self.lib.carla_get_supported_file_extensions.restype = POINTER(c_char_p)
  132. self.lib.carla_get_supported_features.argtypes = None
  133. self.lib.carla_get_supported_features.restype = POINTER(c_char_p)
  134. self.lib.carla_get_cached_plugin_count.argtypes = [c_enum, c_char_p]
  135. self.lib.carla_get_cached_plugin_count.restype = c_uint
  136. self.lib.carla_get_cached_plugin_info.argtypes = [c_enum, c_uint]
  137. self.lib.carla_get_cached_plugin_info.restype = POINTER(CarlaCachedPluginInfo)
  138. self.lib.carla_fflush.argtypes = [c_bool]
  139. self.lib.carla_fflush.restype = None
  140. self.lib.carla_fputs.argtypes = [c_bool, c_char_p]
  141. self.lib.carla_fputs.restype = None
  142. self.lib.carla_set_process_name.argtypes = [c_char_p]
  143. self.lib.carla_set_process_name.restype = None
  144. self.lib.carla_pipe_client_new.argtypes = [POINTER(c_char_p), CarlaPipeCallbackFunc, c_void_p]
  145. self.lib.carla_pipe_client_new.restype = CarlaPipeClientHandle
  146. self.lib.carla_pipe_client_idle.argtypes = [CarlaPipeClientHandle]
  147. self.lib.carla_pipe_client_idle.restype = None
  148. self.lib.carla_pipe_client_is_running.argtypes = [CarlaPipeClientHandle]
  149. self.lib.carla_pipe_client_is_running.restype = c_bool
  150. self.lib.carla_pipe_client_lock.argtypes = [CarlaPipeClientHandle]
  151. self.lib.carla_pipe_client_lock.restype = None
  152. self.lib.carla_pipe_client_unlock.argtypes = [CarlaPipeClientHandle]
  153. self.lib.carla_pipe_client_unlock.restype = None
  154. self.lib.carla_pipe_client_readlineblock.argtypes = [CarlaPipeClientHandle, c_uint]
  155. self.lib.carla_pipe_client_readlineblock.restype = c_char_p
  156. self.lib.carla_pipe_client_write_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  157. self.lib.carla_pipe_client_write_msg.restype = c_bool
  158. self.lib.carla_pipe_client_write_and_fix_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  159. self.lib.carla_pipe_client_write_and_fix_msg.restype = c_bool
  160. self.lib.carla_pipe_client_flush.argtypes = [CarlaPipeClientHandle]
  161. self.lib.carla_pipe_client_flush.restype = c_bool
  162. self.lib.carla_pipe_client_flush_and_unlock.argtypes = [CarlaPipeClientHandle]
  163. self.lib.carla_pipe_client_flush_and_unlock.restype = c_bool
  164. self.lib.carla_pipe_client_destroy.argtypes = [CarlaPipeClientHandle]
  165. self.lib.carla_pipe_client_destroy.restype = None
  166. self.lib.carla_x11_reparent_window.argtypes = [c_uintptr, c_uintptr]
  167. self.lib.carla_x11_reparent_window.restype = None
  168. self.lib.carla_x11_move_window.argtypes = [c_uintptr, c_int, c_int]
  169. self.lib.carla_x11_move_window.restype = None
  170. self.lib.carla_x11_get_window_pos.argtypes = [c_uintptr]
  171. self.lib.carla_x11_get_window_pos.restype = POINTER(c_int)
  172. self.lib.carla_cocoa_get_window.argtypes = [c_uintptr]
  173. self.lib.carla_cocoa_get_window.restype = c_int
  174. # use _putenv on windows
  175. if not WINDOWS:
  176. self.msvcrt = None
  177. return
  178. self.msvcrt = cdll.msvcrt
  179. self.msvcrt._putenv.argtypes = [c_char_p]
  180. self.msvcrt._putenv.restype = None
  181. # --------------------------------------------------------------------------------------------------------
  182. # set environment variable
  183. def setenv(self, key, value):
  184. environ[key] = value
  185. if WINDOWS:
  186. keyvalue = "%s=%s" % (key, value)
  187. self.msvcrt._putenv(keyvalue.encode("utf-8"))
  188. # unset environment variable
  189. def unsetenv(self, key):
  190. if environ.get(key) is not None:
  191. environ.pop(key)
  192. if WINDOWS:
  193. keyrm = "%s=" % key
  194. self.msvcrt._putenv(keyrm.encode("utf-8"))
  195. # --------------------------------------------------------------------------------------------------------
  196. # Get the complete license text of used third-party code and features.
  197. # Returned string is in basic html format.
  198. def get_complete_license_text(self):
  199. return charPtrToString(self.lib.carla_get_complete_license_text())
  200. # Get the list of supported file extensions in carla_load_file().
  201. def get_supported_file_extensions(self):
  202. return charPtrPtrToStringList(self.lib.carla_get_supported_file_extensions())
  203. # Get the list of supported features in the current Carla build.
  204. def get_supported_features(self):
  205. return charPtrPtrToStringList(self.lib.carla_get_supported_features())
  206. # Get how many internal plugins are available.
  207. def get_cached_plugin_count(self, ptype, pluginPath):
  208. return int(self.lib.carla_get_cached_plugin_count(ptype, pluginPath.encode("utf-8")))
  209. # Get information about a cached plugin.
  210. def get_cached_plugin_info(self, ptype, index):
  211. return structToDict(self.lib.carla_get_cached_plugin_info(ptype, index).contents)
  212. def fflush(self, err):
  213. self.lib.carla_fflush(err)
  214. def fputs(self, err, string):
  215. self.lib.carla_fputs(err, string.encode("utf-8"))
  216. def set_process_name(self, name):
  217. self.lib.carla_set_process_name(name.encode("utf-8"))
  218. def pipe_client_new(self, func):
  219. argc = len(argv)
  220. cagrvtype = c_char_p * argc
  221. cargv = cagrvtype()
  222. for i in range(argc):
  223. cargv[i] = c_char_p(argv[i].encode("utf-8"))
  224. self._pipeClientCallback = CarlaPipeCallbackFunc(func)
  225. return self.lib.carla_pipe_client_new(cargv, self._pipeClientCallback, None)
  226. def pipe_client_idle(self, handle):
  227. try:
  228. self.lib.carla_pipe_client_idle(handle)
  229. except OSError as e:
  230. print("pipe_client_idle", e)
  231. def pipe_client_is_running(self, handle):
  232. return bool(self.lib.carla_pipe_client_is_running(handle))
  233. def pipe_client_lock(self, handle):
  234. self.lib.carla_pipe_client_lock(handle)
  235. def pipe_client_unlock(self, handle):
  236. self.lib.carla_pipe_client_unlock(handle)
  237. def pipe_client_readlineblock(self, handle, timeout):
  238. return charPtrToString(self.lib.carla_pipe_client_readlineblock(handle, timeout))
  239. def pipe_client_write_msg(self, handle, msg):
  240. return bool(self.lib.carla_pipe_client_write_msg(handle, msg.encode("utf-8")))
  241. def pipe_client_write_and_fix_msg(self, handle, msg):
  242. return bool(self.lib.carla_pipe_client_write_and_fix_msg(handle, msg.encode("utf-8")))
  243. def pipe_client_flush(self, handle):
  244. return bool(self.lib.carla_pipe_client_flush(handle))
  245. def pipe_client_flush_and_unlock(self, handle):
  246. return bool(self.lib.carla_pipe_client_flush_and_unlock(handle))
  247. def pipe_client_destroy(self, handle):
  248. self.lib.carla_pipe_client_destroy(handle)
  249. def x11_reparent_window(self, winId1, winId2):
  250. self.lib.carla_x11_reparent_window(winId1, winId2)
  251. def x11_move_window(self, winId, x, y):
  252. self.lib.carla_x11_move_window(winId, x, y)
  253. def x11_get_window_pos(self, winId):
  254. data = self.lib.carla_x11_get_window_pos(winId)
  255. return (int(data[0]), int(data[1]))
  256. def cocoa_get_window(self, winId):
  257. return self.lib.carla_cocoa_get_window(winId)
  258. # ------------------------------------------------------------------------------------------------------------