mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
142 lines
3.7 KiB
C
142 lines
3.7 KiB
C
/* Pinos
|
|
* 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.
|
|
*/
|
|
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <dlfcn.h>
|
|
|
|
#include <spa/node.h>
|
|
#include <spa/debug.h>
|
|
|
|
static void
|
|
inspect_node (SpaNode *node)
|
|
{
|
|
SpaResult res;
|
|
SpaProps *props;
|
|
unsigned int n_input, max_input, n_output, max_output;
|
|
SpaFormat *format;
|
|
void *state = NULL;
|
|
|
|
if ((res = node->get_props (node, &props)) < 0)
|
|
printf ("can't get properties: %d\n", res);
|
|
else
|
|
spa_debug_props (props, true);
|
|
|
|
if ((res = node->get_n_ports (node, &n_input, &max_input, &n_output, &max_output)) < 0)
|
|
printf ("can't get n_ports: %d\n", res);
|
|
else
|
|
printf ("supported ports %d %d %d %d\n", n_input, max_input, n_output, max_output);
|
|
|
|
while (true) {
|
|
if ((res = node->port_enum_formats (node, 0, &format, NULL, &state)) < 0) {
|
|
if (res != SPA_RESULT_ENUM_END)
|
|
printf ("got error %d\n", res);
|
|
break;
|
|
}
|
|
if (format)
|
|
spa_debug_format (format);
|
|
}
|
|
if ((res = node->port_get_props (node, 0, &props)) < 0)
|
|
printf ("port_get_props error: %d\n", res);
|
|
else
|
|
spa_debug_props (props, true);
|
|
}
|
|
|
|
static void
|
|
inspect_factory (const SpaHandleFactory *factory)
|
|
{
|
|
SpaResult res;
|
|
SpaHandle *handle;
|
|
void *interface;
|
|
void *state = NULL;
|
|
|
|
printf ("factory name:\t\t'%s'\n", factory->name);
|
|
printf ("factory info:\n");
|
|
if (factory->info)
|
|
spa_debug_props (factory->info, true);
|
|
else
|
|
printf (" none\n");
|
|
|
|
handle = calloc (1, factory->size);
|
|
if ((res = factory->init (factory, handle)) < 0) {
|
|
printf ("can't make factory instance: %d\n", res);
|
|
return;
|
|
}
|
|
|
|
printf ("factory interfaces:\n");
|
|
|
|
while (true) {
|
|
const SpaInterfaceInfo *info;
|
|
|
|
if ((res = factory->enum_interface_info (factory, &info, &state)) < 0) {
|
|
if (res == SPA_RESULT_ENUM_END)
|
|
break;
|
|
else
|
|
printf ("can't enumerate interfaces: %d\n", res);
|
|
}
|
|
printf (" interface: (%d) '%s' : '%s'\n", info->interface_id, info->name, info->description);
|
|
|
|
if ((res = handle->get_interface (handle, info->interface_id, &interface)) < 0) {
|
|
printf ("can't get interface: %d\n", res);
|
|
continue;
|
|
}
|
|
|
|
switch (info->interface_id) {
|
|
case SPA_INTERFACE_ID_NODE:
|
|
inspect_node (interface);
|
|
break;
|
|
default:
|
|
printf ("skipping unknown interface\n");
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
int
|
|
main (int argc, char *argv[])
|
|
{
|
|
SpaResult res;
|
|
void *handle;
|
|
SpaEnumHandleFactoryFunc enum_func;
|
|
void *state = NULL;
|
|
|
|
if ((handle = dlopen (argv[1], RTLD_NOW)) == NULL) {
|
|
printf ("can't load %s\n", argv[1]);
|
|
return -1;
|
|
}
|
|
if ((enum_func = dlsym (handle, "spa_enum_handle_factory")) == NULL) {
|
|
printf ("can't find function\n");
|
|
return -1;
|
|
}
|
|
|
|
while (true) {
|
|
const SpaHandleFactory *factory;
|
|
|
|
if ((res = enum_func (&factory, &state)) < 0) {
|
|
if (res != SPA_RESULT_ENUM_END)
|
|
printf ("can't enumerate factories: %d\n", res);
|
|
break;
|
|
}
|
|
inspect_factory (factory);
|
|
}
|
|
|
|
return 0;
|
|
}
|