summaryrefslogtreecommitdiff
path: root/src/tests/eo/constructors/constructors_simple.c
blob: 6d12ef9fb8f9b3f8fb8d44d05805d884329b1268 (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
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif

#include "Eo.h"
#include "constructors_mixin.h"
#include "constructors_simple.h"

typedef struct
{
   int a;
   int b;
} Private_Data;

#define MY_CLASS SIMPLE_CLASS

static char *class_var = NULL;

#define _GET_SET_FUNC(name) \
static int \
_##name##_get(Eo *obj EINA_UNUSED, void *class_data) \
{ \
   const Private_Data *pd = class_data; \
   printf("%s %d\n", __func__, pd->name); \
   return pd->name; \
} \
static void \
_##name##_set(Eo *obj EINA_UNUSED, void *class_data, int name) \
{ \
   Private_Data *pd = class_data; \
   pd->name = name; \
   printf("%s %d\n", __func__, pd->name); \
} \
EFL_VOID_FUNC_BODYV(simple_##name##_set, EFL_FUNC_CALL(name), int name); \
EFL_FUNC_BODY(simple_##name##_get, int, 0);

_GET_SET_FUNC(a)
_GET_SET_FUNC(b)

extern int my_init_count;

static Eo *
_constructor(Eo *obj, void *class_data EINA_UNUSED)
{
   my_init_count++;

   return efl_constructor(efl_super(obj, MY_CLASS));
}

static Eo*
_finalize(Eo *obj, void *class_data EINA_UNUSED)
{
   Eo *ret;
   Private_Data *pd = class_data;

   ret = efl_finalize(efl_super(obj, MY_CLASS));

   if (pd->a < 0)
     {
        return NULL;
     }

   return ret;
}

static void
_destructor(Eo *obj, void *class_data EINA_UNUSED)
{
   efl_destructor(efl_super(obj, MY_CLASS));

   my_init_count--;
}

static void
_class_constructor(Efl_Class *klass EINA_UNUSED)
{
   class_var = malloc(10);
}

static void
_class_destructor(Efl_Class *klass EINA_UNUSED)
{
   free(class_var);
}

EFL_VOID_FUNC_BODYV(simple_constructor, EFL_FUNC_CALL(a), int a);

static Efl_Op_Description op_descs[] = {
     EFL_OBJECT_OP_FUNC_OVERRIDE(efl_constructor, _constructor),
     EFL_OBJECT_OP_FUNC_OVERRIDE(efl_destructor, _destructor),
     EFL_OBJECT_OP_FUNC_OVERRIDE(efl_finalize, _finalize),
     EFL_OBJECT_OP_FUNC(simple_a_set, _a_set),
     EFL_OBJECT_OP_FUNC(simple_a_get, _a_get),
     EFL_OBJECT_OP_FUNC(simple_b_set, _b_set),
     EFL_OBJECT_OP_FUNC(simple_b_get, _b_get),
};

static const Efl_Class_Description class_desc = {
     EO_VERSION,
     "Simple",
     EFL_CLASS_TYPE_REGULAR,
     EFL_CLASS_DESCRIPTION_OPS(op_descs),
     NULL,
     sizeof(Private_Data),
     _class_constructor,
     _class_destructor
};

EFL_DEFINE_CLASS(simple_class_get, &class_desc, EO_CLASS,
      MIXIN_CLASS, NULL);