mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-31 22:25:38 -04:00
Do not use dynamic types anymore. The reason is that it's difficult: - to maintain a shared type database over a network. - the extra overhead when translating between processes and for maintaining the translation tables. - race conditions in translating in RT-threads, this is a problem because we want to make event streams. We now have simple enums with types and extension points for all types. This is also nicer to use in general. We don't need the mapper anymore or pass strings around as types. There is a parallel type info system to get more info about ids and enums and their hierarchy. It can also be used for debugging.
118 lines
3.2 KiB
C
118 lines
3.2 KiB
C
/* Spa
|
|
* Copyright (C) 2017 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 <errno.h>
|
|
|
|
#include <spa/support/log-impl.h>
|
|
#include <spa/pod/pod.h>
|
|
#include <spa/pod/builder.h>
|
|
#include <spa/pod/parser.h>
|
|
#include <spa/param/video/format.h>
|
|
|
|
#include <spa/debug/pod.h>
|
|
#include <spa/debug/types.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
struct spa_pod_builder b = { NULL, };
|
|
uint8_t buffer[1024];
|
|
uint32_t ref;
|
|
struct spa_pod *obj;
|
|
struct spa_pod_parser prs;
|
|
|
|
b.data = buffer;
|
|
b.size = 1024;
|
|
|
|
spa_pod_builder_push_object(&b, 0, 0);
|
|
|
|
uint32_t formats[] = { 1, 2 };
|
|
spa_pod_builder_push_prop(&b, 1, SPA_POD_PROP_RANGE_ENUM);
|
|
spa_pod_builder_int(&b, 1);
|
|
spa_pod_builder_int(&b, formats[0]);
|
|
spa_pod_builder_int(&b, formats[1]);
|
|
spa_pod_builder_pop(&b);
|
|
|
|
spa_pod_builder_push_prop(&b, 2, 0);
|
|
spa_pod_builder_int(&b, 42);
|
|
spa_pod_builder_pop(&b);
|
|
|
|
struct spa_rectangle sizes[] = { {0, 0}, {1024, 1024} };
|
|
spa_pod_builder_push_prop(&b,
|
|
3, SPA_POD_PROP_RANGE_MIN_MAX | SPA_POD_PROP_FLAG_UNSET);
|
|
spa_pod_builder_rectangle(&b, 320, 240);
|
|
spa_pod_builder_raw(&b, sizes, sizeof(sizes));
|
|
spa_pod_builder_pop(&b);
|
|
|
|
spa_pod_builder_push_prop(&b, 4, SPA_POD_PROP_FLAG_READONLY);
|
|
ref = spa_pod_builder_push_struct(&b);
|
|
spa_pod_builder_int(&b, 4);
|
|
spa_pod_builder_long(&b, 6000);
|
|
spa_pod_builder_float(&b, 4.0);
|
|
spa_pod_builder_double(&b, 3.14);
|
|
spa_pod_builder_string(&b, "test123");
|
|
spa_pod_builder_rectangle(&b, 320, 240);
|
|
spa_pod_builder_fraction(&b, 25, 1);
|
|
spa_pod_builder_push_array(&b);
|
|
spa_pod_builder_int(&b, 4);
|
|
spa_pod_builder_int(&b, 5);
|
|
spa_pod_builder_int(&b, 6);
|
|
spa_pod_builder_pop(&b);
|
|
spa_pod_builder_pop(&b);
|
|
spa_pod_builder_pop(&b);
|
|
obj = spa_pod_builder_pop(&b);
|
|
|
|
spa_debug_pod(0, spa_debug_types, obj);
|
|
|
|
struct spa_pod_prop *p = spa_pod_find_prop(obj, 4);
|
|
printf("%d %d\n", p->body.key, p->body.flags);
|
|
spa_debug_pod(0, spa_debug_types, &p->body.value);
|
|
|
|
obj = spa_pod_builder_deref(&b, ref);
|
|
|
|
int32_t vi, *pi;
|
|
int64_t vl;
|
|
float vf;
|
|
double vd;
|
|
char *vs;
|
|
struct spa_rectangle vr;
|
|
struct spa_fraction vfr;
|
|
struct spa_pod_array *va;
|
|
spa_pod_parser_pod(&prs, obj);
|
|
spa_pod_parser_get(&prs,
|
|
"["
|
|
"i", &vi,
|
|
"l", &vl,
|
|
"f", &vf,
|
|
"d", &vd,
|
|
"s", &vs,
|
|
"R", &vr,
|
|
"F", &vfr,
|
|
"P", &va, 0);
|
|
|
|
printf("%u %lu %f %g %s %ux%u %u/%u\n", vi, vl, vf, vd, vs, vr.width, vr.height, vfr.num,
|
|
vfr.denom);
|
|
SPA_POD_ARRAY_BODY_FOREACH(&va->body, SPA_POD_BODY_SIZE(va), pi) {
|
|
printf("%d\n", *pi);
|
|
}
|
|
return 0;
|
|
}
|