summaryrefslogtreecommitdiff
path: root/src/tests/eina_bench_stringshare_e17.c
blob: 6ab0a807ea61a9c150bc50888bb32165d6c0ec64 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* 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 <time.h>

#ifdef EINA_BENCH_HAVE_GLIB
# include <glib.h>
#endif

#include "Evas_Data.h"
#include "Ecore_Data.h"

#include "Eina.h"

#if EINA_ENABLE_BENCH_E17

typedef struct _Eina_Stringshare_Test Eina_Stringshare_Test;
struct _Eina_Stringshare_Test
{
   const char *name;

   int (*init)(void);
   const char *(*add)(const char *str);
   void (*del)(const char *str);
   int (*shutdown)(void);
};

static const char *strings[30000];
static Eina_Stringshare_Test eina_str = {
   "eina",
   eina_init,
   eina_stringshare_add,
   eina_stringshare_del,
   eina_shutdown
};

static Eina_Stringshare_Test evas_str = {
   "evas",
/*  evas_stringshare_init, */
   evas_stringshare_add,
   evas_stringshare_del
/*  evas_stringshare_shutdown */
};

static Eina_Stringshare_Test ecore_str = {
   "ecore",
   ecore_string_init,
   ecore_string_instance,
   ecore_string_release,
   ecore_string_shutdown
};

static Eina_Stringshare_Test *str[] = {
   &eina_str,
   &evas_str,
   &ecore_str,
   NULL
};

static void
eina_bench_e17_stringshare(Eina_Stringshare_Test *str)
{
   Eina_Counter *cnt;

   cnt = eina_counter_new(str->name);

   eina_counter_start(cnt);

   str->init();

#include "strlog"

   str->shutdown();

   eina_counter_stop(cnt, 1);

   fprintf(stderr, "For `%s`:\n", str->name);
   eina_counter_dump(cnt);

   eina_counter_free(cnt);
}
#endif

void
eina_bench_e17(void)
{
#if EINA_ENABLE_BENCH_E17
   int i;

   eina_init();

   for (i = 0; str[i]; ++i)
      eina_bench_e17_stringshare(str[i]);

   eina_shutdown();
#endif
}