mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-10 13:30:05 -05:00
191 lines
6.3 KiB
C
191 lines
6.3 KiB
C
/* Simple Plugin API
|
|
* Copyright (C) 2016 Wim Taymans <wim.taymans@gmail.com>
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef __SPA_PLUGIN_H__
|
|
#define __SPA_PLUGIN_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <spa/defs.h>
|
|
#include <spa/dict.h>
|
|
|
|
#define SPA_TYPE__Handle SPA_TYPE_INTERFACE_BASE "Handle"
|
|
#define SPA_TYPE__HandleFactory SPA_TYPE_INTERFACE_BASE "HandleFactory"
|
|
|
|
typedef struct _SpaHandle SpaHandle;
|
|
typedef struct _SpaHandleFactory SpaHandleFactory;
|
|
|
|
struct _SpaHandle {
|
|
/* user_data that can be set by the application */
|
|
void * user_data;
|
|
/**
|
|
* SpaHandle::get_interface:
|
|
* @handle: a #SpaHandle
|
|
* @interface_id: the interface id
|
|
* @interface: result to hold the interface.
|
|
*
|
|
* Get the interface provided by @handle with @interface_id.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
* #SPA_RESULT_NOT_IMPLEMENTED when there are no extensions
|
|
* #SPA_RESULT_INVALID_ARGUMENTS when handle or info is %NULL
|
|
*/
|
|
SpaResult (*get_interface) (SpaHandle *handle,
|
|
uint32_t interface_id,
|
|
void **interface);
|
|
/**
|
|
* SpaHandle::clear
|
|
* @handle: a pointer to memory
|
|
*
|
|
* Clean up the memory of @handle. After this, @handle should not be used
|
|
* anymore.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
*/
|
|
SpaResult (*clear) (SpaHandle *handle);
|
|
};
|
|
|
|
#define spa_handle_get_interface(h,...) (h)->get_interface((h),__VA_ARGS__)
|
|
#define spa_handle_clear(h) (h)->clear((h))
|
|
|
|
/**
|
|
* SpaInterfaceInfo:
|
|
* @type: the type of the interface, can be used to get the interface
|
|
*
|
|
* This structure lists the information about available interfaces on
|
|
* handles.
|
|
*/
|
|
typedef struct {
|
|
const char *type;
|
|
} SpaInterfaceInfo;
|
|
|
|
/**
|
|
* SpaSupport:
|
|
* @type: the type of the support item
|
|
* @data: specific data for the item
|
|
*
|
|
* Extra supporting infrastructure passed to the init() function of
|
|
* a factory. It can be extra information or interfaces such as logging.
|
|
*/
|
|
typedef struct {
|
|
const char *type;
|
|
void *data;
|
|
} SpaSupport;
|
|
|
|
struct _SpaHandleFactory {
|
|
/**
|
|
* SpaHandleFactory::name
|
|
*
|
|
* The name
|
|
*/
|
|
const char * name;
|
|
/**
|
|
* SpaHandleFactory::info
|
|
*
|
|
* Extra information about the handles of this factory.
|
|
*/
|
|
const SpaDict * info;
|
|
/**
|
|
* SpaHandleFactory::size
|
|
*
|
|
* The size of handles from this factory
|
|
*/
|
|
const size_t size;
|
|
|
|
/**
|
|
* SpaHandleFactory::init
|
|
* @factory: a #SpaHandleFactory
|
|
* @handle: a pointer to memory
|
|
* @info: extra handle specific information, usually obtained
|
|
* from a #SpaMonitor. This can be used to configure the handle.
|
|
* @support: support items
|
|
* @n_support: number of elements in @support
|
|
*
|
|
* Initialize an instance of this factory. The caller should allocate
|
|
* memory at least SpaHandleFactory::size bytes and pass this as @handle.
|
|
*
|
|
* @support can optionally contain extra interfaces or data ites that the
|
|
* plugin can use such as a logger.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
* #SPA_RESULT_NOT_IMPLEMENTED when an instance can't be made
|
|
* #SPA_RESULT_INVALID_ARGUMENTS when factory or handle are %NULL
|
|
*/
|
|
SpaResult (*init) (const SpaHandleFactory *factory,
|
|
SpaHandle *handle,
|
|
const SpaDict *info,
|
|
const SpaSupport *support,
|
|
uint32_t n_support);
|
|
|
|
/**
|
|
* SpaHandle::enum_interface_info:
|
|
* @factory: a #SpaHandleFactory
|
|
* @info: result to hold SpaInterfaceInfo.
|
|
* @index: index to keep track of the enumeration, 0 for first item
|
|
*
|
|
* Enumerate the interface information for @factory.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
* #SPA_RESULT_NOT_IMPLEMENTED when there are no interfaces
|
|
* #SPA_RESULT_INVALID_ARGUMENTS when handle or info is %NULL
|
|
* #SPA_RESULT_ENUM_END when there are no more infos
|
|
*/
|
|
SpaResult (*enum_interface_info) (const SpaHandleFactory *factory,
|
|
const SpaInterfaceInfo **info,
|
|
uint32_t index);
|
|
};
|
|
|
|
#define spa_handle_factory_init(h,...) (h)->init((h),__VA_ARGS__)
|
|
#define spa_handle_factory_enum_interface_info(h,...) (h)->enum_interface_info((h),__VA_ARGS__)
|
|
|
|
/**
|
|
* SpaEnumHandleFactoryFunc:
|
|
* @factory: a location to hold the factory result
|
|
* @index: index to keep track of the enumeration
|
|
*
|
|
* The function signature of the entry point in a plugin.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
* #SPA_RESULT_INVALID_ARGUMENTS when factory is %NULL
|
|
* #SPA_RESULT_ENUM_END when there are no more factories
|
|
*/
|
|
typedef SpaResult (*SpaEnumHandleFactoryFunc) (const SpaHandleFactory **factory,
|
|
uint32_t index);
|
|
|
|
/**
|
|
* spa_enum_handle_factory:
|
|
* @factory: a location to hold the factory result
|
|
* @index: index to keep track of the enumeration
|
|
*
|
|
* The entry point in a plugin.
|
|
*
|
|
* Returns: #SPA_RESULT_OK on success
|
|
* #SPA_RESULT_INVALID_ARGUMENTS when factory is %NULL
|
|
* #SPA_RESULT_ENUM_END when there are no more factories
|
|
*/
|
|
SpaResult spa_enum_handle_factory (const SpaHandleFactory **factory,
|
|
uint32_t index);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* __SPA_PLUGIN_H__ */
|