1 /* This file is part of the Zebra server.
2 Copyright (C) 2004-2013 Index Data
4 Zebra is free software; you can redistribute it and/or modify it under
5 the terms of the GNU General Public License as published by the Free
6 Software Foundation; either version 2, or (at your option) any later
9 Zebra is distributed in the hope that it will be useful, but WITHOUT ANY
10 WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 #include <yaz/diagbib1.h>
31 int zebra_term_untrans(ZebraHandle zh, const char *index_type,
32 char *dst, const char *src)
34 zebra_map_t zm = zebra_map_get(zh->reg->zebra_maps, index_type);
39 if (zebra_maps_is_icu(zm))
48 const char *cp = zebra_maps_output(zm, &src);
51 if (len < IT_MAX_WORD-1)
56 while (*cp && len < IT_MAX_WORD-1)
64 int zebra_term_untrans_iconv(ZebraHandle zh, NMEM stream,
65 const char *index_type,
66 char **dst, const char *src)
68 char term_src[IT_MAX_WORD];
69 char term_dst[IT_MAX_WORD];
72 r = zebra_term_untrans (zh, index_type, term_src, src);
76 if (zh->iconv_from_utf8 != 0)
79 char *inbuf = term_src;
80 size_t inleft = strlen(term_src);
81 char *outbuf = term_dst;
82 size_t outleft = sizeof(term_dst)-1;
85 ret = yaz_iconv (zh->iconv_from_utf8, &inbuf, &inleft,
87 if (ret == (size_t)(-1))
91 yaz_iconv (zh->iconv_from_utf8, 0, 0, &outbuf, &outleft);
92 len = outbuf - term_dst;
94 *dst = nmem_malloc(stream, len + 1);
96 memcpy (*dst, term_dst, len);
100 *dst = nmem_strdup(stream, term_src);
109 * c-file-style: "Stroustrup"
110 * indent-tabs-mode: nil
112 * vim: shiftwidth=4 tabstop=8 expandtab