X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Fcharconv.tcl;h=8f8cc9e94b49621254f234a772a7c95836c0261a;hp=3086d262fbe32a8d95522cb45215045ff45ba6c4;hb=8cb8947e3a7bff4dbf8f124871cb4905df1adce7;hpb=ffa73561a78abb70d06d51cdcbf8ef3f8536a0ab diff --git a/src/charconv.tcl b/src/charconv.tcl old mode 100755 new mode 100644 index 3086d26..8f8cc9e --- a/src/charconv.tcl +++ b/src/charconv.tcl @@ -1,5 +1,4 @@ #!/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 ... } @@ -17,6 +16,11 @@ proc preamble_trie {ofilehandle ifiles ofile} { puts $f " Generated automatically by charconv.tcl" puts $f "*/" puts $f "\#include " + + puts $f "\#if HAVE_CONFIG_H" + puts $f "\#include " + puts $f "\#endif" + puts $f " struct yaz_iconv_trie_flat { char from\[6\]; @@ -36,21 +40,24 @@ 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, unsigned mask, int boffset) + size_t inbytesleft, size_t *no_read, int *combining, unsigned mask, unsigned int boffset) { - struct yaz_iconv_trie *t = (ptr > 0) ? ptrs[ptr-1] : 0; - if (!t || inbytesleft < 1) + struct yaz_iconv_trie *t = ptrs[ptr-1]; + if (inbytesleft < 1) return 0; if (t->dir) { size_t ch = (inp[0] & mask) + boffset; - unsigned long code = - lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining, mask, boffset); - if (code) + unsigned long code; + if (t->dir[ch].ptr) { - (*no_read)++; - return code; - } + code = lookup(ptrs, t->dir[ch].ptr, inp+1, inbytesleft-1, no_read, combining, mask, boffset); + if (code) + { + (*no_read)++; + return code; + } + } if (t->dir[ch].to) { code = t->dir[ch].to; @@ -209,7 +216,7 @@ proc dump_trie {ofilehandle} { set v [lindex $m 3] puts $f "\}, /* $v */" } - puts $f " \{\"\", 0\}" + puts $f " \{\"\", 0, 0\}" puts $f "\};" puts $f "struct yaz_iconv_trie $trie(prefix)page${this} = \{" puts $f " $trie(prefix)page${this}_flat, 0" @@ -262,7 +269,7 @@ 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 mask, int boffset) + (unsigned char *inp, size_t inbytesleft, size_t *no_read, int *combining, unsigned mask, unsigned int boffset) { unsigned long code; @@ -415,7 +422,7 @@ if {![info exists ifiles]} { usage } -set ofilehandle [open $ofile w] +set ofilehandle [open ${ofile}.tmp w] preamble_trie $ofilehandle $ifiles $ofile foreach ifile $ifiles { @@ -423,4 +430,6 @@ foreach ifile $ifiles { } close $ofilehandle +file rename -force ${ofile}.tmp ${ofile} +