|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260 |
- /*
- * Carla Plugin Host
- * Copyright (C) 2011-2014 Filipe Coelho <falktx@falktx.com>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * For a full copy of the GNU General Public License see the doc/GPL.txt file.
- */
-
- #ifndef CARLA_UTILS_H_INCLUDED
- #define CARLA_UTILS_H_INCLUDED
-
- #include "CarlaBackend.h"
-
- #ifdef __cplusplus
- using CarlaBackend::PluginCategory;
- using CarlaBackend::PluginType;
- #endif
-
- /*!
- * @defgroup CarlaUtilsAPI Carla Utils API
- *
- * The Carla Utils API.
- *
- * This API allows to call advanced features from Python.
- * @{
- */
-
- /*!
- * TODO.
- */
- typedef void* CarlaPipeClientHandle;
-
- /*!
- * TODO.
- */
- typedef void (*CarlaPipeCallbackFunc)(void* ptr, const char* msg);
-
- /*!
- * Information about a cached plugin.
- * @see carla_get_cached_plugin_info()
- */
- typedef struct _CarlaCachedPluginInfo {
- /*!
- * Plugin category.
- */
- PluginCategory category;
-
- /*!
- * Plugin hints.
- * @see PluginHints
- */
- uint hints;
-
- /*!
- * Number of audio inputs.
- */
- uint32_t audioIns;
-
- /*!
- * Number of audio outputs.
- */
- uint32_t audioOuts;
-
- /*!
- * Number of MIDI inputs.
- */
- uint32_t midiIns;
-
- /*!
- * Number of MIDI outputs.
- */
- uint32_t midiOuts;
-
- /*!
- * Number of input parameters.
- */
- uint32_t parameterIns;
-
- /*!
- * Number of output parameters.
- */
- uint32_t parameterOuts;
-
- /*!
- * Plugin name.
- */
- const char* name;
-
- /*!
- * Plugin label.
- */
- const char* label;
-
- /*!
- * Plugin author/maker.
- */
- const char* maker;
-
- /*!
- * Plugin copyright/license.
- */
- const char* copyright;
-
- #ifdef __cplusplus
- /*!
- * C++ constructor.
- */
- CARLA_API _CarlaCachedPluginInfo() noexcept;
- CARLA_DECLARE_NON_COPY_STRUCT(_CarlaCachedPluginInfo)
- #endif
-
- } CarlaCachedPluginInfo;
-
- /* ------------------------------------------------------------------------------------------------------------
- * get stuff */
-
- /*!
- * Get the complete license text of used third-party code and features.
- * Returned string is in basic html format.
- */
- CARLA_EXPORT const char* carla_get_complete_license_text();
-
- /*!
- * Get the juce version used in the current Carla build.
- */
- CARLA_EXPORT const char* carla_get_juce_version();
-
- /*!
- * Get all the supported file extensions in carla_load_file().
- * Returned string uses this syntax:
- * @code
- * "*.ext1;*.ext2;*.ext3"
- * @endcode
- */
- CARLA_EXPORT const char* carla_get_supported_file_extensions();
-
- /*!
- * Get how many cached plugins are available.
- * Internal, LV2 and AU plugin formats are cached and need to be discovered via this function.
- * Do not call this for any other plugin formats.
- */
- CARLA_EXPORT uint carla_get_cached_plugin_count(PluginType ptype, const char* pluginPath);
-
- /*!
- * Get information about a cached plugin.
- */
- CARLA_EXPORT const CarlaCachedPluginInfo* carla_get_cached_plugin_info(PluginType ptype, uint index);
-
- /* ------------------------------------------------------------------------------------------------------------
- * set stuff */
-
- /*!
- * Flush stdout or stderr.
- */
- CARLA_EXPORT void carla_fflush(bool err);
-
- /*!
- * Print the string @a string to stdout or stderr.
- */
- CARLA_EXPORT void carla_fputs(bool err, const char* string);
-
- /*!
- * Set the current process name to @a name.
- */
- CARLA_EXPORT void carla_set_process_name(const char* name);
-
- /* ------------------------------------------------------------------------------------------------------------
- * pipes */
-
- /*!
- * TODO.
- */
- CARLA_EXPORT CarlaPipeClientHandle carla_pipe_client_new(const char* argv[], CarlaPipeCallbackFunc callbackFunc, void* callbackPtr);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT void carla_pipe_client_idle(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT bool carla_pipe_client_is_running(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT void carla_pipe_client_lock(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT void carla_pipe_client_unlock(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT const char* carla_pipe_client_readlineblock(CarlaPipeClientHandle handle, uint timeout);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT bool carla_pipe_client_write_msg(CarlaPipeClientHandle handle, const char* msg);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT bool carla_pipe_client_write_and_fix_msg(CarlaPipeClientHandle handle, const char* msg);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT bool carla_pipe_client_flush(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT bool carla_pipe_client_flush_and_unlock(CarlaPipeClientHandle handle);
-
- /*!
- * TODO.
- */
- CARLA_EXPORT void carla_pipe_client_destroy(CarlaPipeClientHandle handle);
-
- /* ------------------------------------------------------------------------------------------------------------
- * info about current library */
-
- /*!
- * Get the absolute filename of this carla library.
- */
- CARLA_EXPORT const char* carla_get_library_filename();
-
- /*!
- * Get the folder where this carla library resides.
- */
- CARLA_EXPORT const char* carla_get_library_folder();
-
- // -------------------------------------------------------------------------------------------------------------------
- // TESTING
-
- CARLA_EXPORT void carla_x11_reparent_window(uintptr_t winId1, uintptr_t winId2);
-
- CARLA_EXPORT void carla_x11_move_window(uintptr_t winId, int x, int y);
-
- CARLA_EXPORT int* carla_x11_get_window_pos(uintptr_t winId);
-
- // -------------------------------------------------------------------------------------------------------------------
-
- /** @} */
-
- #endif /* CARLA_UTILS_H_INCLUDED */
|