cdb_find.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* cdb_find routine
  2.  *
  3.  * This file is a part of tinycdb package by Michael Tokarev, mjt@corpit.ru.
  4.  * Public domain.
  5.  */
  6. #include "common/setup_before.h"
  7. #include "cdb_int.h"
  8. #include "common/setup_after.h"
  9. int
  10. cdb_find(struct cdb *cdbp, const void *key, unsigned klen)
  11. {
  12.   const unsigned char *htp; /* hash table pointer */
  13.   const unsigned char *htab; /* hash table */
  14.   const unsigned char *htend; /* end of hash table */
  15.   unsigned httodo; /* ht bytes left to look */
  16.   unsigned pos, n;
  17.   unsigned hval;
  18.   if (klen >= cdbp->cdb_dend) /* if key size is too large */
  19.     return 0;
  20.   hval = cdb_hash(key, klen);
  21.   /* find (pos,n) hash table to use */
  22.   /* first 2048 bytes (toc) are always available */
  23.   /* (hval % 256) * 8 */
  24.   htp = cdbp->cdb_mem + ((hval << 3) & 2047); /* index in toc (256x8) */
  25.   n = cdb_unpack(htp + 4); /* table size */
  26.   if (!n) /* empty table */
  27.     return 0; /* not found */
  28.   httodo = n << 3; /* bytes of htab to lookup */
  29.   pos = cdb_unpack(htp); /* htab position */
  30.   if (n > (cdbp->cdb_fsize >> 3) /* overflow of httodo ? */
  31.       || pos < cdbp->cdb_dend /* is htab inside data section ? */
  32.       || pos > cdbp->cdb_fsize /* htab start within file ? */
  33.       || httodo > cdbp->cdb_fsize - pos) /* entrie htab within file ? */
  34.     return errno = EPROTO, -1;
  35.   htab = cdbp->cdb_mem + pos; /* htab pointer */
  36.   htend = htab + httodo; /* after end of htab */
  37.   /* htab starting position: rest of hval modulo htsize, 8bytes per elt */
  38.   htp = htab + (((hval >> 8) % n) << 3);
  39.   for(;;) {
  40.     pos = cdb_unpack(htp + 4); /* record position */
  41.     if (!pos)
  42.       return 0;
  43.     if (cdb_unpack(htp) == hval) {
  44.       if (pos > cdbp->cdb_dend - 8) /* key+val lengths */
  45. return errno = EPROTO, -1;
  46.       if (cdb_unpack(cdbp->cdb_mem + pos) == klen) {
  47. if (cdbp->cdb_dend - klen < pos + 8)
  48.   return errno = EPROTO, -1;
  49. if (memcmp(key, cdbp->cdb_mem + pos + 8, klen) == 0) {
  50.   n = cdb_unpack(cdbp->cdb_mem + pos + 4);
  51.   pos += 8;
  52.   if (cdbp->cdb_dend < n || cdbp->cdb_dend - n < pos + klen)
  53.     return errno = EPROTO, -1;
  54.   cdbp->cdb_kpos = pos;
  55.   cdbp->cdb_klen = klen;
  56.   cdbp->cdb_vpos = pos + klen;
  57.   cdbp->cdb_vlen = n;
  58.   return 1;
  59. }
  60.       }
  61.     }
  62.     httodo -= 8;
  63.     if (!httodo)
  64.       return 0;
  65.     if ((htp += 8) >= htend)
  66.       htp = htab;
  67.   }
  68. }