summaryrefslogtreecommitdiff
path: root/src/benchmarks/eina/eina_bench_json.c
blob: e18eab8f7ebaa5b3399b47d6d10c39fc4b7f7a5e (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
/* EINA - EFL data type library
 * Copyright (C) 2013 Yossi Kantor
                      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_json.h"
#include "eina_main.h"
#include "eina_bench.h"

static void
eina_bench_json_parse(int request)
{
   int i;
   eina_init();

   Eina_Json_Context *jctx = eina_json_context_dom_new();
   eina_json_context_parse(jctx, "{");
   for (i = 0; i < request; i++)
     eina_json_context_parse(jctx, "\"Bench\":[\"Json\", 34.5, true, null],");
   eina_json_context_parse(jctx, "\"End\":null }");

   eina_shutdown();
}

void eina_bench_json(Eina_Benchmark *bench)
{
   eina_benchmark_register(bench, "json",
                           EINA_BENCHMARK(eina_bench_json_parse),
                           100, 100000, 500);
}