Mercurial > libavutil.hg
annotate tree.c @ 738:4f98a323598c libavutil
Remove '\p', '\c' and '\e' doxygen markup from doxy, as it should
improve plain text doxy readability.
See the thread: "[RFC] Should we use doxygen markup?".
author | stefano |
---|---|
date | Sat, 06 Jun 2009 09:35:15 +0000 |
parents | 5d344280a1f8 |
children | f0e08dd7d583 |
rev | line source |
---|---|
136 | 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 "common.h" | |
22 #include "log.h" | |
23 #include "tree.h" | |
24 | |
25 typedef struct AVTreeNode{ | |
26 struct AVTreeNode *child[2]; | |
27 void *elem; | |
28 int state; | |
29 }AVTreeNode; | |
30 | |
413
a54e20281de9
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
412
diff
changeset
|
31 const int av_tree_node_size = sizeof(AVTreeNode); |
a54e20281de9
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
412
diff
changeset
|
32 |
136 | 33 void *av_tree_find(const AVTreeNode *t, void *key, int (*cmp)(void *key, const void *b), void *next[2]){ |
34 if(t){ | |
418
9f2461caf179
Flip key and element so types match, not that it matters for any code
michael
parents:
415
diff
changeset
|
35 unsigned int v= cmp(key, t->elem); |
136 | 36 if(v){ |
418
9f2461caf179
Flip key and element so types match, not that it matters for any code
michael
parents:
415
diff
changeset
|
37 if(next) next[v>>31]= t->elem; |
9f2461caf179
Flip key and element so types match, not that it matters for any code
michael
parents:
415
diff
changeset
|
38 return av_tree_find(t->child[(v>>31)^1], key, cmp, next); |
136 | 39 }else{ |
412
357ac44f4720
Always set next correctly, even if a matching element is found (that is
michael
parents:
404
diff
changeset
|
40 if(next){ |
357ac44f4720
Always set next correctly, even if a matching element is found (that is
michael
parents:
404
diff
changeset
|
41 av_tree_find(t->child[0], key, cmp, next); |
357ac44f4720
Always set next correctly, even if a matching element is found (that is
michael
parents:
404
diff
changeset
|
42 av_tree_find(t->child[1], key, cmp, next); |
357ac44f4720
Always set next correctly, even if a matching element is found (that is
michael
parents:
404
diff
changeset
|
43 } |
136 | 44 return t->elem; |
45 } | |
46 } | |
47 return NULL; | |
48 } | |
49 | |
413
a54e20281de9
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
412
diff
changeset
|
50 void *av_tree_insert(AVTreeNode **tp, void *key, int (*cmp)(void *key, const void *b), AVTreeNode **next){ |
136 | 51 AVTreeNode *t= *tp; |
52 if(t){ | |
53 unsigned int v= cmp(t->elem, key); | |
414 | 54 void *ret; |
55 if(!v){ | |
56 if(*next) | |
57 return t->elem; | |
58 else if(t->child[0]||t->child[1]){ | |
59 int i= !t->child[0]; | |
60 void *next_elem[2]; | |
429 | 61 av_tree_find(t->child[i], key, cmp, next_elem); |
414 | 62 key= t->elem= next_elem[i]; |
63 v= -i; | |
64 }else{ | |
65 *next= t; | |
66 *tp=NULL; | |
67 return NULL; | |
68 } | |
69 } | |
419 | 70 ret= av_tree_insert(&t->child[v>>31], key, cmp, next); |
71 if(!ret){ | |
72 int i= (v>>31) ^ !!*next; | |
73 AVTreeNode **child= &t->child[i]; | |
74 t->state += 2*i - 1; | |
414 | 75 |
419 | 76 if(!(t->state&1)){ |
77 if(t->state){ | |
433 | 78 /* The following code is equivalent to |
79 if((*child)->state*2 == -t->state) | |
80 rotate(child, i^1); | |
81 rotate(tp, i); | |
82 | |
83 with rotate(): | |
84 static void rotate(AVTreeNode **tp, int i){ | |
85 AVTreeNode *t= *tp; | |
86 | |
87 *tp= t->child[i]; | |
88 t->child[i]= t->child[i]->child[i^1]; | |
89 (*tp)->child[i^1]= t; | |
90 i= 4*t->state + 2*(*tp)->state + 12; | |
91 t ->state= ((0x614586 >> i) & 3)-1; | |
92 (*tp)->state= ((*tp)->state>>1) + ((0x400EEA >> i) & 3)-1; | |
93 } | |
94 but such a rotate function is both bigger and slower | |
95 */ | |
419 | 96 if((*child)->state*2 == -t->state){ |
97 *tp= (*child)->child[i^1]; | |
98 (*child)->child[i^1]= (*tp)->child[i]; | |
99 (*tp)->child[i]= *child; | |
100 *child= (*tp)->child[i^1]; | |
101 (*tp)->child[i^1]= t; | |
136 | 102 |
419 | 103 (*tp)->child[0]->state= -((*tp)->state>0); |
104 (*tp)->child[1]->state= (*tp)->state<0 ; | |
105 (*tp)->state=0; | |
106 }else{ | |
107 *tp= *child; | |
108 *child= (*child)->child[i^1]; | |
109 (*tp)->child[i^1]= t; | |
110 if((*tp)->state) t->state = 0; | |
111 else t->state>>= 1; | |
112 (*tp)->state= -t->state; | |
136 | 113 } |
414 | 114 } |
136 | 115 } |
419 | 116 if(!(*tp)->state ^ !!*next) |
117 return key; | |
118 } | |
119 return ret; | |
136 | 120 }else{ |
413
a54e20281de9
Move *malloc() out of tree.c, that way the code can be used with
michael
parents:
412
diff
changeset
|
121 *tp= *next; *next= NULL; |
572
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
122 if(*tp){ |
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
123 (*tp)->elem= key; |
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
124 return NULL; |
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
125 }else |
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
126 return key; |
136 | 127 } |
128 } | |
129 | |
130 void av_tree_destroy(AVTreeNode *t){ | |
593 | 131 if(t){ |
594 | 132 av_tree_destroy(t->child[0]); |
133 av_tree_destroy(t->child[1]); | |
134 av_free(t); | |
593 | 135 } |
136 | 136 } |
137 | |
138 #if 0 | |
139 void av_tree_enumerate(AVTreeNode *t, void *opaque, int (*f)(void *opaque, void *elem)){ | |
137
dbcf66639764
improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents:
136
diff
changeset
|
140 int v= f(opaque, t->elem); |
dbcf66639764
improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents:
136
diff
changeset
|
141 if(v>=0) av_tree_enumerate(t->child[0], opaque, f); |
dbcf66639764
improve enumerate so arbitrary ranges can be enumerated quickly
michael
parents:
136
diff
changeset
|
142 if(v<=0) av_tree_enumerate(t->child[1], opaque, f); |
136 | 143 } |
144 #endif | |
145 | |
146 #ifdef TEST | |
701
ae6e96434bec
Replace random() usage in test programs by av_lfg_*().
diego
parents:
633
diff
changeset
|
147 |
ae6e96434bec
Replace random() usage in test programs by av_lfg_*().
diego
parents:
633
diff
changeset
|
148 #include "lfg.h" |
ae6e96434bec
Replace random() usage in test programs by av_lfg_*().
diego
parents:
633
diff
changeset
|
149 |
136 | 150 static int check(AVTreeNode *t){ |
151 if(t){ | |
152 int left= check(t->child[0]); | |
153 int right= check(t->child[1]); | |
154 | |
155 if(left>999 || right>999) | |
156 return 1000; | |
157 if(right - left != t->state) | |
158 return 1000; | |
159 if(t->state>1 || t->state<-1) | |
160 return 1000; | |
161 return FFMAX(left, right)+1; | |
162 } | |
163 return 0; | |
164 } | |
165 | |
166 static void print(AVTreeNode *t, int depth){ | |
167 int i; | |
168 for(i=0; i<depth*4; i++) av_log(NULL, AV_LOG_ERROR, " "); | |
169 if(t){ | |
717 | 170 av_log(NULL, AV_LOG_ERROR, "Node %p %2d %p\n", t, t->state, t->elem); |
136 | 171 print(t->child[0], depth+1); |
172 print(t->child[1], depth+1); | |
173 }else | |
174 av_log(NULL, AV_LOG_ERROR, "NULL\n"); | |
175 } | |
176 | |
717 | 177 static int cmp(void *a, const void *b){ |
178 return (uint8_t*)a-(const uint8_t*)b; | |
136 | 179 } |
180 | |
404 | 181 int main(void){ |
717 | 182 int i; |
183 void *k; | |
414 | 184 AVTreeNode *root= NULL, *node=NULL; |
726
5d344280a1f8
cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).
diego
parents:
717
diff
changeset
|
185 AVLFG prng; |
701
ae6e96434bec
Replace random() usage in test programs by av_lfg_*().
diego
parents:
633
diff
changeset
|
186 |
726
5d344280a1f8
cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).
diego
parents:
717
diff
changeset
|
187 av_lfg_init(&prng, 1); |
136 | 188 |
189 for(i=0; i<10000; i++){ | |
726
5d344280a1f8
cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).
diego
parents:
717
diff
changeset
|
190 int j = av_lfg_get(&prng) % 86294; |
136 | 191 if(check(root) > 999){ |
192 av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i); | |
193 print(root, 0); | |
194 return -1; | |
195 } | |
196 av_log(NULL, AV_LOG_ERROR, "inserting %4d\n", j); | |
414 | 197 if(!node) |
198 node= av_mallocz(av_tree_node_size); | |
199 av_tree_insert(&root, (void*)(j+1), cmp, &node); | |
200 | |
726
5d344280a1f8
cosmetics: Rename prn variable to prng (Pseudo Random Number Generator).
diego
parents:
717
diff
changeset
|
201 j = av_lfg_get(&prng) % 86294; |
572
5877edf05eb7
Avoid undefined behavior for removing elements that were not in the tree.
michael
parents:
433
diff
changeset
|
202 { |
414 | 203 AVTreeNode *node2=NULL; |
430 | 204 av_log(NULL, AV_LOG_ERROR, "removing %4d\n", j); |
414 | 205 av_tree_insert(&root, (void*)(j+1), cmp, &node2); |
206 k= av_tree_find(root, (void*)(j+1), cmp, NULL); | |
207 if(k) | |
633 | 208 av_log(NULL, AV_LOG_ERROR, "removal failure %d\n", i); |
414 | 209 } |
136 | 210 } |
211 return 0; | |
212 } | |
213 #endif |