summaryrefslogtreecommitdiffstats
path: root/src/util/gen-map.pl
blob: 23d946577736fe9da39c0879bbcea88747fddcdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#!perl -w
use ktemplate;
# List of parameters accepted for substitution.
@parms = qw(NAME KEY VALUE COMPARE COPYKEY FREEKEY FREEVALUE);
# Defaults, if any.
$parm{"COPYKEY"} = "0";
$parm{"FREEKEY"} = "0";
$parm{"FREEVALUE"} = "0";
#
&run;
#
__DATA__
/*
 * map, generated from template
 * map name: <NAME>
 * key: <KEY>
 * value: <VALUE>
 * compare: <COMPARE>
 * copy_key: <COPYKEY>
 * free_key: <FREEKEY>
 * free_value: <FREEVALUE>
 */
struct <NAME>__element {
    <KEY> key;
    <VALUE> value;
    struct <NAME>__element *next;
};
struct <NAME>__head {
    struct <NAME>__element *first;
};
typedef struct <NAME>__head <NAME>;
static inline int <NAME>_init (struct <NAME>__head *head)
{
    head->first = NULL;
    return 0;
}
static inline void <NAME>_destroy (struct <NAME>__head *head)
{
    struct <NAME>__element *e, *e_next;
    void (*free_key)(<KEY>) = <FREEKEY>;
    void (*free_value)(<VALUE>) = <FREEVALUE>;
    for (e = head->first; e; e = e_next) {
	e_next = e->next;
	if (free_key)
	    (*free_key)(e->key);
	if (free_value)
	    (*free_value)(e->value);
	free(e);
    }
    head->first = NULL;
}
/* Returns pointer to linked-list entry, or null if key not found.  */
static inline struct <NAME>__element *
<NAME>__find_node (struct <NAME>__head *head, <KEY> key)
{
    struct <NAME>__element *e;
    for (e = head->first; e; e = e->next)
	if (<COMPARE> (key, e->key) == 0)
	    return e;
    return 0;
}
/* Returns pointer to value, or null if key not found.  */
static inline <VALUE> *
<NAME>_find (struct <NAME>__head *head, <KEY> key)
{
    struct <NAME>__element *e = <NAME>__find_node(head, key);
    if (e)
	return &e->value;
    return 0;
}
/* Returns 0 or error code.  */
static inline int
<NAME>__copy_key (<KEY> *out, <KEY> in)
{
    int (*copykey)(<KEY> *, <KEY>) = <COPYKEY>;
    if (copykey == 0) {
	*out = in;
	return 0;
    } else
	return (*copykey)(out, in);
}
/* Returns 0 or error code.  */
static inline int
<NAME>_replace_or_insert (struct <NAME>__head *head,
			  <KEY> key, <VALUE> new_value)
{
    struct <NAME>__element *e = <NAME>__find_node(head, key);
    int ret;

    if (e) {
	/* replace */
	void (*free_value)(<VALUE>) = <FREEVALUE>;
	if (free_value)
	    (*free_value)(e->value);
	e->value = new_value;
    } else {
	/* insert */
	e = malloc(sizeof(*e));
	if (e == NULL)
	    return ENOMEM;
	ret = <NAME>__copy_key (&e->key, key);
	if (ret) {
	    free(e);
	    return ret;
	}
	e->value = new_value;
	e->next = head->first;
	head->first = e;
    }
    return 0;
}