X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=dict%2Flookgrep.c;h=4b651dc78fe463ce359e3970427a24e1e83e54a3;hb=4ed5fbcd29d2a98b048d1d94510b262d352b4f7c;hp=39d2b3f4dcfe0e28a28fd43a4be71dd51955bc3d;hpb=55a5cde7eb23fb9aa5a8386d34bb1b6e131c19d8;p=idzebra-moved-to-github.git diff --git a/dict/lookgrep.c b/dict/lookgrep.c index 39d2b3f..4b651dc 100644 --- a/dict/lookgrep.c +++ b/dict/lookgrep.c @@ -1,10 +1,16 @@ /* - * Copyright (C) 1994-1998, Index Data I/S + * Copyright (C) 1994-1999, Index Data * All rights reserved. * Sebastian Hammer, Adam Dickmeiss * * $Log: lookgrep.c,v $ - * Revision 1.21 1998-06-24 12:16:12 adam + * Revision 1.23 1999-05-15 14:36:37 adam + * Updated dictionary. Implemented "compression" of dictionary. + * + * Revision 1.22 1999/02/02 14:50:23 adam + * Updated WIN32 code specific sections. Changed header. + * + * Revision 1.21 1998/06/24 12:16:12 adam * Support for relations on text operands. Open range support in * DFA module (i.e. [-j], [g-]). * @@ -301,7 +307,7 @@ static int dict_grep (Dict dict, Dict_ptr ptr, MatchContext *mc, dict_bf_readp (dict->dbf, ptr, &p); lo = 0; hi = DICT_nodir(p)-1; - indxp = (short*) ((char*) p+DICT_pagesize(dict)-sizeof(short)); + indxp = (short*) ((char*) p+DICT_bsize(p)-sizeof(short)); while (lo <= hi) { @@ -401,8 +407,7 @@ static int dict_grep (Dict dict, Dict_ptr ptr, MatchContext *mc, init_pos)) return 1; dict_bf_readp (dict->dbf, ptr, &p); - indxp = (short*) ((char*) p+DICT_pagesize(dict) - -sizeof(short)); + indxp = (short*) ((char*) p+DICT_bsize(p)-sizeof(short)); } } } @@ -468,8 +473,9 @@ int dict_lookup_grep (Dict dict, const char *pattern, int range, void *client, } } *max_pos = 0; - if (dict->head.last > 1) - i = dict_grep (dict, 1, mc, Rj, 0, client, userfunc, prefix, + if (dict->head.root) + i = dict_grep (dict, dict->head.root, mc, Rj, 0, client, + userfunc, prefix, dfa, max_pos, init_pos); else i = 0;