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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
|
#ifndef EOLIAN_AUX_H
#define EOLIAN_AUX_H
#include <Eolian.h>
#ifdef EAPI
# undef EAPI
#endif
#ifdef _WIN32
# ifdef EFL_BUILD
# ifdef DLL_EXPORT
# define EAPI __declspec(dllexport)
# else
# define EAPI
# endif
# else
# define EAPI __declspec(dllimport)
# endif
#else
# ifdef __GNUC__
# if __GNUC__ >= 4
# define EAPI __attribute__ ((visibility("default")))
# else
# define EAPI
# endif
# else
# define EAPI
# endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
/**
* @page eolian_aux_main Eolian Auxiliary Library (BETA)
*
* @date 2018 (created)
*
* @section toc Table of Contents
*
* @li @ref eolian_aux_main_intro
*
* @section eolian_main_intro Introduction
*
* This is the Eolian auxiliary library, providing API to support generators
* and other utilities which do not fit into the primary Eolian library. All
* these APIs are built on top of the core Eolian APIs.
*
* Recommended reading:
*
* @li @ref Eolian
*
* @addtogroup Eolian
* @{
*/
#ifdef EFL_BETA_API_SUPPORT
/**
* @brief Build reverse children hierarchy of an Eolian state.
*
* The point of this is basically to figure out reverse inheritance. The
* keys of the returned hash will be class pointers and the values will
* be lists. If classes A and B both inherit from C, they will be in C's
* list after lookup.
*
* You are responsible for freeing this hash using standard eina_hash_free().
*
* @param[in] state the Eolian state.
* @return a hash containing the hierarchy.
*
* @ingroup Eolian
*/
EAPI Eina_Hash *eolian_aux_state_class_children_find(const Eolian_State *state);
/**
* @brief Get all APIs that are usable on the class.
*
* The @p funcs parameter will contain the functions, while @p events will
* contain events. The initial items in the lists will be the funcs and
* events defined by the class itself, followed by those defined in the
* classes it inherits from.
*
* Funcs will contain implement pointers, events will contain event pointers.
*
* The @p ownfuncs param defines how many of the list's items are the classes'
* own API. Same happens with @p ownevs for events.
*
* You are responsible for freeing the returned lists but not their contents.
* If you want to skip either of the lists, pass NULL.
*
* @param[in] klass the class.
* @param[out] funcs the functions list reference, NULL if not used.
* @param[out] events the event list reference, NULL if not used.
* @param[out] ownfuncs the number of own functions, NULL if not used.
* @param[out] ownevs the number of own events, NULL if not used.
* @return the total number of items written into either list.
*
* @ingroup Eolian
*/
EAPI size_t eolian_aux_class_callables_get(const Eolian_Class *klass, Eina_List **funcs, Eina_List **events, size_t *ownfuncs, size_t *ownevs);
/**
* @brief Get all implementations of a function in a state.
*
* Given a function and a children hierarchy from
* eolian_aux_state_class_children_find(), this will func
* all implementations of that function in the system. This
* is useful for various utilities. You need to free the list
* but not the contents.
*
* @param[in] func the function.
* @param[in] class_children the children hierarchy.
* @return a list of implementations.
*
* @ingroup Eolian
*/
EAPI Eina_List *eolian_aux_function_all_implements_get(const Eolian_Function *func, Eina_Hash *class_children);
/**
* @brief Get previous implementation in the inheritance hierarchy.
*
* This performs a depth-first search in the hierarchy, starting with the
* specific given implementation. Once it is found, this parent implementation
* is returned.
*
* @param[in] impl the implementation.
* @return the parent implementation.
*
* @ingroup Eolian
*/
EAPI const Eolian_Implement *eolian_aux_implement_parent_get(const Eolian_Implement *impl);
/**
* @brief Get documentation for an implementaiton.
*
* This first checks if the implementation has documentation for the given
* type. If so, it is returned; if not, parent implementations as specified
* in eolian_aux_implement_parent_get() are searched and the first one to
* have the documentation is used.
*
* @param[in] impl the implementation.
* @param[in] ftype the function type (method, property, getter, setter).
* @return the documentation or NULL.
*
* @ingroup Eolian
*/
EAPI const Eolian_Documentation *eolian_aux_implement_documentation_get(const Eolian_Implement *impl, Eolian_Function_Type ftype);
/**
* @brief Get documentation fallback for an implementation.
*
* This is used when the implement does not have a "common" documentation
* block. If the given implement is a getter and not a setter, this returns
* the getter's documentation. If it's a setter but not a getter, it returns
* the setter documentation. Otherwise, it returns NULL.
*
* @param[in] impl the implementation.
* @return the documentation or NULL.
*
* @ingroup Eolian
*/
EAPI const Eolian_Documentation *eolian_aux_implement_documentation_fallback_get(const Eolian_Implement *impl);
#endif
/**
* @}
*/
#ifdef __cplusplus
} // extern "C" {
#endif
#undef EAPI
#define EAPI
#endif
|