libavutil/tree.c
9eb88fde
 /*
  * copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg 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
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
c2e936de
 #include "error.h"
9eb88fde
 #include "log.h"
1d9c2dc8
 #include "mem.h"
9eb88fde
 #include "tree.h"
 
425b45d4
 typedef struct AVTreeNode {
9eb88fde
     struct AVTreeNode *child[2];
     void *elem;
     int state;
425b45d4
 } AVTreeNode;
9eb88fde
 
6e8b982b
 const int av_tree_node_size = sizeof(AVTreeNode);
9a92aea2
 
 struct AVTreeNode *av_tree_node_alloc(void)
 {
     return av_mallocz(sizeof(struct AVTreeNode));
 }
6e8b982b
 
425b45d4
 void *av_tree_find(const AVTreeNode *t, void *key,
                    int (*cmp)(void *key, const void *b), void *next[2])
 {
     if (t) {
         unsigned int v = cmp(key, t->elem);
         if (v) {
10db1a9b
             if (next)
                 next[v >> 31] = t->elem;
425b45d4
             return av_tree_find(t->child[(v >> 31) ^ 1], key, cmp, next);
         } else {
             if (next) {
116d15cc
                 av_tree_find(t->child[0], key, cmp, next);
                 av_tree_find(t->child[1], key, cmp, next);
             }
9eb88fde
             return t->elem;
         }
     }
     return NULL;
 }
 
425b45d4
 void *av_tree_insert(AVTreeNode **tp, void *key,
                      int (*cmp)(void *key, const void *b), AVTreeNode **next)
 {
     AVTreeNode *t = *tp;
     if (t) {
         unsigned int v = cmp(t->elem, key);
f05dda3b
         void *ret;
425b45d4
         if (!v) {
             if (*next)
f05dda3b
                 return t->elem;
425b45d4
             else if (t->child[0] || t->child[1]) {
                 int i = !t->child[0];
f05dda3b
                 void *next_elem[2];
3f161c7e
                 av_tree_find(t->child[i], key, cmp, next_elem);
425b45d4
                 key = t->elem = next_elem[i];
10db1a9b
                 v   = -i;
425b45d4
             } else {
                 *next = t;
10db1a9b
                 *tp   = NULL;
f05dda3b
                 return NULL;
             }
         }
425b45d4
         ret = av_tree_insert(&t->child[v >> 31], key, cmp, next);
         if (!ret) {
10db1a9b
             int i              = (v >> 31) ^ !!*next;
425b45d4
             AVTreeNode **child = &t->child[i];
             t->state += 2 * i - 1;
 
             if (!(t->state & 1)) {
                 if (t->state) {
51198a87
                     /* The following code is equivalent to
10db1a9b
                      * if ((*child)->state * 2 == -t->state)
                      *     rotate(child, i ^ 1);
                      * rotate(tp, i);
                      *
                      * with rotate():
                      * static void rotate(AVTreeNode **tp, int i)
                      * {
                      *     AVTreeNode *t= *tp;
                      *
                      *     *tp = t->child[i];
                      *     t->child[i] = t->child[i]->child[i ^ 1];
                      *     (*tp)->child[i ^ 1] = t;
                      *     i = 4 * t->state + 2 * (*tp)->state + 12;
                      *     t->state     = ((0x614586 >> i) & 3) - 1;
                      *     (*tp)->state = ((0x400EEA >> i) & 3) - 1 +
                      *                    ((*tp)->state >> 1);
                      * }
                      * but such a rotate function is both bigger and slower
                      */
                     if ((*child)->state * 2 == -t->state) {
425b45d4
                         *tp                    = (*child)->child[i ^ 1];
                         (*child)->child[i ^ 1] = (*tp)->child[i];
                         (*tp)->child[i]        = *child;
10db1a9b
                         *child                 = (*tp)->child[i ^ 1];
425b45d4
                         (*tp)->child[i ^ 1]    = t;
 
                         (*tp)->child[0]->state = -((*tp)->state > 0);
10db1a9b
                         (*tp)->child[1]->state = (*tp)->state < 0;
425b45d4
                         (*tp)->state           = 0;
                     } else {
10db1a9b
                         *tp                 = *child;
                         *child              = (*child)->child[i ^ 1];
                         (*tp)->child[i ^ 1] = t;
                         if ((*tp)->state)
                             t->state = 0;
                         else
                             t->state >>= 1;
                         (*tp)->state = -t->state;
9eb88fde
                     }
                 }
             }
425b45d4
             if (!(*tp)->state ^ !!*next)
a35bf971
                 return key;
         }
         return ret;
425b45d4
     } else {
         *tp   = *next;
         *next = NULL;
         if (*tp) {
             (*tp)->elem = key;
eed36075
             return NULL;
425b45d4
         } else
eed36075
             return key;
9eb88fde
     }
 }
 
425b45d4
 void av_tree_destroy(AVTreeNode *t)
 {
     if (t) {
045cbba9
         av_tree_destroy(t->child[0]);
         av_tree_destroy(t->child[1]);
         av_free(t);
d8bd113e
     }
9eb88fde
 }
 
425b45d4
 void av_tree_enumerate(AVTreeNode *t, void *opaque,
                        int (*cmp)(void *opaque, void *elem),
                        int (*enu)(void *opaque, void *elem))
 {
     if (t) {
         int v = cmp ? cmp(opaque, t->elem) : 0;
         if (v >= 0)
             av_tree_enumerate(t->child[0], opaque, cmp, enu);
         if (v == 0)
             enu(opaque, t->elem);
         if (v <= 0)
             av_tree_enumerate(t->child[1], opaque, cmp, enu);
edabf359
     }
9eb88fde
 }
 
 #ifdef TEST
294eaa26
 
1d9c2dc8
 #include "common.h"
294eaa26
 #include "lfg.h"
 
425b45d4
 static int check(AVTreeNode *t)
 {
     if (t) {
         int left  = check(t->child[0]);
         int right = check(t->child[1]);
9eb88fde
 
10db1a9b
         if (left > 999 || right > 999)
9eb88fde
             return 1000;
425b45d4
         if (right - left != t->state)
9eb88fde
             return 1000;
10db1a9b
         if (t->state > 1 || t->state < -1)
9eb88fde
             return 1000;
425b45d4
         return FFMAX(left, right) + 1;
9eb88fde
     }
     return 0;
 }
 
425b45d4
 static void print(AVTreeNode *t, int depth)
 {
9eb88fde
     int i;
10db1a9b
     for (i = 0; i < depth * 4; i++)
         av_log(NULL, AV_LOG_ERROR, " ");
425b45d4
     if (t) {
168fffdf
         av_log(NULL, AV_LOG_ERROR, "Node %p %2d %p\n", t, t->state, t->elem);
425b45d4
         print(t->child[0], depth + 1);
         print(t->child[1], depth + 1);
     } else
9eb88fde
         av_log(NULL, AV_LOG_ERROR, "NULL\n");
 }
 
425b45d4
 static int cmp(void *a, const void *b)
 {
     return (uint8_t *) a - (const uint8_t *) b;
9eb88fde
 }
 
db75537e
 int main(int argc, char **argv)
425b45d4
 {
168fffdf
     int i;
     void *k;
425b45d4
     AVTreeNode *root = NULL, *node = NULL;
64bde197
     AVLFG prng;
db75537e
     int log_level = argc <= 1 ? AV_LOG_INFO : atoi(argv[1]);
 
     av_log_set_level(log_level);
294eaa26
 
64bde197
     av_lfg_init(&prng, 1);
9eb88fde
 
425b45d4
     for (i = 0; i < 10000; i++) {
977cb54f
         intptr_t j = av_lfg_get(&prng) % 86294;
c2e936de
 
425b45d4
         if (check(root) > 999) {
9eb88fde
             av_log(NULL, AV_LOG_ERROR, "FATAL error %d\n", i);
10db1a9b
             print(root, 0);
5dfdffeb
             return 1;
9eb88fde
         }
64783660
         av_log(NULL, AV_LOG_DEBUG, "inserting %4d\n", (int)j);
1f5755d8
 
425b45d4
         if (!node)
e002e329
             node = av_tree_node_alloc();
c2e936de
         if (!node) {
             av_log(NULL, AV_LOG_ERROR, "Memory allocation failure.\n");
5dfdffeb
             return 1;
f05dda3b
         }
10db1a9b
         av_tree_insert(&root, (void *)(j + 1), cmp, &node);
f05dda3b
 
64bde197
         j = av_lfg_get(&prng) % 86294;
eed36075
         {
425b45d4
             AVTreeNode *node2 = NULL;
64783660
             av_log(NULL, AV_LOG_DEBUG, "removing %4d\n", (int)j);
10db1a9b
             av_tree_insert(&root, (void *)(j + 1), cmp, &node2);
             k = av_tree_find(root, (void *)(j + 1), cmp, NULL);
425b45d4
             if (k)
89c9ff50
                 av_log(NULL, AV_LOG_ERROR, "removal failure %d\n", i);
b3264381
             av_free(node2);
f05dda3b
         }
9eb88fde
     }
b3264381
     av_free(node);
c2e936de
 
     av_tree_destroy(root);
 
9eb88fde
     return 0;
 }
 #endif