X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=src%2Fcharconv.tcl;h=3086d262fbe32a8d95522cb45215045ff45ba6c4;hb=ffa73561a78abb70d06d51cdcbf8ef3f8536a0ab;hp=b37b0d80bd08aaa756bf97ab49db17c01248588f;hpb=e77f334b9b8b6d0ba01b3ede0f58b99ac561dd2d;p=yaz-moved-to-github.git diff --git a/src/charconv.tcl b/src/charconv.tcl index b37b0d8..3086d26 100755 --- a/src/charconv.tcl +++ b/src/charconv.tcl @@ -1,8 +1,5 @@ -#!/bin/sh -# the next line restarts using tclsh \ -if [ -f /usr/local/bin/tclsh8.4 ]; then exec tclsh8.4 "$0" "$@"; else exec tclsh "$0" "$@"; fi -# -# $Id: charconv.tcl,v 1.20 2007-09-22 18:55:02 adam Exp $ +#!/usr/bin/tclsh +# $Id: charconv.tcl,v 1.21 2008-01-06 13:02:48 adam Exp $ proc usage {} { puts {charconv.tcl: [-p prefix] [-s split] [-o ofile] file ... } @@ -39,16 +36,16 @@ proc preamble_trie {ofilehandle ifiles ofile} { " puts $f { static unsigned long lookup(struct yaz_iconv_trie **ptrs, int ptr, unsigned char *inp, - size_t inbytesleft, size_t *no_read, int *combining) + size_t inbytesleft, size_t *no_read, int *combining, unsigned mask, int boffset) { struct yaz_iconv_trie *t = (ptr > 0) ? ptrs[ptr-1] : 0; if (!t || inbytesleft < 1) return 0; if (t->dir) { - size_t ch = inp[0] & 0xff; + size_t ch = (inp[0] & mask) + boffset; unsigned long code = - lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining); + lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining, mask, boffset); if (code) { (*no_read)++; @@ -70,7 +67,13 @@ proc preamble_trie {ofilehandle ifiles ofile} { size_t len = strlen(flat->from); if (len <= inbytesleft) { - if (memcmp(flat->from, inp, len) == 0) + size_t i; + for (i = 0; i < len; i++) + { + if (((unsigned char *) flat->from)[i] != (inp[i] & mask) + boffset) + break; + } + if (i == len) { *no_read = len; *combining = flat->combining; @@ -259,11 +262,11 @@ proc dump_trie {ofilehandle} { puts $f "" puts $f "unsigned long yaz_$trie(prefix)_conv - (unsigned char *inp, size_t inbytesleft, size_t *no_read, int *combining) + (unsigned char *inp, size_t inbytesleft, size_t *no_read, int *combining, unsigned mask, int boffset) { unsigned long code; - code = lookup($trie(prefix)ptrs, 1, inp, inbytesleft, no_read, combining); + code = lookup($trie(prefix)ptrs, 1, inp, inbytesleft, no_read, combining, mask, boffset); if (!code) { *no_read = 1;