efl/src/benchmarks/eina/eina_bench.c

127 lines
3.2 KiB
C

/* 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 <stdlib.h>
#include <stdio.h>
#include <limits.h>
#include "eina_bench.h"
#include "Eina.h"
typedef struct _Eina_Benchmark_Case Eina_Benchmark_Case;
struct _Eina_Benchmark_Case
{
const char *bench_case;
void (*build)(Eina_Benchmark *bench);
Eina_Bool run_by_default;
};
static const Eina_Benchmark_Case etc[] = {
{ "Hash", eina_bench_hash, EINA_TRUE },
{ "Array vs List vs Inlist", eina_bench_array, EINA_TRUE },
{ "Stringshare", eina_bench_stringshare, EINA_TRUE },
{ "Convert", eina_bench_convert, EINA_TRUE },
{ "Sort", eina_bench_sort, EINA_TRUE },
{ "Mempool", eina_bench_mempool, EINA_TRUE },
{ "Rectangle_Pool", eina_bench_rectangle_pool, EINA_TRUE },
{ "Render Loop", eina_bench_quadtree, EINA_FALSE },
{ NULL, NULL, EINA_FALSE }
};
/* FIXME this is a copy from eina_test_mempool
* we should remove the duplication
*/
static Eina_Array *_modules;
static void _mempool_init(void)
{
eina_init();
/* force modules to be loaded in case they are not installed */
_modules = eina_module_list_get(NULL,
PACKAGE_BUILD_DIR "/src/modules/eina",
EINA_TRUE,
NULL,
NULL);
eina_module_list_load(_modules);
}
static void _mempool_shutdown(void)
{
eina_module_list_free(_modules);
/* TODO delete the list */
eina_shutdown();
}
int
main(int argc, char **argv)
{
Eina_Benchmark *test;
unsigned int i;
_mempool_init();
eina_init();
switch (argc)
{
case 1:
for (i = 0; etc[i].bench_case; ++i)
if (etc[i].run_by_default)
{
test = eina_benchmark_new(etc[i].bench_case, "default");
if (!test) continue;
etc[i].build(test);
eina_benchmark_run(test);
eina_benchmark_free(test);
}
break;
case 2:
for (i = 0; etc[i].bench_case; ++i)
{
if (strcasecmp(etc[i].bench_case, argv[1]))
continue;
test = eina_benchmark_new(etc[i].bench_case, argv[1]);
if (!test)
continue;
etc[i].build(test);
eina_benchmark_run(test);
eina_benchmark_free(test);
break;
}
break;
}
eina_bench_e17();
eina_shutdown();
_mempool_shutdown();
return 0;
}