mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
media-session: add module to suspend nodes
This commit is contained in:
parent
9ffa9c0b08
commit
a3ddc6b744
4 changed files with 258 additions and 0 deletions
|
|
@ -65,6 +65,7 @@ int sm_alsa_midi_start(struct sm_media_session *sess);
|
|||
int sm_v4l2_monitor_start(struct sm_media_session *sess);
|
||||
int sm_bluez5_monitor_start(struct sm_media_session *sess);
|
||||
int sm_alsa_monitor_start(struct sm_media_session *sess);
|
||||
int sm_suspend_node_start(struct sm_media_session *sess);
|
||||
|
||||
int sm_policy_node_start(struct sm_media_session *sess);
|
||||
|
||||
|
|
@ -1677,6 +1678,7 @@ int main(int argc, char *argv[])
|
|||
sm_alsa_monitor_start(&impl.this);
|
||||
sm_v4l2_monitor_start(&impl.this);
|
||||
|
||||
sm_suspend_node_start(&impl.this);
|
||||
sm_policy_node_start(&impl.this);
|
||||
|
||||
// sm_session_manager_start(&impl.this);
|
||||
|
|
|
|||
|
|
@ -250,6 +250,7 @@ handle_node(struct impl *impl, struct sm_object *object)
|
|||
static void destroy_node(struct impl *impl, struct node *node)
|
||||
{
|
||||
spa_list_remove(&node->link);
|
||||
spa_hook_remove(&node->listener);
|
||||
free(node->media);
|
||||
if (node->peer)
|
||||
node->peer->peer = NULL;
|
||||
|
|
|
|||
254
src/examples/media-session/suspend-node.c
Normal file
254
src/examples/media-session/suspend-node.c
Normal file
|
|
@ -0,0 +1,254 @@
|
|||
/* PipeWire
|
||||
*
|
||||
* Copyright © 2020 Wim Taymans
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a
|
||||
* copy of this software and associated documentation files (the "Software"),
|
||||
* to deal in the Software without restriction, including without limitation
|
||||
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||
* and/or sell copies of the Software, and to permit persons to whom the
|
||||
* Software is furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice (including the next
|
||||
* paragraph) shall be included in all copies or substantial portions of the
|
||||
* Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
||||
* DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
#include <math.h>
|
||||
#include <time.h>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <spa/node/node.h>
|
||||
#include <spa/utils/hook.h>
|
||||
#include <spa/param/props.h>
|
||||
#include <spa/debug/pod.h>
|
||||
|
||||
#include "pipewire/pipewire.h"
|
||||
|
||||
#include "media-session.h"
|
||||
|
||||
#define NAME "suspend-node"
|
||||
#define SESSION_KEY "suspend-node"
|
||||
|
||||
#define DEFAULT_IDLE_SECONDS 3
|
||||
|
||||
struct impl {
|
||||
struct timespec now;
|
||||
|
||||
struct sm_media_session *session;
|
||||
struct spa_hook listener;
|
||||
|
||||
struct pw_context *context;
|
||||
|
||||
struct spa_list node_list;
|
||||
int seq;
|
||||
};
|
||||
|
||||
struct node {
|
||||
struct sm_node *obj;
|
||||
|
||||
uint32_t id;
|
||||
struct impl *impl;
|
||||
|
||||
struct spa_list link; /**< link in impl node_list */
|
||||
enum pw_direction direction;
|
||||
|
||||
struct spa_hook listener;
|
||||
struct spa_source *idle_timeout;
|
||||
};
|
||||
|
||||
|
||||
static void remove_idle_timeout(struct node *node)
|
||||
{
|
||||
struct impl *impl = node->impl;
|
||||
struct pw_loop *main_loop = pw_context_get_main_loop(impl->context);
|
||||
|
||||
if (node->idle_timeout) {
|
||||
pw_loop_destroy_source(main_loop, node->idle_timeout);
|
||||
node->idle_timeout = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
static void idle_timeout(void *data, uint64_t expirations)
|
||||
{
|
||||
struct node *node = data;
|
||||
struct impl *impl = node->impl;
|
||||
struct spa_command *cmd = &SPA_NODE_COMMAND_INIT(SPA_NODE_COMMAND_Suspend);
|
||||
|
||||
pw_log_debug(NAME " %p: node %d idle timeout", impl, node->id);
|
||||
|
||||
remove_idle_timeout(node);
|
||||
|
||||
pw_node_send_command((struct pw_node*)node->obj->obj.proxy, cmd);
|
||||
}
|
||||
|
||||
static void add_idle_timeout(struct node *node)
|
||||
{
|
||||
struct timespec value;
|
||||
struct impl *impl = node->impl;
|
||||
struct pw_loop *main_loop = pw_context_get_main_loop(impl->context);
|
||||
|
||||
if (node->idle_timeout == NULL)
|
||||
node->idle_timeout = pw_loop_add_timer(main_loop, idle_timeout, node);
|
||||
|
||||
value.tv_sec = DEFAULT_IDLE_SECONDS;
|
||||
value.tv_nsec = 0;
|
||||
pw_loop_update_timer(main_loop, node->idle_timeout, &value, NULL, false);
|
||||
}
|
||||
|
||||
static int on_node_idle(struct impl *impl, struct node *node)
|
||||
{
|
||||
pw_log_debug(NAME" %p: node %d idle", impl, node->id);
|
||||
add_idle_timeout(node);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int on_node_running(struct impl *impl, struct node *node)
|
||||
{
|
||||
pw_log_debug(NAME" %p: node %d running", impl, node->id);
|
||||
remove_idle_timeout(node);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void object_update(void *data)
|
||||
{
|
||||
struct node *node = data;
|
||||
struct impl *impl = node->impl;
|
||||
|
||||
pw_log_debug(NAME" %p: node %p %08x", impl, node, node->obj->obj.changed);
|
||||
|
||||
if (node->obj->obj.changed & SM_NODE_CHANGE_MASK_INFO) {
|
||||
const struct pw_node_info *info = node->obj->info;
|
||||
|
||||
if (info->change_mask & PW_NODE_CHANGE_MASK_STATE) {
|
||||
switch (info->state) {
|
||||
case PW_NODE_STATE_IDLE:
|
||||
on_node_idle(impl, node);
|
||||
break;
|
||||
case PW_NODE_STATE_RUNNING:
|
||||
on_node_running(impl, node);
|
||||
break;
|
||||
case PW_NODE_STATE_SUSPENDED:
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static const struct sm_object_events object_events = {
|
||||
SM_VERSION_OBJECT_EVENTS,
|
||||
.update = object_update
|
||||
};
|
||||
|
||||
static int
|
||||
handle_node(struct impl *impl, struct sm_object *object)
|
||||
{
|
||||
struct node *node;
|
||||
|
||||
node = sm_object_add_data(object, SESSION_KEY, sizeof(struct node));
|
||||
node->obj = (struct sm_node*)object;
|
||||
node->impl = impl;
|
||||
spa_list_append(&impl->node_list, &node->link);
|
||||
|
||||
node->obj->obj.mask |= SM_NODE_CHANGE_MASK_INFO;
|
||||
sm_object_add_listener(&node->obj->obj, &node->listener, &object_events, node);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
static void destroy_node(struct impl *impl, struct node *node)
|
||||
{
|
||||
spa_list_remove(&node->link);
|
||||
spa_hook_remove(&node->listener);
|
||||
sm_object_remove_data((struct sm_object*)node->obj, SESSION_KEY);
|
||||
}
|
||||
|
||||
static void session_create(void *data, struct sm_object *object)
|
||||
{
|
||||
struct impl *impl = data;
|
||||
int res;
|
||||
|
||||
if (strcmp(object->type, PW_TYPE_INTERFACE_Node) == 0)
|
||||
res = handle_node(impl, object);
|
||||
else
|
||||
res = 0;
|
||||
|
||||
if (res < 0) {
|
||||
pw_log_warn(NAME" %p: can't handle global %d", impl, object->id);
|
||||
} else
|
||||
sm_media_session_schedule_rescan(impl->session);
|
||||
}
|
||||
|
||||
static void session_remove(void *data, struct sm_object *object)
|
||||
{
|
||||
struct impl *impl = data;
|
||||
pw_log_debug(NAME " %p: remove global '%d'", impl, object->id);
|
||||
|
||||
if (strcmp(object->type, PW_TYPE_INTERFACE_Node) == 0) {
|
||||
struct node *node;
|
||||
|
||||
if ((node = sm_object_get_data(object, SESSION_KEY)) != NULL)
|
||||
destroy_node(impl, node);
|
||||
}
|
||||
|
||||
sm_media_session_schedule_rescan(impl->session);
|
||||
}
|
||||
|
||||
static void session_rescan(void *data, int seq)
|
||||
{
|
||||
struct impl *impl = data;
|
||||
struct node *node;
|
||||
|
||||
clock_gettime(CLOCK_MONOTONIC, &impl->now);
|
||||
pw_log_debug(NAME" %p: rescan", impl);
|
||||
|
||||
spa_list_for_each(node, &impl->node_list, link) {
|
||||
}
|
||||
}
|
||||
|
||||
static void session_destroy(void *data)
|
||||
{
|
||||
struct impl *impl = data;
|
||||
spa_hook_remove(&impl->listener);
|
||||
free(impl);
|
||||
}
|
||||
|
||||
static const struct sm_media_session_events session_events = {
|
||||
SM_VERSION_MEDIA_SESSION_EVENTS,
|
||||
.create = session_create,
|
||||
.remove = session_remove,
|
||||
.rescan = session_rescan,
|
||||
.destroy = session_destroy,
|
||||
};
|
||||
|
||||
int sm_suspend_node_start(struct sm_media_session *session)
|
||||
{
|
||||
struct impl *impl;
|
||||
|
||||
impl = calloc(1, sizeof(struct impl));
|
||||
if (impl == NULL)
|
||||
return -errno;
|
||||
|
||||
impl->session = session;
|
||||
impl->context = session->context;
|
||||
|
||||
spa_list_init(&impl->node_list);
|
||||
|
||||
sm_media_session_add_listener(impl->session, &impl->listener, &session_events, impl);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
@ -58,6 +58,7 @@ executable('media-session',
|
|||
'media-session/policy-node.c',
|
||||
'media-session/v4l2-monitor.c',
|
||||
'media-session/v4l2-endpoint.c',
|
||||
'media-session/suspend-node.c',
|
||||
c_args : [ '-D_GNU_SOURCE' ],
|
||||
install: false,
|
||||
dependencies : [dbus_dep, pipewire_dep, alsa_dep, mathlib],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue