summaryrefslogtreecommitdiff
path: root/location/module/module-internal.c
blob: d5d70815bb12b7b8a53e2cca777061b65310001c (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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
/*
 * libslp-location
 *
 * Copyright (c) 2010-2013 Samsung Electronics Co., Ltd. All rights reserved.
 *
 * Contact: Youngae Kang <youngae.kang@samsung.com>, Minjune Kim <sena06.kim@samsung.com>
 *          Genie Kim <daejins.kim@samsung.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <glib.h>
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "module-internal.h"
#include "location-log.h"

#define MAX_MODULE_INDEX 3
const char* MODULE_PATH_PREFIX = LIBPREFIX "/location/module";

static GMod*
gmod_new (const char* module_name, gboolean is_resident)
{
	if(!module_name)
		return NULL;

	GMod* gmod = g_new0(GMod, 1);
	gmod->name = g_strdup(module_name);
	if(!gmod->name) {
		g_free(gmod);
		return NULL;
	}
	gmod->path = g_module_build_path (MODULE_PATH_PREFIX, gmod->name);
	if(!gmod->path){
		g_free(gmod->name);
		g_free(gmod);
		gmod->name = NULL;
		return NULL;
	}
	gmod->module = g_module_open(gmod->path, G_MODULE_BIND_LAZY);
	if(!gmod->module){
		g_free(gmod->name);
		g_free(gmod->path);
		g_free(gmod);
		gmod->name = NULL;
		gmod->path = NULL;

		return NULL;
	}
	if(is_resident)
		g_module_make_resident(gmod->module);

	return gmod;
}

static void
gmod_free (GMod* gmod)
{
	if(gmod->name)
		g_free(gmod->name);
	if(gmod->path)
		g_free(gmod->path);
	if(gmod->module)
		g_module_close(gmod->module);
	g_free(gmod);
}

static gboolean
gmod_find_sym (GMod* gmod,
	gpointer* init_func, gpointer* shutdown_func)
{
	char sym[256];
	g_stpcpy(sym, "init");
	if ( !g_module_symbol (gmod->module, sym, init_func) ){
		LOCATION_LOGW("symbol not found: %s", sym);
		return FALSE;
	}
	g_stpcpy(sym, "shutdown");
	if ( !g_module_symbol (gmod->module, sym, shutdown_func) ){
		LOCATION_LOGW("symbol not found: %s", sym);
		return FALSE;
	}
	return TRUE;
}

static gpointer
mod_new (const char* module_name)
{
	gpointer ret_mod = NULL;
	if(!module_name)
		return NULL;

	GMod* gmod = NULL;
	gpointer init = NULL;
	gpointer shutdown = NULL;
	gmod = gmod_new(module_name, TRUE);
	if(!gmod){
		LOCATION_LOGW("module(%s) new failed", module_name);
		return NULL;
	}
	if( !gmod_find_sym(gmod, &init, &shutdown) ){
		LOCATION_LOGW("symbol (init, shutdown) finding failed");
		gmod_free(gmod);
		return NULL;
	}
	if(!init || !shutdown){
		LOCATION_LOGW("init, shutdown symbol is NULL");
		gmod_free(gmod);
		return NULL;
	}
	if(g_str_has_prefix(module_name, "map-service")){
		LocationServiceMod* _mod = g_new0(LocationServiceMod, 1);
		_mod->gmod = gmod;
		_mod->init = init;
		_mod->shutdown= shutdown;
		_mod->handler= _mod->init(&(_mod->ops));
		if(!_mod->handler){
			LOCATION_LOGW("module init failed");
			gmod_free(_mod->gmod);
			ret_mod = NULL;
		}else
			ret_mod = (gpointer)_mod;
	}else if(g_str_has_prefix(module_name, "gps")){
		LocationGpsMod* _mod = g_new0(LocationGpsMod, 1);
		_mod->gmod = gmod;
		_mod->init = init;
		_mod->shutdown= shutdown;
		_mod->handler= _mod->init(&(_mod->ops));
		if(!_mod->handler){
			LOCATION_LOGW("module init failed");
			gmod_free(_mod->gmod);
			ret_mod = NULL;
		}else
			ret_mod = (gpointer)_mod;
	}else if(g_str_has_prefix(module_name, "wps")){
		LocationWpsMod* _mod = g_new0(LocationWpsMod, 1);
		_mod->gmod = gmod;
		_mod->init = init;
		_mod->shutdown= shutdown;
		_mod->handler= _mod->init(&(_mod->ops));
		if(!_mod->handler){
			LOCATION_LOGW("module init failed");
			gmod_free(_mod->gmod);
			ret_mod = NULL;
		}else
			ret_mod = (gpointer)_mod;
	}else if(g_str_has_prefix(module_name, "cps")){
		LocationCpsMod* _mod = g_new0(LocationCpsMod, 1);
		_mod->gmod = gmod;
		_mod->init = init;
		_mod->shutdown= shutdown;
		_mod->handler= _mod->init(&(_mod->ops));
		if(!_mod->handler){
			LOCATION_LOGW("module init failed");
			gmod_free(_mod->gmod);
			ret_mod = NULL;
		}else
			ret_mod = (gpointer)_mod;
	}else{
		LOCATION_LOGW("module name (%s) is wrong", module_name);
		ret_mod = NULL;
	}
	return ret_mod;
}


static void
mod_free (gpointer mod,
	const char* module_name)
{
	if(!mod || !module_name)
		return;

	if(g_str_has_prefix(module_name, "map-service")){
		LocationServiceMod* _mod = (LocationServiceMod*)mod;
		if(_mod->shutdown && _mod->handler){
			_mod->shutdown(_mod->handler);
		}
		_mod->handler = NULL;
		_mod->init = NULL;
		_mod->shutdown= NULL;
		gmod_free(_mod->gmod);
		_mod->gmod = NULL;
	}else if(0 == g_strcmp0(module_name, "gps")){
		LocationGpsMod* _mod = (LocationGpsMod*)mod;
		if(_mod->shutdown && _mod->handler){
			_mod->shutdown(_mod->handler);
		}
		_mod->handler = NULL;
		_mod->init = NULL;
		_mod->shutdown= NULL;
		gmod_free(_mod->gmod);
		_mod->gmod = NULL;
	}else if(0 == g_strcmp0(module_name, "wps")){
		LocationWpsMod* _mod = (LocationWpsMod*)mod;
		if(_mod->shutdown && _mod->handler){
			_mod->shutdown(_mod->handler);
		}
		_mod->handler = NULL;
		_mod->init = NULL;
		_mod->shutdown= NULL;
		gmod_free(_mod->gmod);
		_mod->gmod = NULL;
	}else if(0 == g_strcmp0(module_name, "cps")){
		LocationCpsMod* _mod = (LocationCpsMod*)mod;
		if(_mod->shutdown && _mod->handler){
			_mod->shutdown(_mod->handler);
		}
		_mod->handler = NULL;
		_mod->init = NULL;
		_mod->shutdown= NULL;
		gmod_free(_mod->gmod);
		_mod->gmod = NULL;
	}else
		LOCATION_LOGW("module name (%s) is wrong", module_name);

	g_free(mod);
}

static gboolean
mod_is_supported(const char *module_name)
{
	GMod * gmod = NULL;
	gmod = gmod_new(module_name, FALSE);
	if(!gmod) {
		return FALSE;
	}
	gmod_free(gmod);

	return TRUE;
}

gboolean module_init (void)
{
	if (!g_module_supported()) {
		LOCATION_LOGW("module is not supported");
		return FALSE;
	}
	return TRUE;
}

void
module_free (gpointer mod,
	const char* module_name)
{
	if(!mod || !module_name)
		return;
	mod_free(mod, module_name);
}

gpointer
module_new (const char* module_name)
{
	if(!module_name)
		return NULL;
	int index = 0;
	char name[256];

	gpointer mod = NULL;
	for(index = -1 ; index < MAX_MODULE_INDEX ; index++){
		if(index >= 0){
			if( 0 >= g_snprintf(name, 256, "%s%d", module_name, index)){
				LOCATION_LOGW("module name(%s) is wrong", name);
				continue;
			}
		}else{
			if( 0 >= g_snprintf(name, 256, "%s", module_name)){
				LOCATION_LOGW("module name(%s) is wrong", name);
				continue;
			}
		}
		mod = mod_new(name);
		if(mod){
			LOCATION_LOGW("module (%s) open success", name);
			break;
		}
		LOCATION_LOGW("module (%s) open failed", name);
	}
	return mod;
}

gboolean
module_is_supported(const char *module_name)
{
	if(!module_name)
		return FALSE;

	int index = 0;
	gboolean ret = FALSE;
	gboolean found = FALSE;

	char name[256] = {0, };

	for(index = -1 ; index < MAX_MODULE_INDEX ; index++){
		if(index >= 0){
			g_snprintf(name, 256, "%s%d", module_name, index);
		}else{
			g_snprintf(name, 256, "%s", module_name);
		}

		ret = mod_is_supported(name);
		if(ret == TRUE) {
			found = TRUE;
			LOCATION_LOGW("module name(%s) is found", name);
			break;
		}
	}

	return found;
}

gchar *
mod_get_realpath (const gchar *module_name)
{
	gchar origin_path[PATH_MAX] = {0, };
	gchar link_path[PATH_MAX] = {0, };
	gchar *path = NULL;

	snprintf (link_path, PATH_MAX, "%s/lib%s.so", MODULE_PATH_PREFIX, module_name);

	realpath (link_path, origin_path);

	if (strlen(origin_path) == 0) {
		LOCATION_LOGE ("Fail to get real path of [%s]", module_name);
		return NULL;
	}

	path = strrchr(origin_path, '/');
	if (!path) return NULL;

	return g_strdup (path);
}