Line | Branch | Exec | Source |
---|---|---|---|
1 | /* | ||
2 | * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at> | ||
3 | * | ||
4 | * This file is part of FFmpeg. | ||
5 | * | ||
6 | * FFmpeg is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU Lesser General Public | ||
8 | * License as published by the Free Software Foundation; either | ||
9 | * version 2.1 of the License, or (at your option) any later version. | ||
10 | * | ||
11 | * FFmpeg is distributed in the hope that it will be useful, | ||
12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * Lesser General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU Lesser General Public | ||
17 | * License along with FFmpeg; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
19 | */ | ||
20 | |||
21 | #include "error.h" | ||
22 | #include "log.h" | ||
23 | #include "mem.h" | ||
24 | #include "tree.h" | ||
25 | |||
26 | typedef struct AVTreeNode { | ||
27 | struct AVTreeNode *child[2]; | ||
28 | void *elem; | ||
29 | int state; | ||
30 | } AVTreeNode; | ||
31 | |||
32 | const int av_tree_node_size = sizeof(AVTreeNode); | ||
33 | |||
34 | 16043 | struct AVTreeNode *av_tree_node_alloc(void) | |
35 | { | ||
36 | 16043 | return av_mallocz(sizeof(struct AVTreeNode)); | |
37 | } | ||
38 | |||
39 | 156386 | void *av_tree_find(const AVTreeNode *t, void *key, | |
40 | int (*cmp)(const void *key, const void *b), void *next[2]) | ||
41 | { | ||
42 |
2/2✓ Branch 0 taken 137430 times.
✓ Branch 1 taken 18956 times.
|
156386 | if (t) { |
43 | 137430 | unsigned int v = cmp(key, t->elem); | |
44 |
2/2✓ Branch 0 taken 134465 times.
✓ Branch 1 taken 2965 times.
|
137430 | if (v) { |
45 |
2/2✓ Branch 0 taken 14478 times.
✓ Branch 1 taken 119987 times.
|
134465 | if (next) |
46 | 14478 | next[v >> 31] = t->elem; | |
47 | 134465 | return av_tree_find(t->child[(v >> 31) ^ 1], key, cmp, next); | |
48 | } else { | ||
49 |
2/2✓ Branch 0 taken 2951 times.
✓ Branch 1 taken 14 times.
|
2965 | if (next) { |
50 | 2951 | av_tree_find(t->child[0], key, cmp, next); | |
51 | 2951 | av_tree_find(t->child[1], key, cmp, next); | |
52 | } | ||
53 | 2965 | return t->elem; | |
54 | } | ||
55 | } | ||
56 | 18956 | return NULL; | |
57 | } | ||
58 | |||
59 | 278882 | void *av_tree_insert(AVTreeNode **tp, void *key, | |
60 | int (*cmp)(const void *key, const void *b), AVTreeNode **next) | ||
61 | { | ||
62 | 278882 | AVTreeNode *t = *tp; | |
63 |
2/2✓ Branch 0 taken 253411 times.
✓ Branch 1 taken 25471 times.
|
278882 | if (t) { |
64 | 253411 | unsigned int v = cmp(t->elem, key); | |
65 | void *ret; | ||
66 |
2/2✓ Branch 0 taken 1434 times.
✓ Branch 1 taken 251977 times.
|
253411 | if (!v) { |
67 |
2/2✓ Branch 0 taken 510 times.
✓ Branch 1 taken 924 times.
|
1434 | if (*next) |
68 | 510 | return t->elem; | |
69 |
4/4✓ Branch 0 taken 610 times.
✓ Branch 1 taken 314 times.
✓ Branch 2 taken 45 times.
✓ Branch 3 taken 565 times.
|
924 | else if (t->child[0] || t->child[1]) { |
70 | 359 | int i = !t->child[0]; | |
71 | void *next_elem[2]; | ||
72 | 359 | av_tree_find(t->child[i], key, cmp, next_elem); | |
73 | 359 | key = t->elem = next_elem[i]; | |
74 | 359 | v = -i; | |
75 | } else { | ||
76 | 565 | *next = t; | |
77 | 565 | *tp = NULL; | |
78 | 565 | return NULL; | |
79 | } | ||
80 | } | ||
81 | 252336 | ret = av_tree_insert(&t->child[v >> 31], key, cmp, next); | |
82 |
2/2✓ Branch 0 taken 36238 times.
✓ Branch 1 taken 216098 times.
|
252336 | if (!ret) { |
83 | 36238 | int i = (v >> 31) ^ !!*next; | |
84 | 36238 | AVTreeNode **child = &t->child[i]; | |
85 | 36238 | t->state += 2 * i - 1; | |
86 | |||
87 |
2/2✓ Branch 0 taken 12791 times.
✓ Branch 1 taken 23447 times.
|
36238 | if (!(t->state & 1)) { |
88 |
2/2✓ Branch 0 taken 7302 times.
✓ Branch 1 taken 5489 times.
|
12791 | if (t->state) { |
89 | /* The following code is equivalent to | ||
90 | * if ((*child)->state * 2 == -t->state) | ||
91 | * rotate(child, i ^ 1); | ||
92 | * rotate(tp, i); | ||
93 | * | ||
94 | * with rotate(): | ||
95 | * static void rotate(AVTreeNode **tp, int i) | ||
96 | * { | ||
97 | * AVTreeNode *t= *tp; | ||
98 | * | ||
99 | * *tp = t->child[i]; | ||
100 | * t->child[i] = t->child[i]->child[i ^ 1]; | ||
101 | * (*tp)->child[i ^ 1] = t; | ||
102 | * i = 4 * t->state + 2 * (*tp)->state + 12; | ||
103 | * t->state = ((0x614586 >> i) & 3) - 1; | ||
104 | * (*tp)->state = ((0x400EEA >> i) & 3) - 1 + | ||
105 | * ((*tp)->state >> 1); | ||
106 | * } | ||
107 | * but such a rotate function is both bigger and slower | ||
108 | */ | ||
109 |
2/2✓ Branch 0 taken 2289 times.
✓ Branch 1 taken 5013 times.
|
7302 | if ((*child)->state * 2 == -t->state) { |
110 | 2289 | *tp = (*child)->child[i ^ 1]; | |
111 | 2289 | (*child)->child[i ^ 1] = (*tp)->child[i]; | |
112 | 2289 | (*tp)->child[i] = *child; | |
113 | 2289 | *child = (*tp)->child[i ^ 1]; | |
114 | 2289 | (*tp)->child[i ^ 1] = t; | |
115 | |||
116 | 2289 | (*tp)->child[0]->state = -((*tp)->state > 0); | |
117 | 2289 | (*tp)->child[1]->state = (*tp)->state < 0; | |
118 | 2289 | (*tp)->state = 0; | |
119 | } else { | ||
120 | 5013 | *tp = *child; | |
121 | 5013 | *child = (*child)->child[i ^ 1]; | |
122 | 5013 | (*tp)->child[i ^ 1] = t; | |
123 |
2/2✓ Branch 0 taken 4968 times.
✓ Branch 1 taken 45 times.
|
5013 | if ((*tp)->state) |
124 | 4968 | t->state = 0; | |
125 | else | ||
126 | 45 | t->state >>= 1; | |
127 | 5013 | (*tp)->state = -t->state; | |
128 | } | ||
129 | } | ||
130 | } | ||
131 |
2/2✓ Branch 0 taken 12774 times.
✓ Branch 1 taken 23464 times.
|
36238 | if (!(*tp)->state ^ !!*next) |
132 | 12774 | return key; | |
133 | } | ||
134 | 239562 | return ret; | |
135 | } else { | ||
136 | 25471 | *tp = *next; | |
137 | 25471 | *next = NULL; | |
138 |
2/2✓ Branch 0 taken 16020 times.
✓ Branch 1 taken 9451 times.
|
25471 | if (*tp) { |
139 | 16020 | (*tp)->elem = key; | |
140 | 16020 | return NULL; | |
141 | } else | ||
142 | 9451 | return key; | |
143 | } | ||
144 | } | ||
145 | |||
146 | 33607 | void av_tree_destroy(AVTreeNode *t) | |
147 | { | ||
148 |
2/2✓ Branch 0 taken 15455 times.
✓ Branch 1 taken 18152 times.
|
33607 | if (t) { |
149 | 15455 | av_tree_destroy(t->child[0]); | |
150 | 15455 | av_tree_destroy(t->child[1]); | |
151 | 15455 | av_free(t); | |
152 | } | ||
153 | 33607 | } | |
154 | |||
155 | 15678 | void av_tree_enumerate(AVTreeNode *t, void *opaque, | |
156 | int (*cmp)(void *opaque, void *elem), | ||
157 | int (*enu)(void *opaque, void *elem)) | ||
158 | { | ||
159 |
2/2✓ Branch 0 taken 6491 times.
✓ Branch 1 taken 9187 times.
|
15678 | if (t) { |
160 |
1/2✗ Branch 0 not taken.
✓ Branch 1 taken 6491 times.
|
6491 | int v = cmp ? cmp(opaque, t->elem) : 0; |
161 |
1/2✓ Branch 0 taken 6491 times.
✗ Branch 1 not taken.
|
6491 | if (v >= 0) |
162 | 6491 | av_tree_enumerate(t->child[0], opaque, cmp, enu); | |
163 |
1/2✓ Branch 0 taken 6491 times.
✗ Branch 1 not taken.
|
6491 | if (v == 0) |
164 | 6491 | enu(opaque, t->elem); | |
165 |
1/2✓ Branch 0 taken 6491 times.
✗ Branch 1 not taken.
|
6491 | if (v <= 0) |
166 | 6491 | av_tree_enumerate(t->child[1], opaque, cmp, enu); | |
167 | } | ||
168 | 15678 | } | |
169 |