blob: 2a7f5874eff6618568ffed475f99f61c75a116c4 (
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
|
#include <stdio.h>
#include <stdlib.h>
#include "eo_definitions.h"
void
eo_definitions_ret_free(Eo_Ret_Def *ret)
{
if (ret->type) eina_stringshare_del(ret->type);
if (ret->comment) eina_stringshare_del(ret->comment);
/* do not free */
}
void
eo_definitions_param_free(Eo_Param_Def *param)
{
if (param->type) eina_stringshare_del(param->type);
if (param->name) eina_stringshare_del(param->name);
if (param->comment) eina_stringshare_del(param->comment);
free(param);
}
void
eo_definitions_accessor_free(Eo_Accessor_Def *accessor)
{
const char *s;
Eina_List *l;
if (accessor->comment)
eina_stringshare_del(accessor->comment);
if (accessor->legacy)
eina_stringshare_del(accessor->legacy);
eo_definitions_ret_free(&accessor->ret);
free(accessor);
}
void
eo_definitions_property_def_free(Eo_Property_Def *prop)
{
Eo_Param_Def *param;
Eo_Accessor_Def *accessor;
if (prop->name)
eina_stringshare_del(prop->name);
EINA_LIST_FREE(prop->params, param)
eo_definitions_param_free(param);
EINA_LIST_FREE(prop->accessors, accessor)
eo_definitions_accessor_free(accessor);
free(prop);
}
void
eo_definitions_method_def_free(Eo_Method_Def *meth)
{
Eo_Param_Def *param;
eo_definitions_ret_free(&meth->ret);
if (meth->name)
eina_stringshare_del(meth->name);
if (meth->comment)
eina_stringshare_del(meth->comment);
EINA_LIST_FREE(meth->params, param)
eo_definitions_param_free(param);
free(meth);
}
void
eo_definitions_class_def_free(Eo_Class_Def *kls)
{
const char *s;
Eina_List *l;
Eo_Property_Def *prop;
Eo_Method_Def *meth;
if (kls->name)
eina_stringshare_del(kls->name);
if (kls->comment)
eina_stringshare_del(kls->comment);
EINA_LIST_FOREACH(kls->inherits, l, s)
if (s) eina_stringshare_del(s);
EINA_LIST_FREE(kls->properties, prop)
eo_definitions_property_def_free(prop);
EINA_LIST_FREE(kls->methods, meth)
eo_definitions_method_def_free(meth);
free(kls);
}
|