2018-06-01 11:28:31 +02:00
|
|
|
/* PipeWire
|
|
|
|
|
* Copyright (C) 2018 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
|
|
#include <spa/utils/list.h>
|
|
|
|
|
|
|
|
|
|
#include <pipewire/log.h>
|
|
|
|
|
|
|
|
|
|
#include <pulse/operation.h>
|
|
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
|
|
pa_operation *pa_operation_new(pa_context *c, pa_stream *s, pa_operation_cb_t cb, size_t userdata_size) {
|
|
|
|
|
pa_operation *o;
|
|
|
|
|
pa_assert(c);
|
|
|
|
|
|
|
|
|
|
o = calloc(1, sizeof(pa_operation) + userdata_size);
|
|
|
|
|
|
|
|
|
|
o->refcount = 1;
|
|
|
|
|
o->context = c;
|
2018-12-14 16:42:57 +01:00
|
|
|
o->stream = s ? pa_stream_ref(s) : NULL;
|
2018-08-02 10:31:29 +02:00
|
|
|
o->seq = SPA_ID_INVALID;
|
2018-06-01 11:28:31 +02:00
|
|
|
|
|
|
|
|
o->state = PA_OPERATION_RUNNING;
|
|
|
|
|
o->callback = cb;
|
|
|
|
|
o->userdata = SPA_MEMBER(o, sizeof(pa_operation), void);
|
|
|
|
|
|
|
|
|
|
spa_list_append(&c->operations, &o->link);
|
|
|
|
|
pa_operation_ref(o);
|
2018-08-02 10:31:29 +02:00
|
|
|
pw_log_debug("new %p", o);
|
2018-06-01 11:28:31 +02:00
|
|
|
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
2018-08-02 10:31:29 +02:00
|
|
|
int pa_operation_sync(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_context *c = o->context;
|
|
|
|
|
o->seq = ++c->seq;
|
|
|
|
|
pw_log_debug("operation %p: sync %d", o, o->seq);
|
2019-02-18 12:27:38 +01:00
|
|
|
pw_core_proxy_sync(c->core_proxy, 0, o->seq);
|
2018-08-02 10:31:29 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
2018-06-01 11:28:31 +02:00
|
|
|
|
2019-02-06 13:23:43 +01:00
|
|
|
SPA_EXPORT
|
2018-06-01 11:28:31 +02:00
|
|
|
pa_operation *pa_operation_ref(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
o->refcount++;
|
|
|
|
|
return o;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void operation_free(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(!o->context);
|
|
|
|
|
pa_assert(!o->stream);
|
|
|
|
|
pw_log_debug("%p %d", o, o->seq);
|
|
|
|
|
free(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void operation_unlink(pa_operation *o) {
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
|
|
|
|
|
pw_log_debug("%p %d", o, o->seq);
|
|
|
|
|
if (o->context) {
|
|
|
|
|
pa_assert(o->refcount >= 2);
|
|
|
|
|
|
|
|
|
|
spa_list_remove(&o->link);
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
|
|
|
|
|
o->context = NULL;
|
|
|
|
|
}
|
2018-12-14 16:42:57 +01:00
|
|
|
if (o->stream)
|
|
|
|
|
pa_stream_unref(o->stream);
|
2018-06-01 11:28:31 +02:00
|
|
|
o->stream = NULL;
|
|
|
|
|
o->callback = NULL;
|
|
|
|
|
o->userdata = NULL;
|
|
|
|
|
o->state_callback = NULL;
|
|
|
|
|
o->state_userdata = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-02-06 13:23:43 +01:00
|
|
|
SPA_EXPORT
|
2018-06-01 11:28:31 +02:00
|
|
|
void pa_operation_unref(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
if (--o->refcount == 0)
|
|
|
|
|
operation_free(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void operation_set_state(pa_operation *o, pa_operation_state_t st) {
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
|
|
|
|
|
if (st == o->state)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
pa_operation_ref(o);
|
|
|
|
|
|
|
|
|
|
pw_log_debug("new state %p %d %d", o, o->seq, st);
|
|
|
|
|
o->state = st;
|
|
|
|
|
|
|
|
|
|
if (o->state_callback)
|
|
|
|
|
o->state_callback(o, o->state_userdata);
|
|
|
|
|
|
|
|
|
|
if ((o->state == PA_OPERATION_DONE) || (o->state == PA_OPERATION_CANCELED))
|
|
|
|
|
operation_unlink(o);
|
|
|
|
|
|
|
|
|
|
pa_operation_unref(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-02-06 13:23:43 +01:00
|
|
|
SPA_EXPORT
|
2018-06-01 11:28:31 +02:00
|
|
|
void pa_operation_cancel(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
2018-12-14 16:41:19 +01:00
|
|
|
pw_log_debug("%p %d", o, o->seq);
|
2018-06-01 11:28:31 +02:00
|
|
|
operation_set_state(o, PA_OPERATION_CANCELED);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void pa_operation_done(pa_operation *o) {
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
operation_set_state(o, PA_OPERATION_DONE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-02-06 13:23:43 +01:00
|
|
|
SPA_EXPORT
|
2018-06-01 11:28:31 +02:00
|
|
|
pa_operation_state_t pa_operation_get_state(pa_operation *o)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
return o->state;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-06 13:23:43 +01:00
|
|
|
SPA_EXPORT
|
2018-06-01 11:28:31 +02:00
|
|
|
void pa_operation_set_state_callback(pa_operation *o, pa_operation_notify_cb_t cb, void *userdata)
|
|
|
|
|
{
|
|
|
|
|
pa_assert(o);
|
|
|
|
|
pa_assert(o->refcount >= 1);
|
|
|
|
|
|
|
|
|
|
if (o->state == PA_OPERATION_DONE || o->state == PA_OPERATION_CANCELED)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
o->state_callback = cb;
|
|
|
|
|
o->state_userdata = userdata;
|
|
|
|
|
}
|