tupmacs.h
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:3k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * tupmacs.h
  4.  *   Tuple macros used by both index tuples and heap tuples.
  5.  *
  6.  *
  7.  * Copyright (c) 1994, Regents of the University of California
  8.  *
  9.  * $Id: tupmacs.h,v 1.10.2.1 1999/07/30 18:27:00 scrappy Exp $
  10.  *
  11.  *-------------------------------------------------------------------------
  12.  */
  13. #ifndef TUPMACS_H
  14. #define TUPMACS_H
  15. #include "utils/memutils.h"
  16. /*
  17.  * check to see if the ATT'th bit of an array of 8-bit bytes is set.
  18.  */
  19. #define att_isnull(ATT, BITS) (!((BITS)[(ATT) >> 3] & (1 << ((ATT) & 0x07))))
  20. /*
  21.  * given a Form_pg_attribute and a pointer into a tuple's data
  22.  * area, return the correct value or pointer.
  23.  *
  24.  * We return a 4 byte (char *) value in all cases. If the attribute has
  25.  * "byval" false or has variable length, we return the same pointer
  26.  * into the tuple data area that we're passed.  Otherwise, we return
  27.  * the 1, 2, or 4 bytes pointed to by it, properly extended to 4
  28.  * bytes, depending on the length of the attribute.
  29.  *
  30.  * note that T must already be properly LONGALIGN/SHORTALIGN'd for
  31.  * this to work correctly.
  32.  *
  33.  * the double-cast is to stop gcc from (correctly) complaining about
  34.  * casting integer types with size < sizeof(char *) to (char *).
  35.  * sign-extension may get weird if you use an integer type that
  36.  * isn't the same size as (char *) for the first cast.  (on the other
  37.  * hand, it's safe to use another type for the (foo *)(T).)
  38.  *
  39.  * attbyval seems to be fairly redundant.  We have to return a pointer if
  40.  * the value is longer than 4 bytes or has variable length; returning the
  41.  * value would be useless. In fact, for at least the variable length case,
  42.  * the caller assumes we return a pointer regardless of attbyval.
  43.  * I would eliminate attbyval altogether, but I don't know how.  -BRYANH.
  44.  */
  45. #define fetchatt(A, T) 
  46. (*(A))->attbyval && (*(A))->attlen != -1 ? 
  47. (*(A))->attlen > sizeof(int16) ? 
  48. (char *) (long) *((int32 *)(T)) 
  49. (*(A))->attlen < sizeof(int16) ? 
  50. (char *) (long) *((char *)(T)) 
  51. (char *) (long) *((int16 *)(T))) 
  52. (char *) (T) 
  53. )
  54. /* att_align aligns the given offset as needed for a datum of length attlen
  55.  * and alignment requirement attalign. In practice we don't need the length.
  56.  * The attalign cases are tested in what is hopefully something like their
  57.  * frequency of occurrence.
  58.  */
  59. #define att_align(cur_offset, attlen, attalign) 
  60. ((attalign) == 'i') ? INTALIGN(cur_offset) : 
  61.  (((attalign) == 'c') ? ((long)(cur_offset)) : 
  62.   (((attalign) == 'd') ? DOUBLEALIGN(cur_offset) : 
  63. AssertMacro((attalign) == 's'), 
  64. SHORTALIGN(cur_offset) 
  65. ))) 
  66. )
  67. #define att_addlength(cur_offset, attlen, attval) 
  68. ((attlen) != -1) ? 
  69. (cur_offset) + (attlen) 
  70. (cur_offset) + VARSIZE(DatumGetPointer(attval)) 
  71. )
  72. #endif