mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-16 08:56:45 -05:00
347 lines
11 KiB
C
347 lines
11 KiB
C
/* PipeWire
|
|
* 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 __PIPEWIRE_INTERFACES_H__
|
|
#define __PIPEWIRE_INTERFACES_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#include <spa/defs.h>
|
|
#include <spa/props.h>
|
|
#include <spa/format.h>
|
|
#include <spa/param-alloc.h>
|
|
#include <spa/node.h>
|
|
|
|
#include <pipewire/client/introspect.h>
|
|
|
|
/**
|
|
* \page page_pipewire_protocol The PipeWire protocol
|
|
* \section page_ifaces_pipewire Interfaces
|
|
* - \subpage page_iface_pw_core - core global object
|
|
* - \subpage page_iface_pw_registry - global registry object
|
|
*/
|
|
|
|
/**
|
|
* \page page_iface_pw_core pw_core
|
|
* \section page_iface_pw_core_desc Description
|
|
*
|
|
* The core global object. This is a special singleton object. It
|
|
* is used for internal Wayland protocol features.
|
|
* \section page_iface_pw_core API
|
|
*/
|
|
|
|
#define PW_VERSION_CORE 0
|
|
|
|
#define PW_CORE_METHOD_UPDATE_TYPES 0
|
|
#define PW_CORE_METHOD_SYNC 1
|
|
#define PW_CORE_METHOD_GET_REGISTRY 2
|
|
#define PW_CORE_METHOD_CLIENT_UPDATE 3
|
|
#define PW_CORE_METHOD_CREATE_NODE 4
|
|
#define PW_CORE_METHOD_CREATE_LINK 5
|
|
#define PW_CORE_METHOD_NUM 6
|
|
|
|
/**
|
|
* \struct pw_core_methods
|
|
* \brief Core methods
|
|
*
|
|
* The core global object. This is a singleton object used for
|
|
* creating new objects in the PipeWire server. It is also used
|
|
* for internal features.
|
|
*/
|
|
struct pw_core_methods {
|
|
/**
|
|
* Update the type map
|
|
*
|
|
* Send a type map update to the PipeWire server. The server uses this
|
|
* information to keep a mapping between client types and the server types.
|
|
* \param first_id the id of the first type
|
|
* \param n_types the number of types
|
|
* \param types the types as a string
|
|
*/
|
|
void (*update_types) (void *object,
|
|
uint32_t first_id,
|
|
uint32_t n_types,
|
|
const char **types);
|
|
/**
|
|
* Do server roundtrip
|
|
*
|
|
* Ask the server to emit the 'done' event with \a id.
|
|
* Since methods are handled in-order and events are delivered
|
|
* in-order, this can be used as a barrier to ensure all previous
|
|
* methods and the resulting events have been handled.
|
|
* \param seq the sequence number passed to the done event
|
|
*/
|
|
void (*sync) (void *object, uint32_t seq);
|
|
/**
|
|
* Get the registry object
|
|
*
|
|
* Create a registry object that allows the client to list and bind
|
|
* the global objects available from the PipeWire server
|
|
* \param id the client proxy id
|
|
*/
|
|
void (*get_registry) (void *object, uint32_t new_id);
|
|
/**
|
|
* Update the client properties
|
|
* \param props the new client properties
|
|
*/
|
|
void (*client_update) (void *object, const struct spa_dict *props);
|
|
/**
|
|
* Create a new node on the PipeWire server from a factory.
|
|
* Use a \a fectory_name of "client-node" to create a
|
|
* \ref pw_client_node.
|
|
*
|
|
* \param factory_name the factory name to use
|
|
* \param name the node name
|
|
* \param props extra properties
|
|
* \param new_id the client proxy id
|
|
*/
|
|
void (*create_node) (void *object,
|
|
const char *factory_name,
|
|
const char *name,
|
|
const struct spa_dict *props,
|
|
uint32_t new_id);
|
|
/**
|
|
* Create a new link between two node ports
|
|
*
|
|
* \param output_node_id the global id of the output node
|
|
* \param output_port_id the id of the output port
|
|
* \param input_node_id the global id of the input node
|
|
* \param input_port_id the id of the input port
|
|
* \param filter an optional format filter
|
|
* \param props optional properties
|
|
* \param new_id the client proxy id
|
|
*/
|
|
void (*create_link) (void *object,
|
|
uint32_t output_node_id,
|
|
uint32_t output_port_id,
|
|
uint32_t input_node_id,
|
|
uint32_t input_port_id,
|
|
const struct spa_format *filter,
|
|
const struct spa_dict *props,
|
|
uint32_t new_id);
|
|
};
|
|
|
|
#define pw_core_do_update_types(p,...) pw_proxy_do(p,struct pw_core_methods,update_types,__VA_ARGS__)
|
|
#define pw_core_do_sync(p,...) pw_proxy_do(p,struct pw_core_methods,sync,__VA_ARGS__)
|
|
#define pw_core_do_get_registry(p,...) pw_proxy_do(p,struct pw_core_methods,get_registry,__VA_ARGS__)
|
|
#define pw_core_do_client_update(p,...) pw_proxy_do(p,struct pw_core_methods,client_update,__VA_ARGS__)
|
|
#define pw_core_do_create_node(p,...) pw_proxy_do(p,struct pw_core_methods,create_node,__VA_ARGS__)
|
|
#define pw_core_do_create_link(p,...) pw_proxy_do(p,struct pw_core_methods,create_link,__VA_ARGS__)
|
|
|
|
#define PW_CORE_EVENT_UPDATE_TYPES 0
|
|
#define PW_CORE_EVENT_DONE 1
|
|
#define PW_CORE_EVENT_ERROR 2
|
|
#define PW_CORE_EVENT_REMOVE_ID 3
|
|
#define PW_CORE_EVENT_INFO 4
|
|
#define PW_CORE_EVENT_NUM 5
|
|
|
|
/** \struct pw_core_events
|
|
* \brief Core events
|
|
* \ingroup pw_core_interface The pw_core interface
|
|
*/
|
|
struct pw_core_events {
|
|
/**
|
|
* Update the type map
|
|
*
|
|
* Send a type map update to the client. The client uses this
|
|
* information to keep a mapping between server types and the client types.
|
|
* \param first_id the id of the first type
|
|
* \param n_types the number of types
|
|
* \param types the types as a string
|
|
*/
|
|
void (*update_types) (void *object,
|
|
uint32_t first_id,
|
|
uint32_t n_types,
|
|
const char **types);
|
|
/**
|
|
* Emit a done event
|
|
*
|
|
* The done event is emited as a result of a sync method with the
|
|
* same sequence number.
|
|
* \param seq the sequence number passed to the sync method call
|
|
*/
|
|
void (*done) (void *object, uint32_t seq);
|
|
/**
|
|
* Fatal error event
|
|
*
|
|
* The error event is sent out when a fatal (non-recoverable)
|
|
* error has occurred. The id argument is the object where
|
|
* the error occurred, most often in response to a request to that
|
|
* object. The message is a brief description of the error,
|
|
* for (debugging) convenience.
|
|
* \param id object where the error occurred
|
|
* \param res error code
|
|
* \param error error description
|
|
*/
|
|
void (*error) (void *object, uint32_t id, int res, const char *error, ...);
|
|
/**
|
|
* Remove an object ID
|
|
*
|
|
* This event is used internally by the object ID management
|
|
* logic. When a client deletes an object, the server will send
|
|
* this event to acknowledge that it has seen the delete request.
|
|
* When the client receives this event, it will know that it can
|
|
* safely reuse the object ID.
|
|
* \param id deleted object ID
|
|
*/
|
|
void (*remove_id) (void *object, uint32_t id);
|
|
/**
|
|
* Notify new core info
|
|
*
|
|
* \param info new core info
|
|
*/
|
|
void (*info) (void *object, struct pw_core_info *info);
|
|
};
|
|
|
|
#define pw_core_notify_update_types(r,...) pw_resource_notify(r,struct pw_core_events,update_types,__VA_ARGS__)
|
|
#define pw_core_notify_done(r,...) pw_resource_notify(r,struct pw_core_events,done,__VA_ARGS__)
|
|
#define pw_core_notify_error(r,...) pw_resource_notify(r,struct pw_core_events,error,__VA_ARGS__)
|
|
#define pw_core_notify_remove_id(r,...) pw_resource_notify(r,struct pw_core_events,remove_id,__VA_ARGS__)
|
|
#define pw_core_notify_info(r,...) pw_resource_notify(r,struct pw_core_events,info,__VA_ARGS__)
|
|
|
|
#define PW_VERSION_REGISTRY 0
|
|
|
|
#define PW_REGISTRY_METHOD_BIND 0
|
|
#define PW_REGISTRY_METHOD_NUM 1
|
|
|
|
/** Registry methods */
|
|
struct pw_registry_methods {
|
|
/**
|
|
* Bind to a global object
|
|
*
|
|
* Bind to the global object with \a id and use the client proxy
|
|
* with new_id as the proxy. After this call, methods can be
|
|
* send to the remote global object and events can be received
|
|
*
|
|
* \param id the global id to bind to
|
|
* \param version the version to use
|
|
* \param new_id the client proxy to use
|
|
*/
|
|
void (*bind) (void *object, uint32_t id, uint32_t version, uint32_t new_id);
|
|
};
|
|
|
|
#define pw_registry_do_bind(p,...) pw_proxy_do(p,struct pw_registry_methods,bind,__VA_ARGS__)
|
|
|
|
#define PW_REGISTRY_EVENT_GLOBAL 0
|
|
#define PW_REGISTRY_EVENT_GLOBAL_REMOVE 1
|
|
#define PW_REGISTRY_EVENT_NUM 2
|
|
|
|
/** Registry events */
|
|
struct pw_registry_events {
|
|
/**
|
|
* Notify of a new global object
|
|
*
|
|
* The registry emits this event when a new global object is
|
|
* available.
|
|
*
|
|
* \param id the global object id
|
|
* \param type the type of the object
|
|
* \param version the version of the object
|
|
*/
|
|
void (*global) (void *object, uint32_t id, const char *type, uint32_t version);
|
|
/**
|
|
* Notify of a global object removal
|
|
*
|
|
* Emited when a global object was removed from the registry.
|
|
* If the client has any bindings to the global, it should destroy
|
|
* those.
|
|
*
|
|
* \param id the id of the global that was removed
|
|
*/
|
|
void (*global_remove) (void *object, uint32_t id);
|
|
};
|
|
|
|
#define pw_registry_notify_global(r,...) pw_resource_notify(r,struct pw_registry_events,global,__VA_ARGS__)
|
|
#define pw_registry_notify_global_remove(r,...) pw_resource_notify(r,struct pw_registry_events,global_remove,__VA_ARGS__)
|
|
|
|
#define PW_VERSION_MODULE 0
|
|
|
|
#define PW_MODULE_EVENT_INFO 0
|
|
#define PW_MODULE_EVENT_NUM 1
|
|
|
|
/** Module events */
|
|
struct pw_module_events {
|
|
/**
|
|
* Notify module info
|
|
*
|
|
* \param info info about the module
|
|
*/
|
|
void (*info) (void *object, struct pw_module_info *info);
|
|
};
|
|
|
|
#define pw_module_notify_info(r,...) pw_resource_notify(r,struct pw_module_events,info,__VA_ARGS__)
|
|
|
|
#define PW_VERSION_NODE 0
|
|
|
|
#define PW_NODE_EVENT_INFO 0
|
|
#define PW_NODE_EVENT_NUM 1
|
|
|
|
/** Node events */
|
|
struct pw_node_events {
|
|
/**
|
|
* Notify node info
|
|
*
|
|
* \param info info about the node
|
|
*/
|
|
void (*info) (void *object, struct pw_node_info *info);
|
|
};
|
|
|
|
#define pw_node_notify_info(r,...) pw_resource_notify(r,struct pw_node_events,info,__VA_ARGS__)
|
|
|
|
#define PW_VERSION_CLIENT 0
|
|
|
|
#define PW_CLIENT_EVENT_INFO 0
|
|
#define PW_CLIENT_EVENT_NUM 1
|
|
|
|
/** Client events */
|
|
struct pw_client_events {
|
|
/**
|
|
* Notify client info
|
|
*
|
|
* \param info info about the client
|
|
*/
|
|
void (*info) (void *object, struct pw_client_info *info);
|
|
};
|
|
|
|
#define pw_client_notify_info(r,...) pw_resource_notify(r,struct pw_client_events,info,__VA_ARGS__)
|
|
|
|
#define PW_VERSION_LINK 0
|
|
|
|
#define PW_LINK_EVENT_INFO 0
|
|
#define PW_LINK_EVENT_NUM 1
|
|
|
|
/** Link events */
|
|
struct pw_link_events {
|
|
/**
|
|
* Notify link info
|
|
*
|
|
* \param info info about the link
|
|
*/
|
|
void (*info) (void *object, struct pw_link_info *info);
|
|
};
|
|
|
|
#define pw_link_notify_info(r,...) pw_resource_notify(r,struct pw_link_events,info,__VA_ARGS__)
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /* __PIPEWIRE_INTERFACES_H__ */
|