X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=dict%2Flookup.c;h=d47267f23631cd25c4ec90aade2da7ab98c3375d;hp=0cb226048e433428efa6060d142755d6a174aa41;hb=27bdd6aa26843aeac89f635ed495996088d8e8aa;hpb=3c5ad6ec79e41c91b818e9953b08c6217795693d diff --git a/dict/lookup.c b/dict/lookup.c index 0cb2260..d47267f 100644 --- a/dict/lookup.c +++ b/dict/lookup.c @@ -1,24 +1,115 @@ -/* - * Copyright (C) 1994, Index Data I/S - * All rights reserved. - * Sebastian Hammer, Adam Dickmeiss - * - * $Log: lookup.c,v $ - * Revision 1.1 1994-08-16 16:26:48 adam - * Added dict. - * - */ +/* This file is part of the Zebra server. + Copyright (C) 2004-2013 Index Data + +Zebra is free software; you can redistribute it and/or modify it under +the terms of the GNU General Public License as published by the Free +Software Foundation; either version 2, or (at your option) any later +version. + +Zebra is distributed in the hope that it will be useful, but WITHOUT ANY +WARRANTY; without even the implied warranty of MERCHANTABILITY or +FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +*/ + + +#if HAVE_CONFIG_H +#include +#endif #include #include #include #include -#include +#include "dict-p.h" -int dict_lookup (Dict dict, Dict_char *p) +static char *dict_look(Dict dict, const Dict_char *str, Dict_ptr ptr) { - return 0; + int mid, lo, hi; + int cmp; + void *p; + short *indxp; + char *info; + + dict_bf_readp(dict->dbf, ptr, &p); + mid = lo = 0; + hi = DICT_nodir(p)-1; + indxp = (short*) ((char*) p+DICT_bsize(p)-sizeof(short)); + while (lo <= hi) + { + mid = (lo+hi)/2; + if (indxp[-mid] > 0) + { + /* string (Dict_char *) DICT_EOS terminated */ + /* unsigned char length of information */ + /* char * information */ + info = (char*)p + indxp[-mid]; + cmp = dict_strcmp((Dict_char*) info, str); + if (!cmp) + return info+(dict_strlen ((Dict_char*) info)+1) + *sizeof(Dict_char); + } + else + { + Dict_char dc; + Dict_ptr subptr; + + /* Dict_ptr subptr */ + /* Dict_char sub char */ + /* unsigned char length of information */ + /* char * information */ + info = (char*)p - indxp[-mid]; + memcpy(&dc, info+sizeof(Dict_ptr), sizeof(Dict_char)); + cmp = dc- *str; + if (!cmp) + { + memcpy(&subptr, info, sizeof(Dict_ptr)); + if (*++str == DICT_EOS) + { + if (info[sizeof(Dict_ptr)+sizeof(Dict_char)]) + return info+sizeof(Dict_ptr)+sizeof(Dict_char); + return NULL; + } + else + { + if (subptr == 0) + return NULL; + ptr = subptr; + dict_bf_readp(dict->dbf, ptr, &p); + mid = lo = 0; + hi = DICT_nodir(p)-1; + indxp = (short*) ((char*) p+DICT_bsize(p)-sizeof(short)); + continue; + } + } + } + if (cmp < 0) + lo = mid+1; + else + hi = mid-1; + } + return NULL; } +char *dict_lookup(Dict dict, const char *p) +{ + dict->no_lookup++; + if (!dict->head.root) + return NULL; + return dict_look(dict, (const Dict_char *) p, dict->head.root); +} +/* + * Local variables: + * c-basic-offset: 4 + * c-file-style: "Stroustrup" + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */