aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/eina/src/tests/eina_bench_rectangle_pool.c
blob: 96d4b1bf0ab9f86379fbf27501d77c0a8db1bf12 (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
/* EINA - EFL data type library
 * Copyright (C) 2008 Cedric Bail
 *
 * This library 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.
 *
 * This library 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 this library;
 * if not, see <http://www.gnu.org/licenses/>.
 */

#ifdef HAVE_CONFIG_H
# include "config.h"
#endif

#include "eina_bench.h"
#include "Eina.h"

static void
eina_bench_eina_rectangle_pool(int request)
{
   Eina_Rectangle_Pool *pool;
   Eina_Rectangle *rect;
   Eina_List *list = NULL;
   int i;

   eina_init();
   eina_init();

   pool = eina_rectangle_pool_new(2048, 2048);
   if (!pool)
      return;

   for (i = 0; i < request; ++i)
     {
        rect = NULL;

        while (!rect)
          {
             rect = eina_rectangle_pool_request(pool, i & 0xFF, 256 - (i & 0xFF));
             if (!rect)
               {
                  rect = eina_list_data_get(list);
                  list = eina_list_remove_list(list, list);
                  if (rect)
                     eina_rectangle_pool_release(rect);
               }
             else
                list = eina_list_append(list, rect);

             if (!(i & 0xFF))
                break;
          }
     }

   eina_rectangle_pool_free(pool);
   eina_list_free(list);

   eina_shutdown();
}

void eina_bench_rectangle_pool(Eina_Benchmark *bench)
{
   eina_benchmark_register(bench, "eina",
                           EINA_BENCHMARK(
                              eina_bench_eina_rectangle_pool), 10, 4000, 100);
}