2016-05-12 17:06:48 +02:00
|
|
|
/* Pinos
|
|
|
|
|
* Copyright (C) 2015 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2016-07-18 17:40:58 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdlib.h>
|
2016-09-02 19:51:23 +02:00
|
|
|
#include <errno.h>
|
2016-05-12 17:06:48 +02:00
|
|
|
|
|
|
|
|
#include "pinos/client/pinos.h"
|
2017-03-02 16:06:45 +01:00
|
|
|
#include "pinos/client/interfaces.h"
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-07-18 17:40:58 +02:00
|
|
|
#include "pinos/server/node.h"
|
2016-10-20 16:26:55 +02:00
|
|
|
#include "pinos/server/data-loop.h"
|
|
|
|
|
#include "pinos/server/main-loop.h"
|
2017-01-12 16:48:17 +01:00
|
|
|
#include "pinos/server/work-queue.h"
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
typedef struct
|
2016-05-12 17:06:48 +02:00
|
|
|
{
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosNode this;
|
2016-07-18 17:40:58 +02:00
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
#define STATE_IN 0
|
|
|
|
|
#define STATE_OUT 1
|
|
|
|
|
int state;
|
2017-01-12 16:48:17 +01:00
|
|
|
PinosWorkQueue *work;
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
bool async_init;
|
2016-11-10 15:42:14 +01:00
|
|
|
} PinosNodeImpl;
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
static void init_complete (PinosNode *this);
|
2016-09-02 19:51:23 +02:00
|
|
|
|
2016-08-29 18:31:53 +02:00
|
|
|
static void
|
2017-04-08 20:33:54 +02:00
|
|
|
update_port_ids (PinosNode *node)
|
2016-08-29 18:31:53 +02:00
|
|
|
{
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (node, PinosNodeImpl, this);
|
2016-09-28 10:42:36 +02:00
|
|
|
uint32_t *input_port_ids, *output_port_ids;
|
2017-03-07 11:56:43 +01:00
|
|
|
uint32_t n_input_ports, n_output_ports, max_input_ports, max_output_ports;
|
|
|
|
|
uint32_t i;
|
2016-11-15 13:29:58 +01:00
|
|
|
SpaList *ports;
|
2017-04-08 20:33:54 +02:00
|
|
|
SpaResult res;
|
2016-08-29 18:31:53 +02:00
|
|
|
|
|
|
|
|
if (node->node == NULL)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
spa_node_get_n_ports (node->node,
|
2016-09-28 10:42:36 +02:00
|
|
|
&n_input_ports,
|
|
|
|
|
&max_input_ports,
|
|
|
|
|
&n_output_ports,
|
|
|
|
|
&max_output_ports);
|
2016-08-29 18:31:53 +02:00
|
|
|
|
2017-04-12 10:40:17 +02:00
|
|
|
node->n_input_ports = n_input_ports;
|
|
|
|
|
node->max_input_ports = max_input_ports;
|
|
|
|
|
node->n_output_ports = n_output_ports;
|
|
|
|
|
node->max_output_ports = max_output_ports;
|
2017-04-08 20:33:54 +02:00
|
|
|
|
|
|
|
|
node->input_port_map = calloc (max_input_ports, sizeof (PinosPort *));
|
|
|
|
|
node->output_port_map = calloc (max_output_ports, sizeof (PinosPort *));
|
|
|
|
|
|
2016-11-16 17:21:59 +01:00
|
|
|
input_port_ids = alloca (sizeof (uint32_t) * n_input_ports);
|
|
|
|
|
output_port_ids = alloca (sizeof (uint32_t) * n_output_ports);
|
2016-08-29 18:31:53 +02:00
|
|
|
|
|
|
|
|
spa_node_get_port_ids (node->node,
|
2016-09-28 10:42:36 +02:00
|
|
|
max_input_ports,
|
|
|
|
|
input_port_ids,
|
|
|
|
|
max_output_ports,
|
|
|
|
|
output_port_ids);
|
|
|
|
|
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: update_port ids %u/%u, %u/%u", node,
|
2016-09-28 10:42:36 +02:00
|
|
|
n_input_ports, max_input_ports, n_output_ports, max_output_ports);
|
2016-09-23 17:08:20 +02:00
|
|
|
|
2016-09-28 10:42:36 +02:00
|
|
|
i = 0;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = &node->input_ports;
|
2016-09-23 17:08:20 +02:00
|
|
|
while (true) {
|
2016-11-15 13:29:58 +01:00
|
|
|
PinosPort *p = (ports == &node->input_ports) ? NULL : SPA_CONTAINER_OF (ports, PinosPort, link);
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
if (p && i < n_input_ports && p->port_id == input_port_ids[i]) {
|
|
|
|
|
node->input_port_map[p->port_id] = p;
|
|
|
|
|
pinos_log_debug ("node %p: exiting input port %d", node, input_port_ids[i]);
|
2016-09-23 17:08:20 +02:00
|
|
|
i++;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = ports->next;
|
|
|
|
|
} else if ((p && i < n_input_ports && input_port_ids[i] < p->port_id) || i < n_input_ports) {
|
2016-10-19 17:18:30 +02:00
|
|
|
PinosPort *np;
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: input port added %d", node, input_port_ids[i]);
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
np = pinos_port_new (node, PINOS_DIRECTION_INPUT, input_port_ids[i]);
|
2017-04-12 10:40:17 +02:00
|
|
|
if ((res = spa_node_port_set_io (node->node, SPA_DIRECTION_INPUT, np->port_id, &np->io)) < 0)
|
2017-04-08 20:33:54 +02:00
|
|
|
pinos_log_warn ("node %p: can't set input IO %d", node, res);
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_insert (ports, &np->link);
|
|
|
|
|
ports = np->link.next;
|
|
|
|
|
node->input_port_map[np->port_id] = np;
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
if (!impl->async_init)
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->port_added, node, np);
|
2016-09-23 17:08:20 +02:00
|
|
|
i++;
|
2016-09-28 10:42:36 +02:00
|
|
|
} else if (p) {
|
2016-11-15 13:29:58 +01:00
|
|
|
node->input_port_map[p->port_id] = NULL;
|
|
|
|
|
ports = ports->next;
|
2016-11-10 15:42:14 +01:00
|
|
|
if (!impl->async_init)
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->port_removed, node, p);
|
2016-11-15 13:29:58 +01:00
|
|
|
pinos_log_debug ("node %p: input port removed %d", node, p->port_id);
|
|
|
|
|
pinos_port_destroy (p);
|
|
|
|
|
} else {
|
|
|
|
|
pinos_log_debug ("node %p: no more input ports", node);
|
2016-09-23 17:08:20 +02:00
|
|
|
break;
|
2016-11-15 13:29:58 +01:00
|
|
|
}
|
2016-09-23 17:08:20 +02:00
|
|
|
}
|
2016-09-28 10:42:36 +02:00
|
|
|
|
|
|
|
|
i = 0;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = &node->output_ports;
|
2016-09-23 17:08:20 +02:00
|
|
|
while (true) {
|
2016-11-15 13:29:58 +01:00
|
|
|
PinosPort *p = (ports == &node->output_ports) ? NULL : SPA_CONTAINER_OF (ports, PinosPort, link);
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
if (p && i < n_output_ports && p->port_id == output_port_ids[i]) {
|
|
|
|
|
pinos_log_debug ("node %p: exiting output port %d", node, output_port_ids[i]);
|
2016-09-23 17:08:20 +02:00
|
|
|
i++;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = ports->next;
|
|
|
|
|
node->output_port_map[p->port_id] = p;
|
|
|
|
|
} else if ((p && i < n_output_ports && output_port_ids[i] < p->port_id) || i < n_output_ports) {
|
2016-10-19 17:18:30 +02:00
|
|
|
PinosPort *np;
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: output port added %d", node, output_port_ids[i]);
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
np = pinos_port_new (node, PINOS_DIRECTION_OUTPUT, output_port_ids[i]);
|
2017-04-12 10:40:17 +02:00
|
|
|
if ((res = spa_node_port_set_io (node->node, SPA_DIRECTION_OUTPUT, np->port_id, &np->io)) < 0)
|
2017-04-08 20:33:54 +02:00
|
|
|
pinos_log_warn ("node %p: can't set output IO %d", node, res);
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_insert (ports, &np->link);
|
|
|
|
|
ports = np->link.next;
|
|
|
|
|
node->output_port_map[np->port_id] = np;
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
if (!impl->async_init)
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->port_added, node, np);
|
2016-09-23 17:08:20 +02:00
|
|
|
i++;
|
2016-09-28 10:42:36 +02:00
|
|
|
} else if (p) {
|
2016-11-15 13:29:58 +01:00
|
|
|
node->output_port_map[p->port_id] = NULL;
|
|
|
|
|
ports = ports->next;
|
2016-11-10 15:42:14 +01:00
|
|
|
if (!impl->async_init)
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->port_removed, node, p);
|
2016-11-15 13:29:58 +01:00
|
|
|
pinos_log_debug ("node %p: output port removed %d", node, p->port_id);
|
|
|
|
|
pinos_port_destroy (p);
|
|
|
|
|
} else {
|
|
|
|
|
pinos_log_debug ("node %p: no more output ports", node);
|
2016-09-23 17:08:20 +02:00
|
|
|
break;
|
2016-11-15 13:29:58 +01:00
|
|
|
}
|
2016-09-23 17:08:20 +02:00
|
|
|
}
|
2017-04-12 10:40:17 +02:00
|
|
|
pinos_signal_emit (&node->initialized, node);
|
2016-09-02 19:51:23 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
static SpaResult
|
2016-09-02 19:51:23 +02:00
|
|
|
pause_node (PinosNode *this)
|
2016-07-18 17:40:58 +02:00
|
|
|
{
|
2016-09-02 19:51:23 +02:00
|
|
|
SpaResult res;
|
2016-08-08 22:10:57 +02:00
|
|
|
|
2017-01-19 20:07:03 +01:00
|
|
|
pinos_log_debug ("node %p: pause node", this);
|
2017-03-15 16:21:05 +01:00
|
|
|
{
|
2017-03-24 11:40:58 +01:00
|
|
|
SpaCommand cmd = SPA_COMMAND_INIT (this->core->type.command_node.Pause);
|
2017-03-15 16:21:05 +01:00
|
|
|
if ((res = spa_node_send_command (this->node, &cmd)) < 0)
|
|
|
|
|
pinos_log_debug ("got error %d", res);
|
|
|
|
|
}
|
2017-04-08 20:59:38 +02:00
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
return res;
|
2016-09-02 19:51:23 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
static SpaResult
|
2016-09-13 10:34:32 +02:00
|
|
|
start_node (PinosNode *this)
|
|
|
|
|
{
|
|
|
|
|
SpaResult res;
|
|
|
|
|
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: start node", this);
|
2017-03-15 16:21:05 +01:00
|
|
|
{
|
2017-03-24 11:40:58 +01:00
|
|
|
SpaCommand cmd = SPA_COMMAND_INIT (this->core->type.command_node.Start);
|
2017-03-15 16:21:05 +01:00
|
|
|
if ((res = spa_node_send_command (this->node, &cmd)) < 0)
|
|
|
|
|
pinos_log_debug ("got error %d", res);
|
|
|
|
|
}
|
2016-09-23 17:08:20 +02:00
|
|
|
return res;
|
2016-09-13 10:34:32 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
static SpaResult
|
2016-09-02 19:51:23 +02:00
|
|
|
suspend_node (PinosNode *this)
|
|
|
|
|
{
|
2016-09-26 12:15:52 +02:00
|
|
|
SpaResult res = SPA_RESULT_OK;
|
2016-11-15 13:29:58 +01:00
|
|
|
PinosPort *p;
|
2016-09-02 19:51:23 +02:00
|
|
|
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: suspend node", this);
|
2016-09-02 19:51:23 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_for_each (p, &this->input_ports, link) {
|
|
|
|
|
if ((res = spa_node_port_set_format (this->node, SPA_DIRECTION_INPUT, p->port_id, 0, NULL)) < 0)
|
|
|
|
|
pinos_log_warn ("error unset format input: %d", res);
|
2016-10-19 17:18:30 +02:00
|
|
|
p->buffers = NULL;
|
|
|
|
|
p->n_buffers = 0;
|
|
|
|
|
if (p->allocated)
|
|
|
|
|
pinos_memblock_free (&p->buffer_mem);
|
2016-11-15 13:29:58 +01:00
|
|
|
p->allocated = false;
|
2017-04-08 20:59:38 +02:00
|
|
|
p->state = SPA_PORT_STATE_CONFIGURE;
|
2016-09-26 12:15:52 +02:00
|
|
|
}
|
2016-11-15 13:29:58 +01:00
|
|
|
|
|
|
|
|
spa_list_for_each (p, &this->output_ports, link) {
|
|
|
|
|
if ((res = spa_node_port_set_format (this->node, SPA_DIRECTION_OUTPUT, p->port_id, 0, NULL)) < 0)
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_warn ("error unset format output: %d", res);
|
2016-10-19 17:18:30 +02:00
|
|
|
p->buffers = NULL;
|
|
|
|
|
p->n_buffers = 0;
|
|
|
|
|
if (p->allocated)
|
|
|
|
|
pinos_memblock_free (&p->buffer_mem);
|
2016-11-15 13:29:58 +01:00
|
|
|
p->allocated = false;
|
2017-04-08 20:59:38 +02:00
|
|
|
p->state = SPA_PORT_STATE_CONFIGURE;
|
2016-09-26 12:15:52 +02:00
|
|
|
}
|
2016-09-23 17:08:20 +02:00
|
|
|
return res;
|
2016-07-18 17:40:58 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-12 12:28:51 +02:00
|
|
|
static void
|
|
|
|
|
send_clock_update (PinosNode *this)
|
|
|
|
|
{
|
2016-09-13 17:43:57 +02:00
|
|
|
SpaResult res;
|
2017-03-23 21:15:52 +01:00
|
|
|
SpaCommandNodeClockUpdate cu =
|
|
|
|
|
SPA_COMMAND_NODE_CLOCK_UPDATE_INIT(
|
2017-03-24 11:40:58 +01:00
|
|
|
this->core->type.command_node.ClockUpdate,
|
2017-03-23 21:15:52 +01:00
|
|
|
SPA_COMMAND_NODE_CLOCK_UPDATE_TIME |
|
|
|
|
|
SPA_COMMAND_NODE_CLOCK_UPDATE_SCALE |
|
|
|
|
|
SPA_COMMAND_NODE_CLOCK_UPDATE_STATE |
|
|
|
|
|
SPA_COMMAND_NODE_CLOCK_UPDATE_LATENCY, /* change_mask */
|
2017-03-15 16:21:05 +01:00
|
|
|
1, /* rate */
|
|
|
|
|
0, /* ticks */
|
|
|
|
|
0, /* monotonic_time */
|
|
|
|
|
0, /* offset */
|
|
|
|
|
(1 << 16) | 1, /* scale */
|
|
|
|
|
SPA_CLOCK_STATE_RUNNING, /* state */
|
|
|
|
|
0, /* flags */
|
|
|
|
|
0); /* latency */
|
2016-09-13 17:43:57 +02:00
|
|
|
|
2016-09-19 19:17:59 +02:00
|
|
|
if (this->clock && this->live) {
|
2017-03-23 21:15:52 +01:00
|
|
|
cu.body.flags.value = SPA_COMMAND_NODE_CLOCK_UPDATE_FLAG_LIVE;
|
2017-03-15 16:21:05 +01:00
|
|
|
res = spa_clock_get_time (this->clock,
|
|
|
|
|
&cu.body.rate.value,
|
|
|
|
|
&cu.body.ticks.value,
|
|
|
|
|
&cu.body.monotonic_time.value);
|
2016-09-12 12:28:51 +02:00
|
|
|
}
|
2016-09-13 17:43:57 +02:00
|
|
|
|
2017-03-22 10:04:24 +01:00
|
|
|
if ((res = spa_node_send_command (this->node, (SpaCommand *)&cu)) < 0)
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("got error %d", res);
|
2016-09-12 12:28:51 +02:00
|
|
|
}
|
|
|
|
|
|
2017-04-12 10:40:17 +02:00
|
|
|
static SpaResult
|
|
|
|
|
do_pull (PinosNode *this)
|
|
|
|
|
{
|
|
|
|
|
SpaResult res = SPA_RESULT_OK;
|
|
|
|
|
PinosPort *inport;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each (inport, &this->input_ports, link) {
|
|
|
|
|
PinosLink *link;
|
|
|
|
|
PinosPort *outport;
|
|
|
|
|
SpaPortIO *pi;
|
|
|
|
|
SpaPortIO *po;
|
|
|
|
|
|
|
|
|
|
pi = &inport->io;
|
|
|
|
|
pinos_log_trace ("node %p: need input port %d, %d %d", this,
|
|
|
|
|
inport->port_id, pi->buffer_id, pi->status);
|
|
|
|
|
|
|
|
|
|
if (pi->status != SPA_RESULT_NEED_INPUT)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each (link, &inport->rt.links, rt.input_link) {
|
|
|
|
|
if (link->rt.input == NULL || link->rt.output == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
outport = link->rt.output;
|
|
|
|
|
po = &outport->io;
|
|
|
|
|
|
|
|
|
|
/* pull */
|
|
|
|
|
*po = *pi;
|
|
|
|
|
|
|
|
|
|
pinos_log_trace ("node %p: process output %p %d", outport->node, po, po->buffer_id);
|
|
|
|
|
|
|
|
|
|
res = spa_node_process_output (outport->node->node);
|
|
|
|
|
|
|
|
|
|
if (res == SPA_RESULT_NEED_INPUT) {
|
|
|
|
|
res = do_pull (outport->node);
|
|
|
|
|
|
|
|
|
|
*pi = *po;
|
|
|
|
|
pinos_log_trace ("node %p: pull return %d", outport->node, res);
|
|
|
|
|
}
|
|
|
|
|
else if (res == SPA_RESULT_HAVE_OUTPUT) {
|
|
|
|
|
*pi = *po;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
pinos_log_warn ("node %p: got process output %d", outport->node, res);
|
|
|
|
|
}
|
|
|
|
|
if (pi->buffer_id != SPA_ID_INVALID) {
|
|
|
|
|
pinos_log_trace ("node %p: process input %d %d", this, pi->status, pi->buffer_id);
|
|
|
|
|
res = spa_node_process_input (this->node);
|
|
|
|
|
if (res == SPA_RESULT_HAVE_OUTPUT)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-02 19:51:23 +02:00
|
|
|
static void
|
2017-03-21 20:39:20 +01:00
|
|
|
on_node_event (SpaNode *node, SpaEvent *event, void *user_data)
|
2016-07-22 17:17:44 +02:00
|
|
|
{
|
2016-09-02 19:51:23 +02:00
|
|
|
PinosNode *this = user_data;
|
2017-01-12 16:48:17 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (this, PinosNodeImpl, this);
|
2016-07-22 17:17:44 +02:00
|
|
|
|
2017-03-24 11:40:58 +01:00
|
|
|
if (SPA_EVENT_TYPE (event) == this->core->type.event_node.AsyncComplete) {
|
2017-03-23 21:15:52 +01:00
|
|
|
SpaEventNodeAsyncComplete *ac = (SpaEventNodeAsyncComplete *) event;
|
2016-08-29 18:31:53 +02:00
|
|
|
|
2017-03-21 20:39:20 +01:00
|
|
|
pinos_log_debug ("node %p: async complete event %d %d", this, ac->body.seq.value, ac->body.res.value);
|
|
|
|
|
if (!pinos_work_queue_complete (impl->work, this, ac->body.seq.value, ac->body.res.value)) {
|
|
|
|
|
pinos_signal_emit (&this->async_complete, this, ac->body.seq.value, ac->body.res.value);
|
2016-09-02 19:51:23 +02:00
|
|
|
}
|
2017-03-21 20:39:20 +01:00
|
|
|
}
|
2017-03-24 11:40:58 +01:00
|
|
|
else if (SPA_EVENT_TYPE (event) == this->core->type.event_node.NeedInput) {
|
2017-04-12 10:40:17 +02:00
|
|
|
do_pull (this);
|
2017-03-21 20:39:20 +01:00
|
|
|
}
|
2017-03-24 11:40:58 +01:00
|
|
|
else if (SPA_EVENT_TYPE (event) == this->core->type.event_node.HaveOutput) {
|
2017-03-21 20:39:20 +01:00
|
|
|
SpaResult res;
|
2017-04-12 10:40:17 +02:00
|
|
|
PinosPort *outport;
|
2017-03-21 20:39:20 +01:00
|
|
|
|
2017-04-12 10:40:17 +02:00
|
|
|
spa_list_for_each (outport, &this->output_ports, link) {
|
2017-03-21 20:39:20 +01:00
|
|
|
PinosLink *link;
|
2017-04-12 10:40:17 +02:00
|
|
|
PinosPort *inport;
|
2017-04-03 14:56:04 +02:00
|
|
|
SpaPortIO *po;
|
2017-03-21 20:39:20 +01:00
|
|
|
|
2017-04-12 10:40:17 +02:00
|
|
|
po = &outport->io;
|
2017-03-21 20:39:20 +01:00
|
|
|
if (po->buffer_id == SPA_ID_INVALID)
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-03-30 17:30:28 +02:00
|
|
|
pinos_log_trace ("node %p: have output %d", this, po->buffer_id);
|
|
|
|
|
|
2017-03-21 20:39:20 +01:00
|
|
|
spa_list_for_each (link, &outport->rt.links, rt.output_link) {
|
|
|
|
|
if (link->rt.input == NULL || link->rt.output == NULL)
|
2016-10-24 18:01:04 +02:00
|
|
|
continue;
|
|
|
|
|
|
2017-03-21 20:39:20 +01:00
|
|
|
inport = link->rt.input;
|
2017-04-12 10:40:17 +02:00
|
|
|
inport->io = *po;
|
2017-01-18 18:29:15 +01:00
|
|
|
|
2017-03-21 20:39:20 +01:00
|
|
|
if ((res = spa_node_process_input (inport->node->node)) < 0)
|
|
|
|
|
pinos_log_warn ("node %p: got process input %d", inport->node, res);
|
|
|
|
|
}
|
2016-09-02 19:51:23 +02:00
|
|
|
}
|
2017-04-08 20:33:54 +02:00
|
|
|
if ((res = spa_node_process_output (this->node)) < 0)
|
|
|
|
|
pinos_log_warn ("node %p: got process output %d", this, res);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
else if (SPA_EVENT_TYPE (event) == this->core->type.event_node.ReuseBuffer) {
|
|
|
|
|
SpaEventNodeReuseBuffer *rb = (SpaEventNodeReuseBuffer *) event;
|
2017-04-12 10:40:17 +02:00
|
|
|
PinosPort *inport;
|
2017-04-08 20:33:54 +02:00
|
|
|
|
|
|
|
|
pinos_log_trace ("node %p: reuse buffer %u", this, rb->body.buffer_id.value);
|
|
|
|
|
|
2017-04-12 10:40:17 +02:00
|
|
|
spa_list_for_each (inport, &this->input_ports, link) {
|
2017-04-08 20:33:54 +02:00
|
|
|
PinosLink *link;
|
2017-04-12 10:40:17 +02:00
|
|
|
PinosPort *outport;
|
2017-04-08 20:33:54 +02:00
|
|
|
|
|
|
|
|
spa_list_for_each (link, &inport->rt.links, rt.input_link) {
|
|
|
|
|
if (link->rt.input == NULL || link->rt.output == NULL)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
outport = link->rt.output;
|
2017-04-12 10:40:17 +02:00
|
|
|
outport->io.buffer_id = rb->body.buffer_id.value;
|
2017-04-08 20:33:54 +02:00
|
|
|
}
|
2017-03-21 20:39:20 +01:00
|
|
|
}
|
|
|
|
|
}
|
2017-03-24 11:40:58 +01:00
|
|
|
else if (SPA_EVENT_TYPE (event) == this->core->type.event_node.RequestClockUpdate) {
|
2017-03-21 20:39:20 +01:00
|
|
|
send_clock_update (this);
|
2016-07-22 17:17:44 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-02 13:38:43 +01:00
|
|
|
static void
|
|
|
|
|
node_unbind_func (void *data)
|
|
|
|
|
{
|
|
|
|
|
PinosResource *resource = data;
|
|
|
|
|
spa_list_remove (&resource->link);
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-10 17:12:53 +01:00
|
|
|
static SpaResult
|
2016-12-02 13:38:43 +01:00
|
|
|
node_bind_func (PinosGlobal *global,
|
|
|
|
|
PinosClient *client,
|
|
|
|
|
uint32_t version,
|
|
|
|
|
uint32_t id)
|
|
|
|
|
{
|
|
|
|
|
PinosNode *this = global->object;
|
|
|
|
|
PinosResource *resource;
|
|
|
|
|
PinosNodeInfo info;
|
2017-03-24 16:14:17 +01:00
|
|
|
int i;
|
2016-12-02 13:38:43 +01:00
|
|
|
|
|
|
|
|
resource = pinos_resource_new (client,
|
|
|
|
|
id,
|
2017-01-10 17:12:53 +01:00
|
|
|
global->type,
|
2016-12-02 13:38:43 +01:00
|
|
|
global->object,
|
|
|
|
|
node_unbind_func);
|
2016-12-22 16:50:01 +01:00
|
|
|
if (resource == NULL)
|
|
|
|
|
goto no_mem;
|
2016-12-02 13:38:43 +01:00
|
|
|
|
|
|
|
|
pinos_log_debug ("node %p: bound to %d", this, resource->id);
|
|
|
|
|
|
|
|
|
|
spa_list_insert (this->resource_list.prev, &resource->link);
|
|
|
|
|
|
2016-12-15 20:09:48 +01:00
|
|
|
info.id = global->id;
|
2016-12-02 13:38:43 +01:00
|
|
|
info.change_mask = ~0;
|
|
|
|
|
info.name = this->name;
|
2017-04-12 10:40:17 +02:00
|
|
|
info.max_inputs = this->max_input_ports;
|
|
|
|
|
info.n_inputs = this->n_input_ports;
|
2017-02-01 08:58:21 +01:00
|
|
|
info.input_formats = NULL;
|
|
|
|
|
for (info.n_input_formats = 0; ; info.n_input_formats++) {
|
|
|
|
|
SpaFormat *fmt;
|
|
|
|
|
|
|
|
|
|
if (spa_node_port_enum_formats (this->node,
|
|
|
|
|
SPA_DIRECTION_INPUT,
|
|
|
|
|
0,
|
|
|
|
|
&fmt,
|
|
|
|
|
NULL,
|
|
|
|
|
info.n_input_formats) < 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
info.input_formats = realloc (info.input_formats, sizeof (SpaFormat*) * (info.n_input_formats + 1));
|
2017-03-06 15:48:04 +01:00
|
|
|
info.input_formats[info.n_input_formats] = spa_format_copy (fmt);
|
2017-02-01 08:58:21 +01:00
|
|
|
}
|
2017-04-12 10:40:17 +02:00
|
|
|
info.max_outputs = this->max_output_ports;
|
|
|
|
|
info.n_outputs = this->n_output_ports;
|
2017-02-01 08:58:21 +01:00
|
|
|
info.output_formats = NULL;
|
|
|
|
|
for (info.n_output_formats = 0; ; info.n_output_formats++) {
|
|
|
|
|
SpaFormat *fmt;
|
|
|
|
|
|
|
|
|
|
if (spa_node_port_enum_formats (this->node,
|
|
|
|
|
SPA_DIRECTION_OUTPUT,
|
|
|
|
|
0,
|
|
|
|
|
&fmt,
|
|
|
|
|
NULL,
|
|
|
|
|
info.n_output_formats) < 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
info.output_formats = realloc (info.output_formats, sizeof (SpaFormat*) * (info.n_output_formats + 1));
|
2017-03-06 15:48:04 +01:00
|
|
|
info.output_formats[info.n_output_formats] = spa_format_copy (fmt);
|
2017-02-01 08:58:21 +01:00
|
|
|
}
|
2016-12-02 13:38:43 +01:00
|
|
|
info.state = this->state;
|
2016-12-22 16:50:01 +01:00
|
|
|
info.error = this->error;
|
2016-12-02 13:38:43 +01:00
|
|
|
info.props = this->properties ? &this->properties->dict : NULL;
|
|
|
|
|
|
2017-03-02 16:06:45 +01:00
|
|
|
pinos_node_notify_info (resource, &info);
|
|
|
|
|
|
2017-03-24 16:14:17 +01:00
|
|
|
if (info.input_formats) {
|
|
|
|
|
for (i = 0; i < info.n_input_formats; i++)
|
|
|
|
|
free (info.input_formats[i]);
|
|
|
|
|
free (info.input_formats);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (info.output_formats) {
|
|
|
|
|
for (i = 0; i < info.n_output_formats; i++)
|
|
|
|
|
free (info.output_formats[i]);
|
|
|
|
|
free (info.output_formats);
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-02 16:06:45 +01:00
|
|
|
return SPA_RESULT_OK;
|
|
|
|
|
|
2016-12-22 16:50:01 +01:00
|
|
|
no_mem:
|
2017-03-09 15:52:19 +01:00
|
|
|
pinos_log_error ("can't create node resource");
|
2017-03-02 16:06:45 +01:00
|
|
|
pinos_core_notify_error (client->core_resource,
|
|
|
|
|
client->core_resource->id,
|
2017-01-17 10:27:58 +01:00
|
|
|
SPA_RESULT_NO_MEMORY,
|
|
|
|
|
"no memory");
|
2017-01-10 17:12:53 +01:00
|
|
|
return SPA_RESULT_NO_MEMORY;
|
2016-12-02 13:38:43 +01:00
|
|
|
}
|
|
|
|
|
|
2016-09-23 17:08:20 +02:00
|
|
|
static void
|
|
|
|
|
init_complete (PinosNode *this)
|
|
|
|
|
{
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (this, PinosNodeImpl, this);
|
2016-09-23 17:08:20 +02:00
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
update_port_ids (this);
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: init completed", this);
|
2016-11-14 12:42:00 +01:00
|
|
|
impl->async_init = false;
|
|
|
|
|
|
2016-11-21 12:54:40 +01:00
|
|
|
pinos_node_update_state (this, PINOS_NODE_STATE_SUSPENDED, NULL);
|
2016-12-02 13:38:43 +01:00
|
|
|
|
2017-01-12 14:57:07 +01:00
|
|
|
spa_list_insert (this->core->node_list.prev, &this->link);
|
2016-12-02 13:38:43 +01:00
|
|
|
this->global = pinos_core_add_global (this->core,
|
2017-01-10 17:12:53 +01:00
|
|
|
NULL,
|
2017-03-24 11:40:58 +01:00
|
|
|
this->core->type.node,
|
2016-12-02 13:38:43 +01:00
|
|
|
0,
|
|
|
|
|
this,
|
|
|
|
|
node_bind_func);
|
2016-09-23 17:08:20 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
void
|
|
|
|
|
pinos_node_set_data_loop (PinosNode *node,
|
|
|
|
|
PinosDataLoop *loop)
|
2016-05-12 17:06:48 +02:00
|
|
|
{
|
2016-11-14 12:42:00 +01:00
|
|
|
node->data_loop = loop;
|
|
|
|
|
pinos_signal_emit (&node->loop_changed, node);
|
2016-05-12 17:06:48 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
PinosNode *
|
|
|
|
|
pinos_node_new (PinosCore *core,
|
|
|
|
|
const char *name,
|
2017-04-08 20:33:54 +02:00
|
|
|
bool async,
|
2016-11-10 15:42:14 +01:00
|
|
|
SpaNode *node,
|
|
|
|
|
SpaClock *clock,
|
|
|
|
|
PinosProperties *properties)
|
2016-05-12 17:06:48 +02:00
|
|
|
{
|
2016-11-10 15:42:14 +01:00
|
|
|
PinosNodeImpl *impl;
|
|
|
|
|
PinosNode *this;
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
impl = calloc (1, sizeof (PinosNodeImpl));
|
2016-12-22 16:50:01 +01:00
|
|
|
if (impl == NULL)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
this = &impl->this;
|
|
|
|
|
this->core = core;
|
2016-11-10 15:42:14 +01:00
|
|
|
pinos_log_debug ("node %p: new", this);
|
2016-11-09 12:57:51 +01:00
|
|
|
|
2017-01-12 16:48:17 +01:00
|
|
|
impl->work = pinos_work_queue_new (this->core->main_loop->loop);
|
|
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
this->name = strdup (name);
|
|
|
|
|
this->properties = properties;
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
this->node = node;
|
|
|
|
|
this->clock = clock;
|
2016-11-16 16:57:47 +01:00
|
|
|
this->data_loop = core->data_loop;
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-12-02 13:38:43 +01:00
|
|
|
spa_list_init (&this->resource_list);
|
|
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
if (spa_node_set_event_callback (this->node, on_node_event, this) < 0)
|
|
|
|
|
pinos_log_warn ("node %p: error setting callback", this);
|
|
|
|
|
|
|
|
|
|
pinos_signal_init (&this->destroy_signal);
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_init (&this->port_added);
|
|
|
|
|
pinos_signal_init (&this->port_removed);
|
|
|
|
|
pinos_signal_init (&this->state_request);
|
|
|
|
|
pinos_signal_init (&this->state_changed);
|
2017-01-12 14:57:07 +01:00
|
|
|
pinos_signal_init (&this->free_signal);
|
2016-11-10 15:42:14 +01:00
|
|
|
pinos_signal_init (&this->async_complete);
|
2017-04-12 10:40:17 +02:00
|
|
|
pinos_signal_init (&this->initialized);
|
2016-11-14 12:42:00 +01:00
|
|
|
pinos_signal_init (&this->loop_changed);
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
this->state = PINOS_NODE_STATE_CREATING;
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_init (&this->input_ports);
|
|
|
|
|
spa_list_init (&this->output_ports);
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
if (this->node->info) {
|
2017-03-07 11:56:43 +01:00
|
|
|
uint32_t i;
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
if (this->properties == NULL)
|
|
|
|
|
this->properties = pinos_properties_new (NULL, NULL);
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-12-22 16:50:01 +01:00
|
|
|
if (this->properties)
|
|
|
|
|
goto no_mem;
|
|
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
for (i = 0; i < this->node->info->n_items; i++)
|
|
|
|
|
pinos_properties_set (this->properties,
|
|
|
|
|
this->node->info->items[i].key,
|
|
|
|
|
this->node->info->items[i].value);
|
|
|
|
|
}
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
impl->async_init = async;
|
|
|
|
|
if (async) {
|
2017-01-12 16:48:17 +01:00
|
|
|
pinos_work_queue_add (impl->work,
|
|
|
|
|
this,
|
|
|
|
|
SPA_RESULT_RETURN_ASYNC (0),
|
|
|
|
|
(PinosWorkFunc) init_complete,
|
|
|
|
|
NULL);
|
2017-04-08 20:33:54 +02:00
|
|
|
} else {
|
|
|
|
|
init_complete (this);
|
2016-11-10 15:42:14 +01:00
|
|
|
}
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
return this;
|
2016-12-22 16:50:01 +01:00
|
|
|
|
|
|
|
|
no_mem:
|
|
|
|
|
free (this->name);
|
|
|
|
|
free (impl);
|
|
|
|
|
return NULL;
|
2016-05-17 09:38:30 +02:00
|
|
|
}
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
static SpaResult
|
2016-11-18 17:46:01 +01:00
|
|
|
do_node_remove_done (SpaLoop *loop,
|
2016-11-15 13:29:58 +01:00
|
|
|
bool async,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
size_t size,
|
|
|
|
|
void *data,
|
|
|
|
|
void *user_data)
|
|
|
|
|
{
|
|
|
|
|
PinosNode *this = user_data;
|
2017-01-12 14:57:07 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (this, PinosNodeImpl, this);
|
2016-11-15 13:29:58 +01:00
|
|
|
PinosPort *port, *tmp;
|
|
|
|
|
|
2016-11-25 13:06:23 +01:00
|
|
|
pinos_log_debug ("node %p: remove done, destroy ports", this);
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_for_each_safe (port, tmp, &this->input_ports, link)
|
|
|
|
|
pinos_port_destroy (port);
|
|
|
|
|
|
|
|
|
|
spa_list_for_each_safe (port, tmp, &this->output_ports, link)
|
|
|
|
|
pinos_port_destroy (port);
|
|
|
|
|
|
2017-01-12 14:57:07 +01:00
|
|
|
pinos_log_debug ("node %p: free", this);
|
|
|
|
|
pinos_signal_emit (&this->free_signal, this);
|
|
|
|
|
|
2017-01-12 20:02:58 +01:00
|
|
|
pinos_work_queue_destroy (impl->work);
|
|
|
|
|
|
2017-01-12 14:57:07 +01:00
|
|
|
if (this->input_port_map)
|
|
|
|
|
free (this->input_port_map);
|
|
|
|
|
if (this->output_port_map)
|
|
|
|
|
free (this->output_port_map);
|
|
|
|
|
|
|
|
|
|
free (this->name);
|
|
|
|
|
free (this->error);
|
|
|
|
|
if (this->properties)
|
|
|
|
|
pinos_properties_free (this->properties);
|
|
|
|
|
free (impl);
|
2016-11-15 13:29:58 +01:00
|
|
|
|
|
|
|
|
return SPA_RESULT_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static SpaResult
|
2016-11-18 17:46:01 +01:00
|
|
|
do_node_remove (SpaLoop *loop,
|
2016-11-15 13:29:58 +01:00
|
|
|
bool async,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
size_t size,
|
|
|
|
|
void *data,
|
|
|
|
|
void *user_data)
|
|
|
|
|
{
|
|
|
|
|
PinosNode *this = user_data;
|
|
|
|
|
PinosPort *port, *tmp;
|
|
|
|
|
SpaResult res;
|
|
|
|
|
|
|
|
|
|
pause_node (this);
|
|
|
|
|
|
|
|
|
|
spa_list_for_each_safe (port, tmp, &this->input_ports, link) {
|
|
|
|
|
PinosLink *link, *tlink;
|
|
|
|
|
spa_list_for_each_safe (link, tlink, &port->rt.links, rt.input_link) {
|
|
|
|
|
spa_list_remove (&link->rt.input_link);
|
|
|
|
|
link->rt.input = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
spa_list_for_each_safe (port, tmp, &this->output_ports, link) {
|
|
|
|
|
PinosLink *link, *tlink;
|
|
|
|
|
spa_list_for_each_safe (link, tlink, &port->rt.links, rt.output_link) {
|
|
|
|
|
spa_list_remove (&link->rt.output_link);
|
|
|
|
|
link->rt.output = NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-22 13:06:22 +01:00
|
|
|
res = pinos_loop_invoke (this->core->main_loop->loop,
|
|
|
|
|
do_node_remove_done,
|
|
|
|
|
seq,
|
|
|
|
|
0,
|
|
|
|
|
NULL,
|
|
|
|
|
this);
|
2016-11-15 13:29:58 +01:00
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-18 17:40:58 +02:00
|
|
|
/**
|
2016-11-14 12:42:00 +01:00
|
|
|
* pinos_node_destroy:
|
2016-07-18 17:40:58 +02:00
|
|
|
* @node: a #PinosNode
|
|
|
|
|
*
|
2016-11-14 12:42:00 +01:00
|
|
|
* Remove @node. This will stop the transfer on the node and
|
|
|
|
|
* free the resources allocated by @node.
|
2016-07-18 17:40:58 +02:00
|
|
|
*/
|
2016-11-25 13:06:23 +01:00
|
|
|
void
|
2016-11-14 12:42:00 +01:00
|
|
|
pinos_node_destroy (PinosNode * this)
|
2016-07-18 17:40:58 +02:00
|
|
|
{
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (this, PinosNodeImpl, this);
|
2016-12-02 17:14:32 +01:00
|
|
|
PinosResource *resource, *tmp;
|
2016-07-18 17:40:58 +02:00
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
pinos_log_debug ("node %p: destroy", impl);
|
|
|
|
|
pinos_signal_emit (&this->destroy_signal, this);
|
|
|
|
|
|
2017-01-20 15:53:03 +01:00
|
|
|
if (!impl->async_init) {
|
|
|
|
|
spa_list_remove (&this->link);
|
|
|
|
|
pinos_global_destroy (this->global);
|
|
|
|
|
}
|
2016-07-18 17:40:58 +02:00
|
|
|
|
2016-12-02 17:14:32 +01:00
|
|
|
spa_list_for_each_safe (resource, tmp, &this->resource_list, link)
|
|
|
|
|
pinos_resource_destroy (resource);
|
|
|
|
|
|
2017-01-12 14:57:07 +01:00
|
|
|
pinos_loop_invoke (this->data_loop->loop,
|
|
|
|
|
do_node_remove,
|
2017-01-12 20:02:58 +01:00
|
|
|
1,
|
2017-01-12 14:57:07 +01:00
|
|
|
0,
|
|
|
|
|
NULL,
|
|
|
|
|
this);
|
2016-07-18 17:40:58 +02:00
|
|
|
}
|
|
|
|
|
|
2016-09-12 18:29:59 +02:00
|
|
|
/**
|
|
|
|
|
* pinos_node_get_free_port:
|
|
|
|
|
* @node: a #PinosNode
|
|
|
|
|
* @direction: a #PinosDirection
|
|
|
|
|
*
|
2017-02-01 08:58:21 +01:00
|
|
|
* Find a new unused port in @node with @direction
|
2016-09-12 18:29:59 +02:00
|
|
|
*
|
2017-02-01 08:58:21 +01:00
|
|
|
* Returns: the new port or %NULL on error
|
2016-09-12 18:29:59 +02:00
|
|
|
*/
|
2016-10-19 17:18:30 +02:00
|
|
|
PinosPort *
|
2016-09-12 18:29:59 +02:00
|
|
|
pinos_node_get_free_port (PinosNode *node,
|
|
|
|
|
PinosDirection direction)
|
|
|
|
|
{
|
2017-04-08 20:33:54 +02:00
|
|
|
uint32_t *n_ports, max_ports;
|
2016-11-15 13:29:58 +01:00
|
|
|
SpaList *ports;
|
2017-04-08 20:33:54 +02:00
|
|
|
PinosPort *port = NULL, *p, **portmap;
|
2017-04-08 20:59:38 +02:00
|
|
|
SpaResult res;
|
2017-04-08 20:33:54 +02:00
|
|
|
int i;
|
2016-09-12 18:29:59 +02:00
|
|
|
|
|
|
|
|
if (direction == PINOS_DIRECTION_INPUT) {
|
2017-04-12 10:40:17 +02:00
|
|
|
max_ports = node->max_input_ports;
|
|
|
|
|
n_ports = &node->n_input_ports;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = &node->input_ports;
|
2017-04-08 20:33:54 +02:00
|
|
|
portmap = node->input_port_map;
|
2016-09-12 18:29:59 +02:00
|
|
|
} else {
|
2017-04-12 10:40:17 +02:00
|
|
|
max_ports = node->max_output_ports;
|
|
|
|
|
n_ports = &node->n_output_ports;
|
2016-11-15 13:29:58 +01:00
|
|
|
ports = &node->output_ports;
|
2017-04-08 20:33:54 +02:00
|
|
|
portmap = node->output_port_map;
|
2016-09-12 18:29:59 +02:00
|
|
|
}
|
|
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
pinos_log_debug ("node %p: direction %d max %u, n %u", node, direction, max_ports, *n_ports);
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
spa_list_for_each (p, ports, link) {
|
2016-11-11 13:57:46 +01:00
|
|
|
if (spa_list_is_empty (&p->links)) {
|
2016-10-19 17:18:30 +02:00
|
|
|
port = p;
|
2016-09-28 10:42:36 +02:00
|
|
|
break;
|
2016-10-19 17:18:30 +02:00
|
|
|
}
|
2016-09-12 18:29:59 +02:00
|
|
|
}
|
2016-11-15 13:29:58 +01:00
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
if (port == NULL) {
|
|
|
|
|
/* no port, can we create one ? */
|
|
|
|
|
if (*n_ports < max_ports) {
|
|
|
|
|
for (i = 0; i < max_ports && port == NULL; i++) {
|
|
|
|
|
if (portmap[i] == NULL) {
|
|
|
|
|
pinos_log_debug ("node %p: creating port direction %d %u", node, direction, i);
|
|
|
|
|
port = portmap[i] = pinos_port_new (node, direction, i);
|
2017-04-12 10:40:17 +02:00
|
|
|
spa_list_insert (ports, &port->link);
|
2017-04-08 20:33:54 +02:00
|
|
|
(*n_ports)++;
|
2017-04-08 20:59:38 +02:00
|
|
|
if ((res = spa_node_add_port (node->node, direction, i)) < 0) {
|
|
|
|
|
pinos_log_error ("node %p: could not add port %d", node, i);
|
|
|
|
|
}
|
|
|
|
|
else {
|
2017-04-12 10:40:17 +02:00
|
|
|
spa_node_port_set_io (node->node, direction, i, &port->io);
|
2017-04-08 20:59:38 +02:00
|
|
|
}
|
2017-04-08 20:33:54 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
/* for output we can reuse an existing port */
|
|
|
|
|
if (direction == PINOS_DIRECTION_OUTPUT && !spa_list_is_empty (ports)) {
|
|
|
|
|
port = spa_list_first (ports, PinosPort, link);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-19 17:18:30 +02:00
|
|
|
return port;
|
2016-09-28 10:42:36 +02:00
|
|
|
|
2016-09-12 18:29:59 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-21 14:57:01 +02:00
|
|
|
static void
|
2016-10-24 12:20:44 +02:00
|
|
|
on_state_complete (PinosNode *node,
|
2016-11-26 19:18:51 +01:00
|
|
|
void *data,
|
2016-10-24 12:20:44 +02:00
|
|
|
SpaResult res)
|
2016-10-21 14:57:01 +02:00
|
|
|
{
|
2016-11-26 19:18:51 +01:00
|
|
|
PinosNodeState state = SPA_PTR_TO_INT (data);
|
2016-11-21 12:54:40 +01:00
|
|
|
char *error = NULL;
|
2016-10-24 12:20:44 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
pinos_log_debug ("node %p: state complete %d", node, res);
|
2016-10-24 12:20:44 +02:00
|
|
|
if (SPA_RESULT_IS_ERROR (res)) {
|
2016-11-15 13:29:58 +01:00
|
|
|
asprintf (&error, "error changing node state: %d", res);
|
2016-11-21 12:54:40 +01:00
|
|
|
state = PINOS_NODE_STATE_ERROR;
|
|
|
|
|
}
|
|
|
|
|
pinos_node_update_state (node, state, error);
|
2016-10-21 14:57:01 +02:00
|
|
|
}
|
|
|
|
|
|
2017-04-08 20:33:54 +02:00
|
|
|
static void
|
|
|
|
|
node_activate (PinosNode *this)
|
|
|
|
|
{
|
|
|
|
|
PinosPort *port;
|
|
|
|
|
|
|
|
|
|
spa_list_for_each (port, &this->input_ports, link) {
|
|
|
|
|
PinosLink *link;
|
|
|
|
|
spa_list_for_each (link, &port->links, input_link)
|
|
|
|
|
pinos_link_activate (link);
|
|
|
|
|
}
|
|
|
|
|
spa_list_for_each (port, &this->output_ports, link) {
|
|
|
|
|
PinosLink *link;
|
|
|
|
|
spa_list_for_each (link, &port->links, output_link)
|
|
|
|
|
pinos_link_activate (link);
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-05-12 17:06:48 +02:00
|
|
|
/**
|
|
|
|
|
* pinos_node_set_state:
|
|
|
|
|
* @node: a #PinosNode
|
|
|
|
|
* @state: a #PinosNodeState
|
|
|
|
|
*
|
|
|
|
|
* Set the state of @node to @state.
|
|
|
|
|
*
|
2016-10-21 14:57:01 +02:00
|
|
|
* Returns: a #SpaResult
|
2016-05-12 17:06:48 +02:00
|
|
|
*/
|
2016-10-21 14:57:01 +02:00
|
|
|
SpaResult
|
2016-05-12 17:06:48 +02:00
|
|
|
pinos_node_set_state (PinosNode *node,
|
|
|
|
|
PinosNodeState state)
|
|
|
|
|
{
|
2016-10-21 14:57:01 +02:00
|
|
|
SpaResult res = SPA_RESULT_OK;
|
2017-01-12 16:48:17 +01:00
|
|
|
PinosNodeImpl *impl = SPA_CONTAINER_OF (node, PinosNodeImpl, this);
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->state_request, node, state);
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: set state %s", node, pinos_node_state_as_string (state));
|
2016-10-21 14:57:01 +02:00
|
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
|
case PINOS_NODE_STATE_CREATING:
|
|
|
|
|
return SPA_RESULT_ERROR;
|
|
|
|
|
|
|
|
|
|
case PINOS_NODE_STATE_SUSPENDED:
|
|
|
|
|
res = suspend_node (node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PINOS_NODE_STATE_IDLE:
|
|
|
|
|
res = pause_node (node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PINOS_NODE_STATE_RUNNING:
|
2017-04-08 20:33:54 +02:00
|
|
|
node_activate (node);
|
2016-10-21 14:57:01 +02:00
|
|
|
send_clock_update (node);
|
|
|
|
|
res = start_node (node);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PINOS_NODE_STATE_ERROR:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (SPA_RESULT_IS_ERROR (res))
|
|
|
|
|
return res;
|
|
|
|
|
|
2017-01-12 16:48:17 +01:00
|
|
|
pinos_work_queue_add (impl->work,
|
|
|
|
|
node,
|
|
|
|
|
res,
|
|
|
|
|
(PinosWorkFunc) on_state_complete,
|
|
|
|
|
SPA_INT_TO_PTR (state));
|
2016-05-12 17:06:48 +02:00
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* pinos_node_update_state:
|
|
|
|
|
* @node: a #PinosNode
|
|
|
|
|
* @state: a #PinosNodeState
|
2016-11-21 12:54:40 +01:00
|
|
|
* @error: error when @state is #PINOS_NODE_STATE_ERROR
|
2016-05-12 17:06:48 +02:00
|
|
|
*
|
|
|
|
|
* Update the state of a node. This method is used from
|
|
|
|
|
* inside @node itself.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
pinos_node_update_state (PinosNode *node,
|
2016-11-21 12:54:40 +01:00
|
|
|
PinosNodeState state,
|
|
|
|
|
char *error)
|
2016-05-12 17:06:48 +02:00
|
|
|
{
|
2016-09-23 17:08:20 +02:00
|
|
|
PinosNodeState old;
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
old = node->state;
|
2016-09-23 17:08:20 +02:00
|
|
|
if (old != state) {
|
2016-12-02 13:38:43 +01:00
|
|
|
PinosNodeInfo info;
|
|
|
|
|
PinosResource *resource;
|
|
|
|
|
|
2016-11-03 19:41:53 +01:00
|
|
|
pinos_log_debug ("node %p: update state from %s -> %s", node,
|
2016-09-23 17:08:20 +02:00
|
|
|
pinos_node_state_as_string (old),
|
|
|
|
|
pinos_node_state_as_string (state));
|
2016-11-10 15:42:14 +01:00
|
|
|
|
2016-11-21 12:54:40 +01:00
|
|
|
if (node->error)
|
|
|
|
|
free (node->error);
|
|
|
|
|
node->error = error;
|
2016-11-10 15:42:14 +01:00
|
|
|
node->state = state;
|
2016-12-02 13:38:43 +01:00
|
|
|
|
2017-01-17 10:27:58 +01:00
|
|
|
pinos_signal_emit (&node->state_changed, node, old, state);
|
2016-12-02 13:38:43 +01:00
|
|
|
|
|
|
|
|
spa_zero (info);
|
2017-02-01 08:58:21 +01:00
|
|
|
info.change_mask = 1 << 5;
|
2016-12-02 13:38:43 +01:00
|
|
|
info.state = node->state;
|
2016-12-22 16:50:01 +01:00
|
|
|
info.error = node->error;
|
2016-12-02 13:38:43 +01:00
|
|
|
|
|
|
|
|
spa_list_for_each (resource, &node->resource_list, link) {
|
2017-03-02 16:06:45 +01:00
|
|
|
/* global is only set when there are resources */
|
2016-12-15 20:09:48 +01:00
|
|
|
info.id = node->global->id;
|
2017-03-02 16:06:45 +01:00
|
|
|
pinos_node_notify_info (resource, &info);
|
2016-12-02 13:38:43 +01:00
|
|
|
}
|
2016-05-12 17:06:48 +02:00
|
|
|
}
|
|
|
|
|
}
|