X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=util%2Fcharmap.c;h=8e95b004ff7ff4678e9fe4c9fcc8df4028dee059;hb=c9ac021f1381269609f3654384698f398cf46b96;hp=120bbedcda271066e33d7c8a0bf2960727edfbf0;hpb=534a95f238f1c78d76a9be7186c67a08754125d7;p=idzebra-moved-to-github.git diff --git a/util/charmap.c b/util/charmap.c index 120bbed..8e95b00 100644 --- a/util/charmap.c +++ b/util/charmap.c @@ -1,10 +1,32 @@ /* - * Copyright (C) 1994, Index Data I/S + * Copyright (C) 1996-1997, Index Data I/S * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: charmap.c,v $ - * Revision 1.5 1996-06-04 08:32:15 quinn + * Revision 1.12 1997-09-05 15:30:11 adam + * Changed prototype for chr_map_input - added const. + * Added support for C++, headers uses extern "C" for public definitions. + * + * Revision 1.11 1997/09/05 09:52:32 adam + * Extra argument added to function chr_read_maptab (tab path). + * + * Revision 1.10 1997/07/01 13:01:08 adam + * Bug fix in routine find_entry: didn't take into account the len arg. + * + * Revision 1.9 1996/10/29 13:48:14 adam + * Updated to use zebrautl.h instead of alexutil.h. + * + * Revision 1.8 1996/10/18 12:39:23 adam + * Uses LOG_DEBUG instead of LOG_WARN for "Character map overlap". + * + * Revision 1.7 1996/06/06 12:08:56 quinn + * Fixed bug. + * + * Revision 1.6 1996/06/04 13:28:00 quinn + * More work on charmapping + * + * Revision 1.5 1996/06/04 08:32:15 quinn * Moved default keymap to keychars.c * * Revision 1.4 1996/06/03 16:32:13 quinn @@ -29,18 +51,20 @@ #include #include +#include -#include +#include #include #include #include +#define CHR_MAXSTR 1024 +#define CHR_MAXEQUIV 32 + const char *CHR_UNKNOWN = "\001"; const char *CHR_SPACE = "\002"; const char *CHR_BASE = "\003"; -extern char *data1_tabpath; - /* * Character map trie node. */ @@ -49,13 +73,22 @@ struct chr_t_entry chr_t_entry **children; /* array of children */ unsigned char *target; /* target for this node, if any */ unsigned char *equiv; /* equivalent to, or sumthin */ -} t_entry; +}; + +/* + * General argument structure for callback functions (internal use only) + */ +typedef struct chrwork +{ + chrmaptab *map; + char string[CHR_MAXSTR+1]; +} chrwork; /* * Add an entry to the character map. */ -static chr_t_entry *set_map_string(chr_t_entry *root, char *from, int len, - char *to) +static chr_t_entry *set_map_string(chr_t_entry *root, const char *from, + int len, char *to) { if (!root) { @@ -69,7 +102,7 @@ static chr_t_entry *set_map_string(chr_t_entry *root, char *from, int len, (char*) root->target == CHR_UNKNOWN) root->target = (unsigned char *) xstrdup(to); else if ((char*) to != CHR_SPACE) - logf(LOG_WARN, "Character map overlap"); + logf(LOG_DEBUG, "Character map overlap"); } else { @@ -114,15 +147,14 @@ int chr_map_chrs(chr_t_entry *t, char **from, int len, int *read, char **to, return i; } -#if 1 -static chr_t_entry *find_entry(chr_t_entry *t, char **from, int len) +static chr_t_entry *find_entry(chr_t_entry *t, const char **from, int len) { chr_t_entry *res; - if (t->children && t->children[(unsigned char) **from]) + if (len && t->children && t->children[(unsigned char) **from]) { - char *pos = *from; + const char *pos = *from; (*from)++; if ((res = find_entry(t->children[(unsigned char) *pos], @@ -131,13 +163,13 @@ static chr_t_entry *find_entry(chr_t_entry *t, char **from, int len) /* no match */ *from = pos; } - /* no children match. use ourselves */ - return t; + /* no children match. use ourselves, if we have a target */ + return t->target ? t : 0; } -char **chr_map_input(chr_t_entry *t, char **from, int len) +const char **chr_map_input(chr_t_entry *t, const char **from, int len) { - static char *buf[2] = {0, 0}; + static const char *buf[2] = {0, 0}; chr_t_entry *res; if (!(res = find_entry(t, from, len))) @@ -146,42 +178,6 @@ char **chr_map_input(chr_t_entry *t, char **from, int len) return buf; } -#else - -char **chr_map_input(chr_t_entry *t, char **from, int len) -{ - static char *buf[2] = {0, 0}, str[2] = {0, 0}; - char *start = *from; - - if (t) - { - while (len && t->children && t->children[(unsigned char) **from]) - { - t = t->children[(unsigned char) **from]; - (*from)++; - len--; - } - buf[0] = (char*) t->target; - } - else /* null mapping */ - { - if (isalnum(**from)) - { - str[0] = **from; - buf[0] = str; - } - else if (isspace(**from)) - buf[0] = (char*) CHR_SPACE; - else - buf[0] = (char*) CHR_UNKNOWN; - } - if (start == *from) - (*from)++; - return buf; - /* return (char*) t->target; */ -} - -#endif static unsigned char prim(char **s) { @@ -216,7 +212,7 @@ static unsigned char prim(char **s) * Callback function. * Add an entry to the value space. */ -static void fun_addentry(char *s, void *data, int num) +static void fun_addentry(const char *s, void *data, int num) { chrmaptab *tab = data; char tmp[2]; @@ -230,13 +226,39 @@ static void fun_addentry(char *s, void *data, int num) * Callback function. * Add a space-entry to the value space. */ -static void fun_addspace(char *s, void *data, int num) +static void fun_addspace(const char *s, void *data, int num) { chrmaptab *tab = data; tab->input = set_map_string(tab->input, s, strlen(s), (char*) CHR_SPACE); } -static int scan_string(char *s, void (*fun)(char *c, void *data, int num), +/* + * Create a string containing the mapped characters provided. + */ +static void fun_mkstring(const char *s, void *data, int num) +{ + chrwork *arg = data; + const char **res, *p = s; + + res = chr_map_input(arg->map->input, &s, strlen(s)); + if (*res == (char*) CHR_UNKNOWN) + logf(LOG_WARN, "Map: '%s' has no mapping", p); + strncat(arg->string, *res, CHR_MAXSTR - strlen(arg->string)); + arg->string[CHR_MAXSTR] = '\0'; +} + +/* + * Add a map to the string contained in the argument. + */ +static void fun_addmap(const char *s, void *data, int num) +{ + chrwork *arg = data; + + assert(arg->map->input); + set_map_string(arg->map->input, s, strlen(s), arg->string); +} + +static int scan_string(char *s, void (*fun)(const char *c, void *data, int num), void *data, int *num) { unsigned char c, str[1024], begin, end, *p; @@ -293,14 +315,14 @@ static int scan_string(char *s, void (*fun)(char *c, void *data, int num), return 0; } -chrmaptab *chr_read_maptab(char *name) +chrmaptab *chr_read_maptab(const char *tabpath, const char *name) { FILE *f; char line[512], *argv[50]; chrmaptab *res = xmalloc(sizeof(*res)); int argc, num = (int) *CHR_BASE, i; - if (!(f = yaz_path_fopen(data1_tabpath, name, "r"))) + if (!(f = yaz_path_fopen(tabpath, name, "r"))) { logf(LOG_WARN|LOG_ERRNO, "%s", name); return 0; @@ -377,13 +399,38 @@ chrmaptab *chr_read_maptab(char *name) fclose(f); return 0; } - if (scan_string(argv[1], fun_addspace, res, 0)) + if (scan_string(argv[1], fun_addspace, res, 0) < 0) { logf(LOG_FATAL, "Bad space specification"); fclose(f); return 0; } } + else if (!yaz_matchstr(argv[0], "map")) + { + chrwork buf; + + if (argc != 3) + { + logf(LOG_FATAL, "charmap MAP directive requires 2 args"); + fclose(f); + return 0; + } + buf.map = res; + buf.string[0] = '\0'; + if (scan_string(argv[2], fun_mkstring, &buf, 0) < 0) + { + logf(LOG_FATAL, "Bad map target"); + fclose(f); + return 0; + } + if (scan_string(argv[1], fun_addmap, &buf, 0) < 0) + { + logf(LOG_FATAL, "Bad map source"); + fclose(f); + return 0; + } + } else { #if 0