home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload / ShartewareOverload.cdr / progm / cbase.zip / CBASE10B.ZIP / BTREE10B.ZIP / BTGETK.C < prev    next >
Text File  |  1989-10-31  |  2KB  |  78 lines

  1. /*    Copyright (c) 1989 Citadel    */
  2. /*       All Rights Reserved        */
  3.  
  4. /* #ident    "btgetk.c    1.2 - 89/10/31" */
  5.  
  6. #include <blkio.h>
  7. #include <errno.h>
  8. /*#include <string.h>*/
  9. #include "btree_.h"
  10.  
  11. /*man---------------------------------------------------------------------------
  12. NAME
  13.      btgetk - read current btree key
  14.  
  15. SYNOPSIS
  16.      #include <btree.h>
  17.  
  18.      int btgetk(btp, buf)
  19.      btree_t *btp;
  20.      void *buf;
  21.  
  22. DESCRIPTION
  23.      The btgetk function reads the key from the current cursor
  24.      position in btree btp into buf.  buf must point to a storage area
  25.      as large as the key size for btp.
  26.  
  27.      btgetk will fail if one or more of the following is true:
  28.  
  29.      [EINVAL]       btp is not a valid btree pointer.
  30.      [EINVAL]       buf is the NULL pointer.
  31.      [BTELOCK]      btp is not read locked.
  32.      [BTENKEY]      The cursor is null.
  33.      [BTENOPEN]     btp is not open.
  34.  
  35. SEE ALSO
  36.      btcursor, btkeysize, btsearch.
  37.  
  38. DIAGNOSTICS
  39.      Upon successful completion, a value of 0 is returned.  Otherwise,
  40.      a value of -1 is returned, and errno set to indicate the error.
  41.  
  42. ------------------------------------------------------------------------------*/
  43. int btgetk(btp, buf)
  44. btree_t *btp;
  45. void *buf;
  46. {
  47.     /* validate arguments */
  48.     if (!bt_valid(btp) || (buf == NULL)) {
  49.         errno = EINVAL;
  50.         return -1;
  51.     }
  52.  
  53.     /* check if not open */
  54.     if (!(btp->flags & BTOPEN)) {
  55.         errno = EINVAL;
  56.         return -1;
  57.     }
  58.  
  59.     /* check locks */
  60.     if (!(btp->flags & BTRDLCK)) {
  61.         errno = BTELOCK;
  62.         return -1;
  63.     }
  64.  
  65.     /* initialize return value */
  66.     memset(buf, 0, btp->bthdr.keysize);
  67.  
  68.     /* read key value */
  69.     if (btcursor(btp) == NULL) {
  70.         errno = BTENKEY;
  71.         return -1;
  72.     }
  73.     memcpy(buf, bt_kykey_p(btp, btp->cbtnp, btp->cbtpos.key), btp->bthdr.keysize);
  74.  
  75.     errno = 0;
  76.     return 0;
  77. }
  78.