API BREAK: eina_magic_string_set() does not change existing strings anymore.
[profile/ivi/eina.git] / src / lib / eina_main.c
1 /* EINA - EFL data type library
2  * Copyright (C) 2008 Cedric Bail
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library;
16  * if not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include <stdio.h>
20
21 #ifdef HAVE_CONFIG_H
22 # include "config.h"
23 #endif
24
25 #include "eina_config.h"
26 #include "eina_private.h"
27 #include "eina_types.h"
28 #include "eina_main.h"
29 #include "eina_error.h"
30 #include "eina_log.h"
31 #include "eina_hash.h"
32 #include "eina_stringshare.h"
33 #include "eina_list.h"
34 #include "eina_matrixsparse.h"
35 #include "eina_array.h"
36 #include "eina_counter.h"
37 #include "eina_benchmark.h"
38 #include "eina_magic.h"
39 #include "eina_rectangle.h"
40 #include "eina_safety_checks.h"
41
42 /*============================================================================*
43  *                                  Local                                     *
44  *============================================================================*/
45
46 /**
47  * @cond LOCAL
48  */
49
50 static int _eina_main_count = 0;
51 static int _eina_log_dom = -1;
52 #define ERR(...) EINA_LOG_DOM_ERR(_eina_log_dom, __VA_ARGS__)
53 #define DBG(...) EINA_LOG_DOM_DBG(_eina_log_dom, __VA_ARGS__)
54
55
56 /* place module init/shutdown functions here to avoid other modules
57  * calling them by mistake.
58  */
59 #define S(x) extern Eina_Bool eina_##x##_init(void); extern Eina_Bool eina_##x##_shutdown(void)
60 S(log);
61 S(error);
62 S(safety_checks);
63 S(magic_string);
64 S(iterator);
65 S(accessor);
66 S(array);
67 S(module);
68 S(mempool);
69 S(list);
70 S(stringshare);
71 S(matrixsparse);
72 S(convert);
73 S(counter);
74 S(benchmark);
75 S(rectangle);
76 #undef S
77
78 struct eina_desc_setup
79 {
80    const char *name;
81    Eina_Bool (*init)(void);
82    Eina_Bool (*shutdown)(void);
83 };
84
85 static const struct eina_desc_setup _eina_desc_setup[] = {
86 #define S(x) {#x, eina_##x##_init, eina_##x##_shutdown}
87   /* log is a special case as it needs printf */
88   S(error),
89   S(safety_checks),
90   S(magic_string),
91   S(iterator),
92   S(accessor),
93   S(array),
94   S(module),
95   S(mempool),
96   S(list),
97   S(stringshare),
98   S(matrixsparse),
99   S(convert),
100   S(counter),
101   S(benchmark),
102   S(rectangle)
103 #undef S
104 };
105 static const size_t _eina_desc_setup_len = sizeof(_eina_desc_setup) / sizeof(_eina_desc_setup[0]);
106
107 static void
108 _eina_shutdown_from_desc(const struct eina_desc_setup *itr)
109 {
110    for (itr--; itr >= _eina_desc_setup; itr--)
111      {
112         if (!itr->shutdown())
113           ERR("Problems shutting down eina module '%s', ignored.", itr->name);
114      }
115
116    eina_log_domain_unregister(_eina_log_dom);
117    _eina_log_dom = -1;
118    eina_log_shutdown();
119 }
120
121 /**
122  * @endcond
123  */
124
125 /*============================================================================*
126  *                                 Global                                     *
127  *============================================================================*/
128
129 /*============================================================================*
130  *                                   API                                      *
131  *============================================================================*/
132
133 /**
134  * @addtogroup Eina_Main_Group Main
135  *
136  * @brief These functions provide general initialisation and shut down
137  * functions.
138  *
139  * @{
140  */
141
142 /**
143  * @brief Initialize the Eina library.
144  *
145  * @return 1 or greater on success, 0 on error.
146  *
147  * This function sets up all the eina modules. It returns 0 on
148  * failure (that is, when one of the module fails to initialize),
149  * otherwise it returns the number of times it has already been
150  * called.
151  *
152  * When Eina is not used anymore, call eina_shutdown() to shut down
153  * the Eina library.
154  */
155 EAPI int
156 eina_init(void)
157 {
158    const struct eina_desc_setup *itr, *itr_end;
159
160    if (EINA_LIKELY(_eina_main_count > 0))
161      return ++_eina_main_count;
162
163    if (!eina_log_init())
164      {
165         fprintf(stderr, "Could not initialize eina logging system.\n");
166         return 0;
167      }
168    _eina_log_dom = eina_log_domain_register("eina", EINA_LOG_COLOR_DEFAULT);
169    if (_eina_log_dom < 0)
170      {
171         EINA_LOG_ERR("Could not register log domain: eina");
172         eina_log_shutdown();
173         return 0;
174      }
175
176    itr = _eina_desc_setup;
177    itr_end = itr + _eina_desc_setup_len;
178    for (; itr < itr_end; itr++)
179      {
180         if (!itr->init())
181           {
182              ERR("Could not initialize eina module '%s'.", itr->name);
183              _eina_shutdown_from_desc(itr);
184              return 0;
185           }
186      }
187
188    _eina_main_count = 1;
189    return 1;
190 }
191
192 /**
193  * @brief Shut down the Eina library.
194  *
195  * @return 0 when all the modules is completely shut down, 1 or
196  * greater otherwise.
197  *
198  * This function shuts down the Eina library. It returns 0 when it has
199  * been called the same number of times than eina_init(). In that case
200  * it shut down all the Eina modules.
201  *
202  * Once this function succeeds (that is, @c 0 is returned), you must
203  * not call any of the Eina function anymore. You must call
204  * eina_init() again to use the Eina functions again.
205  */
206 EAPI int
207 eina_shutdown(void)
208 {
209    _eina_main_count--;
210    if (EINA_UNLIKELY(_eina_main_count == 0))
211      _eina_shutdown_from_desc(_eina_desc_setup + _eina_desc_setup_len);
212    return _eina_main_count;
213 }
214
215 /**
216  * @}
217  */