2007.
[idzebra-moved-to-github.git] / index / untrans.c
1 /* $Id: untrans.c,v 1.2 2007-01-15 15:10:17 adam Exp $
2    Copyright (C) 1995-2007
3    Index Data ApS
4
5 This file is part of the Zebra server.
6
7 Zebra is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
10 version.
11
12 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
20
21 */
22
23 #include <stdio.h>
24 #include <assert.h>
25 #include <ctype.h>
26
27 #include <yaz/diagbib1.h>
28 #include "index.h"
29 #include <charmap.h>
30
31 void zebra_term_untrans(ZebraHandle zh, int reg_type,
32                         char *dst, const char *src)
33 {
34     int len = 0;
35     while (*src)
36     {
37         const char *cp = zebra_maps_output(zh->reg->zebra_maps,
38                                            reg_type, &src);
39         if (!cp)
40         {
41             if (len < IT_MAX_WORD-1)
42                 dst[len++] = *src;
43             src++;
44         }
45         else
46             while (*cp && len < IT_MAX_WORD-1)
47                 dst[len++] = *cp++;
48     }
49     dst[len] = '\0';
50 }
51
52 void zebra_term_untrans_iconv(ZebraHandle zh, NMEM stream, int reg_type,
53                               char **dst, const char *src)
54 {
55     char term_src[IT_MAX_WORD];
56     char term_dst[IT_MAX_WORD];
57     
58     zebra_term_untrans (zh, reg_type, term_src, src);
59
60     if (zh->iconv_from_utf8 != 0)
61     {
62         int len;
63         char *inbuf = term_src;
64         size_t inleft = strlen(term_src);
65         char *outbuf = term_dst;
66         size_t outleft = sizeof(term_dst)-1;
67         size_t ret;
68         
69         ret = yaz_iconv (zh->iconv_from_utf8, &inbuf, &inleft,
70                          &outbuf, &outleft);
71         if (ret == (size_t)(-1))
72             len = 0;
73         else
74             len = outbuf - term_dst;
75         *dst = nmem_malloc(stream, len + 1);
76         if (len > 0)
77             memcpy (*dst, term_dst, len);
78         (*dst)[len] = '\0';
79     }
80     else
81         *dst = nmem_strdup(stream, term_src);
82 }
83
84
85
86 /*
87  * Local variables:
88  * c-basic-offset: 4
89  * indent-tabs-mode: nil
90  * End:
91  * vim: shiftwidth=4 tabstop=8 expandtab
92  */