Branch data Line data Source code
1 : : /*
2 : : Copyright 2012-2018 David Robillard <http://drobilla.net>
3 : :
4 : : Permission to use, copy, modify, and/or distribute this software for any
5 : : purpose with or without fee is hereby granted, provided that the above
6 : : copyright notice and this permission notice appear in all copies.
7 : :
8 : : THIS SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 : : WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 : : MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 : : ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 : : WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 : : ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 : : OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 : : */
16 : :
17 : : #include "lv2/atom/atom.h"
18 : : #include "lv2/atom/forge.h"
19 : : #include "lv2/atom/util.h"
20 : : #include "lv2/urid/urid.h"
21 : :
22 : : #include <stdarg.h>
23 : : #include <stdio.h>
24 : : #include <stdlib.h>
25 : :
26 : : char** uris = NULL;
27 : : uint32_t n_uris = 0;
28 : :
29 : : static char*
30 : 54 : copy_string(const char* str)
31 : : {
32 : 54 : const size_t len = strlen(str);
33 : 54 : char* dup = (char*)malloc(len + 1);
34 : 54 : memcpy(dup, str, len + 1);
35 : 54 : return dup;
36 : : }
37 : :
38 : : static LV2_URID
39 : 3168 : urid_map(LV2_URID_Map_Handle handle, const char* uri)
40 : : {
41 [ + + ]: 30420 : for (uint32_t i = 0; i < n_uris; ++i) {
42 [ + + ]: 30366 : if (!strcmp(uris[i], uri)) {
43 : 3114 : return i + 1;
44 : : }
45 : : }
46 : :
47 : 54 : uris = (char**)realloc(uris, ++n_uris * sizeof(char*));
48 : 54 : uris[n_uris - 1] = copy_string(uri);
49 : 54 : return n_uris;
50 : : }
51 : :
52 : : static void
53 : 2 : free_urid_map(void)
54 : : {
55 [ + + ]: 56 : for (uint32_t i = 0; i < n_uris; ++i) {
56 : 54 : free(uris[i]);
57 : : }
58 : :
59 : 2 : free(uris);
60 : 2 : }
61 : :
62 : : static int
63 : 0 : test_fail(const char* fmt, ...)
64 : : {
65 : : va_list args;
66 : 0 : va_start(args, fmt);
67 : 0 : fprintf(stderr, "error: ");
68 : 0 : vfprintf(stderr, fmt, args);
69 : 0 : va_end(args);
70 : 0 : return 1;
71 : : }
|