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

数据库系统

开发平台:

Unix_Linux

  1. /*-------------------------------------------------------------------------
  2.  *
  3.  * array.h
  4.  *   Utilities for the new array code. Contain prototypes from the
  5.  *   following files:
  6.  * utils/adt/arrayfuncs.c
  7.  * utils/adt/arrayutils.c
  8.  * utils/adt/chunk.c
  9.  *
  10.  *
  11.  * Copyright (c) 1994, Regents of the University of California
  12.  *
  13.  * $Id: array.h,v 1.18.2.1 1999/08/02 05:25:24 scrappy Exp $
  14.  *
  15.  * NOTES
  16.  *   XXX the data array should be LONGALIGN'd -- notice that the array
  17.  *   allocation code does not allocate the extra space required for this,
  18.  *   even though the array-packing code does the LONGALIGNs.
  19.  *
  20.  *-------------------------------------------------------------------------
  21.  */
  22. #ifndef ARRAY_H
  23. #define ARRAY_H
  24. #include "utils/memutils.h"
  25. typedef struct
  26. {
  27. int size; /* total array size (in bytes) */
  28. int ndim; /* # of dimensions */
  29. int flags; /* implementation flags */
  30. } ArrayType;
  31. /*
  32.  * bitmask of ArrayType flags field:
  33.  * 1st bit - large object flag
  34.  * 2nd bit - chunk flag (array is chunked if set)
  35.  * 3rd,4th,&5th bit - large object type (used only if bit 1 is set)
  36.  */
  37. #define ARR_LOB_FLAG (0x1)
  38. #define ARR_CHK_FLAG (0x2)
  39. #define ARR_OBJ_MASK (0x1c)
  40. #define ARR_FLAGS(a) ((ArrayType *) a)->flags
  41. #define ARR_SIZE(a) (((ArrayType *) a)->size)
  42. #define ARR_NDIM(a) (((ArrayType *) a)->ndim)
  43. #define ARR_NDIM_PTR(a) (&(((ArrayType *) a)->ndim))
  44. #define ARR_IS_LO(a) 
  45. (((ArrayType *) a)->flags & ARR_LOB_FLAG)
  46. #define SET_LO_FLAG(f,a) 
  47. (((ArrayType *) a)->flags |= ((f) ? ARR_LOB_FLAG : 0x0))
  48. #define ARR_IS_CHUNKED(a) 
  49. (((ArrayType *) a)->flags & ARR_CHK_FLAG)
  50. #define SET_CHUNK_FLAG(f,a) 
  51. (((ArrayType *) a)->flags |= ((f) ? ARR_CHK_FLAG : 0x0))
  52. #define ARR_OBJ_TYPE(a) 
  53. ((ARR_FLAGS(a) & ARR_OBJ_MASK) >> 2)
  54. #define SET_OBJ_TYPE(f,a) 
  55. ((ARR_FLAGS(a)&= ~ARR_OBJ_MASK), (ARR_FLAGS(a)|=((f<<2)&ARR_OBJ_MASK)))
  56. /*
  57.  * ARR_DIMS returns a pointer to an array of array dimensions (number of
  58.  * elements along the various array axes).
  59.  *
  60.  * ARR_LBOUND returns a pointer to an array of array lower bounds.
  61.  *
  62.  * That is: if the third axis of an array has elements 5 through 10, then
  63.  * ARR_DIMS(a)[2] == 6 and ARR_LBOUND[2] == 5.
  64.  *
  65.  * Unlike C, the default lower bound is 1.
  66.  */
  67. #define ARR_DIMS(a) 
  68. ((int *) (((char *) a) + sizeof(ArrayType)))
  69. #define ARR_LBOUND(a) 
  70. ((int *) (((char *) a) + sizeof(ArrayType) + 
  71.   (sizeof(int) * (((ArrayType *) a)->ndim))))
  72. /*
  73.  * Returns a pointer to the actual array data.
  74.  */
  75. #define ARR_DATA_PTR(a) 
  76. (((char *) a) + 
  77.  MAXALIGN(sizeof(ArrayType) + 2 * (sizeof(int) * (a)->ndim)))
  78. /*
  79.  * The total array header size for an array of dimension n (in bytes).
  80.  */
  81. #define ARR_OVERHEAD(n) 
  82. (MAXALIGN(sizeof(ArrayType) + 2 * (n) * sizeof(int)))
  83. /*------------------------------------------------------------------------
  84.  * Miscellaneous helper definitions and routines for arrayfuncs.c
  85.  *------------------------------------------------------------------------
  86.  */
  87. #define RETURN_NULL {*isNull = true; return(0); }
  88. #define NAME_LEN 30
  89. #define MAX_BUFF_SIZE BLCKSZ
  90. typedef struct
  91. {
  92. char lo_name[NAME_LEN];
  93. int C[MAXDIM];
  94. } CHUNK_INFO;
  95. /*
  96.  * prototypes for functions defined in arrayfuncs.c
  97.  */
  98. extern char *array_in(char *string, Oid element_type, int32 typmod);
  99. extern char *array_out(ArrayType *v, Oid element_type);
  100. extern char *array_dims(ArrayType *v, bool *isNull);
  101. extern Datum array_ref(ArrayType *array, int n, int *indx, int reftype,
  102.   int elmlen, int arraylen, bool *isNull);
  103. extern Datum array_clip(ArrayType *array, int n, int *upperIndx,
  104.    int *lowerIndx, int reftype, int len, bool *isNull);
  105. extern char *array_set(ArrayType *array, int n, int *indx, char *dataPtr,
  106.   int reftype, int elmlen, int arraylen, bool *isNull);
  107. extern char *array_assgn(ArrayType *array, int n, int *upperIndx,
  108. int *lowerIndx, ArrayType *newArr, int reftype,
  109. int len, bool *isNull);
  110. extern ArrayType *array_map(ArrayType *v, Oid type,
  111.   char *(*fn) (),
  112.   Oid retType, int nargs,...);
  113. extern int array_eq(ArrayType *array1, ArrayType *array2);
  114. extern int _LOtransfer(char **destfd, int size, int nitems, char **srcfd,
  115. int isSrcLO, int isDestLO);
  116. extern char *_array_newLO(int *fd, int flag);
  117. /*
  118.  * prototypes for functions defined in arrayutils.c
  119.  * [these names seem to be too generic. Add prefix for arrays? -- AY]
  120.  */
  121. extern int GetOffset(int n, int *dim, int *lb, int *indx);
  122. extern int getNitems(int n, int *a);
  123. extern int compute_size(int *st, int *endp, int n, int base);
  124. extern void mda_get_offset_values(int n, int *dist, int *PC, int *span);
  125. extern void mda_get_range(int n, int *span, int *st, int *endp);
  126. extern void mda_get_prod(int n, int *range, int *P);
  127. extern int tuple2linear(int n, int *tup, int *scale);
  128. extern void array2chunk_coord(int n, int *C, int *a_coord, int *c_coord);
  129. extern int next_tuple(int n, int *curr, int *span);
  130. /*
  131.  * prototypes for functions defined in chunk.c
  132.  */
  133. extern char *_ChunkArray(int fd, FILE *afd, int ndim, int *dim, int baseSize,
  134. int *nbytes, char *chunkfile);
  135. extern int _ReadChunkArray(int *st, int *endp, int bsize, int fp,
  136.  char *destfp, ArrayType *array, int isDestLO, bool *isNull);
  137. extern struct varlena *_ReadChunkArray1El(int *st, int bsize, int fp,
  138.    ArrayType *array, bool *isNull);
  139. #endif  /* ARRAY_H */