aboutsummaryrefslogtreecommitdiff
path: root/lib/map.c
blob: 461ead0ee8de1115f827026056b241c91acbdf51 (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
/* This file is part of Eclat.
   Copyright (C) 2012 Sergey Poznyakoff.
 
   Eclat is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.
 
   Eclat is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
 
   You should have received a copy of the GNU General Public License
   along with Eclat.  If not, see <http://www.gnu.org/licenses/>. */

#include "libeclat.h"
#include "wordsplit.h"
#include <sysexits.h>
#include <string.h>

static int map_dbg = -1;
static struct grecs_symtab *openmap_symtab, *mapdrv_symtab;

void
eclat_map_init()
{
	map_dbg = debug_register("map");
}

int
eclat_get_string_node(struct grecs_node *node, const char *name,
		      int optional,
		      struct grecs_node **pret)
{
	struct grecs_node *p = grecs_find_node(node->down, name);
	
	if (!p) {
		if (optional)
			return eclat_map_not_found;
		grecs_error(&node->locus, 0,
			    "no \"%s\" statement found", name);
		return eclat_map_failure;
	}

	if (p->type != grecs_node_stmt) {
		grecs_error(&p->locus, 0, "must be simple statement");
		return eclat_map_failure;
	}

	if (p->v.value->type != GRECS_TYPE_STRING) {
		grecs_error(&p->locus, 0, "must be scalar");
		return eclat_map_failure;
	}

	*pret = p;
	return eclat_map_ok;
}

static int
drv_copy(void *a, void *b)
{
	struct eclat_map_drv *drva = a;
	struct eclat_map_drv *drvb = b;

	*drva = *drvb;
	drva->name = strdup(drvb->name);
	return drva->name == NULL;
}

int
eclat_map_drv_register(struct eclat_map_drv *drv)
{
	int install;
	
	if (!mapdrv_symtab) {
		mapdrv_symtab = grecs_symtab_create(sizeof(*drv),
						    NULL,
						    NULL,
						    drv_copy,
						    NULL,
						    NULL);
		if (!mapdrv_symtab)
			grecs_alloc_die();
	}
	install = 1;
	if (!grecs_symtab_lookup_or_install(mapdrv_symtab, drv, &install))
		die(EX_SOFTWARE, "cannot install map");
	return install ? eclat_map_ok : eclat_map_failure;
}

struct eclat_map *
eclat_map_lookup(const char *name)
{
	struct eclat_map key;
	
	if (!openmap_symtab)
		return NULL;
	key.name = (char*) name;
	return grecs_symtab_lookup_or_install(openmap_symtab, &key, NULL);
}

static void
map_free(void *p)
{
	struct eclat_map *map = p;
	if (map->flags & ECLAT_MAP_OPEN)
		eclat_map_close(map);
	if (map->data && map->drv->map_free)
		map->drv->map_free(map_dbg, map->data);
	free(map->name);
	free(map->keytrans);
	free(map);
}

int
eclat_map_config(struct grecs_node *node, struct eclat_map **return_map)
{
	char *mapname;
	struct grecs_node *p;
	struct eclat_map key, *map;
	struct eclat_map_drv dkey, *drv;
	int install, rc;

	if (node->v.value->type != GRECS_TYPE_STRING) {
		grecs_error(&p->locus, 0, "value must be scalar");
		return eclat_map_failure;
	}

	mapname = node->v.value->v.string;
	
	if (debug_level(map_dbg) > 1)
		diag(&node->locus, "debug", "configuring map \"%s\"",
		     mapname);
	map = eclat_map_lookup(mapname);
	if (map) {
		debug(map_dbg, 1,
		      ("map \"%s\" already configured", mapname));
		*return_map = map;
		return eclat_map_ok;
	}
	
	if (eclat_get_string_node(node, "type", 0, &p))
		return eclat_map_failure;

	dkey.name = p->v.value->v.string;
	if (!mapdrv_symtab) {
		grecs_error(&p->locus, 0, "no drivers compiled");
		return eclat_map_failure;
	}
	
	drv = grecs_symtab_lookup_or_install(mapdrv_symtab, &dkey, NULL);
	if (!drv) {
		grecs_error(&p->locus, 0, "no driver for this type");
		return eclat_map_failure;
	}

	if (!openmap_symtab) {
		openmap_symtab = grecs_symtab_create(sizeof(key), 
						     NULL,
						     NULL,
						     NULL,
						     NULL,
						     map_free);
		if (!openmap_symtab)
			grecs_alloc_die();
	}
	install = 1;
	key.name = (char*) mapname;
	map = grecs_symtab_lookup_or_install(openmap_symtab, &key, &install);
	if (!map)
		die(EX_SOFTWARE, "cannot install map");
	map->drv = drv;

	rc = drv->map_config(map_dbg, node, &map->data);
	if (rc != eclat_map_ok) {
		grecs_error(&node->locus, 0, "map configration failed");
		eclat_map_free(map);
		return eclat_map_failure;
	}

	if (eclat_get_string_node(node, "key", 1, &p) == 0)
		map->keytrans = grecs_strdup(p->v.value->v.string);

	debug(map_dbg, 1, ("map \"%s\" configured", mapname));

	*return_map = map;
	return eclat_map_ok;
}

void
eclat_map_free(struct eclat_map *map)
{
	grecs_symtab_remove(openmap_symtab, map);
}

int
eclat_map_open(struct eclat_map *map)
{
	debug(map_dbg, 1, ("opening map \"%s\"", map->name));
	
	if (map->flags & ECLAT_MAP_OPEN) {
		debug(map_dbg, 1, ("map \"%s\" already open", map->name));
		return eclat_map_ok;
	}

	if (map->drv->map_open(map_dbg, map->data)) {
		err("failed to open map %s", map->name);
		return eclat_map_failure;
	}

	debug(map_dbg, 1, ("map \"%s\" opened successfully", map->name));
	map->flags |= ECLAT_MAP_OPEN;
	return eclat_map_ok;
}

int
eclat_map_close(struct eclat_map *map)
{
	int rc = eclat_map_ok;
	
	debug(map_dbg, 1, ("closing map \"%s\"", map->name));
	if (!(map->flags & ECLAT_MAP_OPEN)) {
		debug(map_dbg, 1, ("map \"%s\" not open", map->name));
		return eclat_map_ok;
	}
	if (map->drv->map_close)
		rc = map->drv->map_close(map_dbg, map->data);

	if (rc == eclat_map_ok) {
		debug(map_dbg, 1,
		      ("map \"%s\" closed successfully", map->name));
		map->flags &= ~ECLAT_MAP_OPEN;
	} else
		err("failed to close map %s", map->name);
	
	return rc;
}

int
eclat_map_get(struct eclat_map *map, const char *key, char **value)
{
	int rc;
	char *p = NULL;

	debug(map_dbg, 1,
	      ("looking up \"%s\" in map \"%s\"", key, map->name));
	if (!(map->flags & ECLAT_MAP_OPEN)) {
		debug(map_dbg, 1, ("map \"%s\" not open", map->name));
		return eclat_map_failure;
	}

	if (map->keytrans) {
		const char *kwe[5];
		kwe[0] = "key";
		kwe[1] = key;
		kwe[2] = "map";
		kwe[3] = map->name;
		kwe[4] = NULL;
		
		p = eclat_expand_kw(map->keytrans, kwe);
		debug(map_dbg, 1,
		      ("transformed key \"%s\" => \"%s\"",
		       key, p));
		key = p;
	}
	
	rc = map->drv->map_get(map_dbg, map->data, key, value);

	free(p);
	
	debug(map_dbg, 1, ("result: \"%s\"", eclat_map_strerror(rc)));
	if (rc == eclat_map_ok)
		debug(map_dbg, 2, ("found value: \"%s\"", *value));
	return rc;
}

const char *
eclat_map_strerror(int rc)
{
	switch (rc) {
	case eclat_map_ok:
		return "success";
	case eclat_map_failure:
		return "failure";
	case eclat_map_not_found:
		return "not found";
	}
	return "unknown error";
}

struct foreach_closure {
	int (*fun)(struct eclat_map *, void *);
	void *data;
};

static int
map_foreach(void *item, void *data)
{
	struct eclat_map *map = item;
	struct foreach_closure *cp = data;

	return cp->fun(map, cp->data);
}

void
eclat_map_foreach(int (*fun)(struct eclat_map *, void *), void *data)
{
	struct foreach_closure cl;

	if (!openmap_symtab)
		return;
	
	cl.fun = fun;
	cl.data = data;
	grecs_symtab_enumerate(openmap_symtab, map_foreach, &cl);
}

void
eclat_map_free_all()
{
	if (openmap_symtab) {
		grecs_symtab_free(openmap_symtab);
		openmap_symtab = NULL;
	}
}

static int
drv_help(void *data, void *unused)
{
	struct eclat_map_drv *drv = data;
	
	if (drv->map_confhelp)
		drv->map_confhelp();
	return 0;
}

void
eclat_map_confhelp()
{
	grecs_symtab_enumerate(mapdrv_symtab, drv_help, NULL);
}

Return to:

Send suggestions and report system problems to the System administrator.