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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __PINOS_NODE_H__
|
|
|
|
|
#define __PINOS_NODE_H__
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-08 18:00:52 +01:00
|
|
|
#define PINOS_NODE_URI "http://pinos.org/ns/node"
|
|
|
|
|
#define PINOS_NODE_PREFIX PINOS_NODE_URI "#"
|
|
|
|
|
|
2016-05-12 17:06:48 +02:00
|
|
|
typedef struct _PinosNode PinosNode;
|
2016-10-28 16:56:33 +02:00
|
|
|
|
2016-08-02 16:34:44 +02:00
|
|
|
#include <spa/include/spa/node.h>
|
|
|
|
|
|
2016-11-07 10:24:13 +01:00
|
|
|
#include <pinos/client/mem.h>
|
2016-11-07 18:23:09 +01:00
|
|
|
#include <pinos/client/transport.h>
|
2016-11-07 10:24:13 +01:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
#include <pinos/server/core.h>
|
|
|
|
|
#include <pinos/server/port.h>
|
2016-09-02 19:51:23 +02:00
|
|
|
#include <pinos/server/link.h>
|
2016-09-27 16:59:45 +02:00
|
|
|
#include <pinos/server/client.h>
|
2016-11-14 12:42:00 +01:00
|
|
|
#include <pinos/server/data-loop.h>
|
2016-10-19 17:18:30 +02:00
|
|
|
|
2016-05-12 17:06:48 +02:00
|
|
|
/**
|
|
|
|
|
* PinosNode:
|
|
|
|
|
*
|
|
|
|
|
* Pinos node class.
|
|
|
|
|
*/
|
|
|
|
|
struct _PinosNode {
|
2016-11-15 13:29:58 +01:00
|
|
|
PinosCore *core;
|
2016-11-15 20:12:31 +01:00
|
|
|
SpaList link;
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosGlobal *global;
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
bool unlinking;
|
|
|
|
|
|
2016-11-10 15:42:14 +01:00
|
|
|
char *name;
|
|
|
|
|
PinosProperties *properties;
|
|
|
|
|
PinosNodeState state;
|
2016-11-15 13:29:58 +01:00
|
|
|
char *error;
|
2017-01-17 10:27:58 +01:00
|
|
|
PINOS_SIGNAL (state_request, (PinosListener *listener,
|
|
|
|
|
PinosNode *object,
|
|
|
|
|
PinosNodeState state));
|
|
|
|
|
PINOS_SIGNAL (state_changed, (PinosListener *listener,
|
|
|
|
|
PinosNode *object,
|
|
|
|
|
PinosNodeState old,
|
|
|
|
|
PinosNodeState state));
|
2016-10-28 16:56:33 +02:00
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
SpaHandle *handle;
|
2016-08-02 16:34:44 +02:00
|
|
|
SpaNode *node;
|
2016-09-19 19:17:59 +02:00
|
|
|
bool live;
|
|
|
|
|
SpaClock *clock;
|
|
|
|
|
|
2016-12-02 13:38:43 +01:00
|
|
|
SpaList resource_list;
|
|
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
SpaList input_ports;
|
|
|
|
|
SpaList output_ports;
|
2017-01-17 10:27:58 +01:00
|
|
|
PINOS_SIGNAL (port_added, (PinosListener *listener,
|
|
|
|
|
PinosNode *node,
|
|
|
|
|
PinosPort *port));
|
|
|
|
|
PINOS_SIGNAL (port_removed, (PinosListener *listener,
|
|
|
|
|
PinosNode *node,
|
|
|
|
|
PinosPort *port));
|
2016-11-15 13:29:58 +01:00
|
|
|
|
|
|
|
|
PinosPort **input_port_map;
|
|
|
|
|
PinosPort **output_port_map;
|
|
|
|
|
|
|
|
|
|
unsigned int n_used_output_links;
|
|
|
|
|
unsigned int n_used_input_links;
|
2016-09-23 17:08:20 +02:00
|
|
|
|
2016-11-07 18:23:09 +01:00
|
|
|
PinosTransport *transport;
|
2016-11-14 12:42:00 +01:00
|
|
|
PINOS_SIGNAL (transport_changed, (PinosListener *listener,
|
|
|
|
|
PinosNode *object));
|
|
|
|
|
|
|
|
|
|
PINOS_SIGNAL (destroy_signal, (PinosListener *listener,
|
|
|
|
|
PinosNode *object));
|
2017-01-12 14:57:07 +01:00
|
|
|
PINOS_SIGNAL (free_signal, (PinosListener *listener,
|
|
|
|
|
PinosNode *object));
|
2016-11-10 15:42:14 +01:00
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
PINOS_SIGNAL (async_complete, (PinosListener *listener,
|
|
|
|
|
PinosNode *node,
|
|
|
|
|
uint32_t seq,
|
|
|
|
|
SpaResult res));
|
|
|
|
|
|
|
|
|
|
PinosDataLoop *data_loop;
|
|
|
|
|
PINOS_SIGNAL (loop_changed, (PinosListener *listener,
|
|
|
|
|
PinosNode *object));
|
2016-11-10 15:42:14 +01:00
|
|
|
|
2016-05-12 17:06:48 +02:00
|
|
|
};
|
|
|
|
|
|
2016-11-14 12:42:00 +01:00
|
|
|
PinosNode * pinos_node_new (PinosCore *core,
|
2016-11-10 15:42:14 +01:00
|
|
|
const char *name,
|
|
|
|
|
SpaNode *node,
|
|
|
|
|
SpaClock *clock,
|
|
|
|
|
PinosProperties *properties);
|
2016-11-25 13:06:23 +01:00
|
|
|
void pinos_node_destroy (PinosNode *node);
|
2016-11-14 12:42:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
void pinos_node_set_data_loop (PinosNode *node,
|
|
|
|
|
PinosDataLoop *loop);
|
2016-05-17 09:38:30 +02:00
|
|
|
|
2016-10-19 17:18:30 +02:00
|
|
|
PinosPort * pinos_node_get_free_port (PinosNode *node,
|
2016-09-16 13:13:41 +02:00
|
|
|
PinosDirection direction);
|
|
|
|
|
|
2016-11-21 12:54:40 +01:00
|
|
|
SpaResult pinos_node_set_state (PinosNode *node,
|
|
|
|
|
PinosNodeState state);
|
|
|
|
|
void pinos_node_update_state (PinosNode *node,
|
|
|
|
|
PinosNodeState state,
|
|
|
|
|
char *error);
|
2016-05-12 17:06:48 +02:00
|
|
|
|
2016-11-15 13:29:58 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2016-10-28 16:56:33 +02:00
|
|
|
|
2016-05-12 17:06:48 +02:00
|
|
|
|
|
|
|
|
#endif /* __PINOS_NODE_H__ */
|