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.

353 lines
12KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # Carla Backend utils
  4. # Copyright (C) 2011-2014 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_GIG:
  43. return "GIG"
  44. if ptype == PLUGIN_SF2:
  45. return "SF2"
  46. if ptype == PLUGIN_SFZ:
  47. return "SFZ"
  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 == "gig":
  71. return PLUGIN_GIG
  72. if stype == "sf2":
  73. return PLUGIN_SF2
  74. if stype == "sfz":
  75. return PLUGIN_SFZ
  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. # Plugin category.
  87. ("category", c_enum),
  88. # Plugin hints.
  89. # @see PluginHints
  90. ("hints", c_uint),
  91. # Number of audio inputs.
  92. ("audioIns", c_uint32),
  93. # Number of audio outputs.
  94. ("audioOuts", c_uint32),
  95. # Number of MIDI inputs.
  96. ("midiIns", c_uint32),
  97. # Number of MIDI outputs.
  98. ("midiOuts", c_uint32),
  99. # Number of input parameters.
  100. ("parameterIns", c_uint32),
  101. # Number of output parameters.
  102. ("parameterOuts", c_uint32),
  103. # Plugin name.
  104. ("name", c_char_p),
  105. # Plugin label.
  106. ("label", c_char_p),
  107. # Plugin author/maker.
  108. ("maker", c_char_p),
  109. # Plugin copyright/license.
  110. ("copyright", c_char_p)
  111. ]
  112. # ------------------------------------------------------------------------------------------------------------
  113. # Carla Utils API (Python compatible stuff)
  114. # @see CarlaCachedPluginInfo
  115. PyCarlaCachedPluginInfo = {
  116. 'category': PLUGIN_CATEGORY_NONE,
  117. 'hints': 0x0,
  118. 'audioIns': 0,
  119. 'audioOuts': 0,
  120. 'midiIns': 0,
  121. 'midiOuts': 0,
  122. 'parameterIns': 0,
  123. 'parameterOuts': 0,
  124. 'name': "",
  125. 'label': "",
  126. 'maker': "",
  127. 'copyright': ""
  128. }
  129. # ------------------------------------------------------------------------------------------------------------
  130. # Carla Utils object using a DLL
  131. class CarlaUtils(object):
  132. def __init__(self, filename):
  133. object.__init__(self)
  134. self.lib = cdll.LoadLibrary(filename)
  135. #self.lib = CDLL(filename, RTLD_GLOBAL)
  136. self.lib.carla_get_complete_license_text.argtypes = None
  137. self.lib.carla_get_complete_license_text.restype = c_char_p
  138. self.lib.carla_get_juce_version.argtypes = None
  139. self.lib.carla_get_juce_version.restype = c_char_p
  140. self.lib.carla_get_supported_file_extensions.argtypes = None
  141. self.lib.carla_get_supported_file_extensions.restype = c_char_p
  142. self.lib.carla_get_cached_plugin_count.argtypes = [c_enum, c_char_p]
  143. self.lib.carla_get_cached_plugin_count.restype = c_uint
  144. self.lib.carla_get_cached_plugin_info.argtypes = [c_enum, c_uint]
  145. self.lib.carla_get_cached_plugin_info.restype = POINTER(CarlaCachedPluginInfo)
  146. self.lib.carla_fflush.argtypes = [c_bool]
  147. self.lib.carla_fflush.restype = None
  148. self.lib.carla_fputs.argtypes = [c_bool, c_char_p]
  149. self.lib.carla_fputs.restype = None
  150. self.lib.carla_set_process_name.argtypes = [c_char_p]
  151. self.lib.carla_set_process_name.restype = None
  152. self.lib.carla_pipe_client_new.argtypes = [POINTER(c_char_p), CarlaPipeCallbackFunc, c_void_p]
  153. self.lib.carla_pipe_client_new.restype = CarlaPipeClientHandle
  154. self.lib.carla_pipe_client_idle.argtypes = [CarlaPipeClientHandle]
  155. self.lib.carla_pipe_client_idle.restype = None
  156. self.lib.carla_pipe_client_is_running.argtypes = [CarlaPipeClientHandle]
  157. self.lib.carla_pipe_client_is_running.restype = c_bool
  158. self.lib.carla_pipe_client_lock.argtypes = [CarlaPipeClientHandle]
  159. self.lib.carla_pipe_client_lock.restype = None
  160. self.lib.carla_pipe_client_unlock.argtypes = [CarlaPipeClientHandle]
  161. self.lib.carla_pipe_client_unlock.restype = None
  162. self.lib.carla_pipe_client_readlineblock.argtypes = [CarlaPipeClientHandle, c_uint]
  163. self.lib.carla_pipe_client_readlineblock.restype = c_char_p
  164. self.lib.carla_pipe_client_write_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  165. self.lib.carla_pipe_client_write_msg.restype = c_bool
  166. self.lib.carla_pipe_client_write_and_fix_msg.argtypes = [CarlaPipeClientHandle, c_char_p]
  167. self.lib.carla_pipe_client_write_and_fix_msg.restype = c_bool
  168. self.lib.carla_pipe_client_flush.argtypes = [CarlaPipeClientHandle]
  169. self.lib.carla_pipe_client_flush.restype = c_bool
  170. self.lib.carla_pipe_client_flush_and_unlock.argtypes = [CarlaPipeClientHandle]
  171. self.lib.carla_pipe_client_flush_and_unlock.restype = c_bool
  172. self.lib.carla_pipe_client_destroy.argtypes = [CarlaPipeClientHandle]
  173. self.lib.carla_pipe_client_destroy.restype = None
  174. self.lib.carla_x11_reparent_window.argtypes = [c_uintptr, c_uintptr]
  175. self.lib.carla_x11_reparent_window.restype = None
  176. self.lib.carla_x11_move_window.argtypes = [c_uintptr, c_int, c_int]
  177. self.lib.carla_x11_move_window.restype = None
  178. self.lib.carla_x11_get_window_pos.argtypes = [c_uintptr]
  179. self.lib.carla_x11_get_window_pos.restype = POINTER(c_int)
  180. # use _putenv on windows
  181. if not WINDOWS:
  182. self.msvcrt = None
  183. return
  184. self.msvcrt = cdll.msvcrt
  185. self.msvcrt._putenv.argtypes = [c_char_p]
  186. self.msvcrt._putenv.restype = None
  187. # --------------------------------------------------------------------------------------------------------
  188. # set environment variable
  189. def setenv(self, key, value):
  190. environ[key] = value
  191. if WINDOWS:
  192. keyvalue = "%s=%s" % (key, value)
  193. self.msvcrt._putenv(keyvalue.encode("utf-8"))
  194. # unset environment variable
  195. def unsetenv(self, key):
  196. if environ.get(key) is not None:
  197. environ.pop(key)
  198. if WINDOWS:
  199. keyrm = "%s=" % key
  200. self.msvcrt._putenv(keyrm.encode("utf-8"))
  201. # --------------------------------------------------------------------------------------------------------
  202. # Get the complete license text of used third-party code and features.
  203. # Returned string is in basic html format.
  204. def get_complete_license_text(self):
  205. return charPtrToString(self.lib.carla_get_complete_license_text())
  206. # Get the juce version used in the current Carla build.
  207. def get_juce_version(self):
  208. return charPtrToString(self.lib.carla_get_juce_version())
  209. # Get all the supported file extensions in carla_load_file().
  210. # Returned string uses this syntax:
  211. # @code
  212. # "*.ext1;*.ext2;*.ext3"
  213. # @endcode
  214. def get_supported_file_extensions(self):
  215. return charPtrToString(self.lib.carla_get_supported_file_extensions())
  216. # Get how many internal plugins are available.
  217. def get_cached_plugin_count(self, ptype, pluginPath):
  218. return int(self.lib.carla_get_cached_plugin_count(ptype, pluginPath.encode("utf-8")))
  219. # Get information about a cached plugin.
  220. def get_cached_plugin_info(self, ptype, index):
  221. return structToDict(self.lib.carla_get_cached_plugin_info(ptype, index).contents)
  222. def fflush(self, err):
  223. self.lib.carla_fflush(err)
  224. def fputs(self, err, string):
  225. self.lib.carla_fputs(err, string.encode("utf-8"))
  226. def set_process_name(self, name):
  227. self.lib.carla_set_process_name(name.encode("utf-8"))
  228. def pipe_client_new(self, func):
  229. argc = len(argv)
  230. cagrvtype = c_char_p * argc
  231. cargv = cagrvtype()
  232. for i in range(argc):
  233. cargv[i] = c_char_p(argv[i].encode("utf-8"))
  234. self._pipeClientCallback = CarlaPipeCallbackFunc(func)
  235. return self.lib.carla_pipe_client_new(cargv, self._pipeClientCallback, None)
  236. def pipe_client_idle(self, handle):
  237. try:
  238. self.lib.carla_pipe_client_idle(handle)
  239. except OSError as e:
  240. print("pipe_client_idle", e)
  241. def pipe_client_is_running(self, handle):
  242. return bool(self.lib.carla_pipe_client_is_running(handle))
  243. def pipe_client_lock(self, handle):
  244. self.lib.carla_pipe_client_lock(handle)
  245. def pipe_client_unlock(self, handle):
  246. self.lib.carla_pipe_client_unlock(handle)
  247. def pipe_client_readlineblock(self, handle, timeout):
  248. return charPtrToString(self.lib.carla_pipe_client_readlineblock(handle, timeout))
  249. def pipe_client_write_msg(self, handle, msg):
  250. return bool(self.lib.carla_pipe_client_write_msg(handle, msg.encode("utf-8")))
  251. def pipe_client_write_and_fix_msg(self, handle, msg):
  252. return bool(self.lib.carla_pipe_client_write_and_fix_msg(handle, msg.encode("utf-8")))
  253. def pipe_client_flush(self, handle):
  254. return bool(self.lib.carla_pipe_client_flush(handle))
  255. def pipe_client_flush_and_unlock(self, handle):
  256. return bool(self.lib.carla_pipe_client_flush_and_unlock(handle))
  257. def pipe_client_destroy(self, handle):
  258. self.lib.carla_pipe_client_destroy(handle)
  259. def x11_reparent_window(self, winId1, winId2):
  260. self.lib.carla_x11_reparent_window(winId1, winId2)
  261. def x11_move_window(self, winId, x, y):
  262. self.lib.carla_x11_move_window(winId, x, y)
  263. def x11_get_window_pos(self, winId):
  264. data = self.lib.carla_x11_get_window_pos(winId)
  265. return (int(data[0]), int(data[1]))
  266. # ------------------------------------------------------------------------------------------------------------