bitmapset.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*-------------------------------------------------------------------------
  2. *
  3. * bitmapset.h
  4. * PostgreSQL generic bitmap set package
  5. *
  6. * A bitmap set can represent any set of nonnegative integers, although
  7. * it is mainly intended for sets where the maximum value is not large,
  8. * say at most a few hundred. By convention, a NULL pointer is always
  9. * accepted by all operations to represent the empty set. (But beware
  10. * that this is not the only representation of the empty set. Use
  11. * bms_is_empty() in preference to testing for NULL.)
  12. *
  13. *
  14. * Copyright (c) 2003-2016, PostgreSQL Global Development Group
  15. *
  16. * src/include/nodes/bitmapset.h
  17. *
  18. *-------------------------------------------------------------------------
  19. */
  20. #ifndef BITMAPSET_H
  21. #define BITMAPSET_H
  22. /*
  23. * Data representation
  24. */
  25. /* The unit size can be adjusted by changing these three declarations: */
  26. #define BITS_PER_BITMAPWORD 32
  27. typedef uint32 bitmapword; /* must be an unsigned type */
  28. typedef int32 signedbitmapword; /* must be the matching signed type */
  29. typedef struct Bitmapset
  30. {
  31. int nwords; /* number of words in array */
  32. bitmapword words[FLEXIBLE_ARRAY_MEMBER]; /* really [nwords] */
  33. } Bitmapset;
  34. /* result of bms_subset_compare */
  35. typedef enum
  36. {
  37. BMS_EQUAL, /* sets are equal */
  38. BMS_SUBSET1, /* first set is a subset of the second */
  39. BMS_SUBSET2, /* second set is a subset of the first */
  40. BMS_DIFFERENT /* neither set is a subset of the other */
  41. } BMS_Comparison;
  42. /* result of bms_membership */
  43. typedef enum
  44. {
  45. BMS_EMPTY_SET, /* 0 members */
  46. BMS_SINGLETON, /* 1 member */
  47. BMS_MULTIPLE /* >1 member */
  48. } BMS_Membership;
  49. /*
  50. * function prototypes in nodes/bitmapset.c
  51. */
  52. extern Bitmapset *bms_copy(const Bitmapset *a);
  53. extern bool bms_equal(const Bitmapset *a, const Bitmapset *b);
  54. extern Bitmapset *bms_make_singleton(int x);
  55. extern void bms_free(Bitmapset *a);
  56. extern Bitmapset *bms_union(const Bitmapset *a, const Bitmapset *b);
  57. extern Bitmapset *bms_intersect(const Bitmapset *a, const Bitmapset *b);
  58. extern Bitmapset *bms_difference(const Bitmapset *a, const Bitmapset *b);
  59. extern bool bms_is_subset(const Bitmapset *a, const Bitmapset *b);
  60. extern BMS_Comparison bms_subset_compare(const Bitmapset *a, const Bitmapset *b);
  61. extern bool bms_is_member(int x, const Bitmapset *a);
  62. extern bool bms_overlap(const Bitmapset *a, const Bitmapset *b);
  63. extern bool bms_nonempty_difference(const Bitmapset *a, const Bitmapset *b);
  64. extern int bms_singleton_member(const Bitmapset *a);
  65. extern bool bms_get_singleton_member(const Bitmapset *a, int *member);
  66. extern int bms_num_members(const Bitmapset *a);
  67. /* optimized tests when we don't need to know exact membership count: */
  68. extern BMS_Membership bms_membership(const Bitmapset *a);
  69. extern bool bms_is_empty(const Bitmapset *a);
  70. /* these routines recycle (modify or free) their non-const inputs: */
  71. extern Bitmapset *bms_add_member(Bitmapset *a, int x);
  72. extern Bitmapset *bms_del_member(Bitmapset *a, int x);
  73. extern Bitmapset *bms_add_members(Bitmapset *a, const Bitmapset *b);
  74. extern Bitmapset *bms_int_members(Bitmapset *a, const Bitmapset *b);
  75. extern Bitmapset *bms_del_members(Bitmapset *a, const Bitmapset *b);
  76. extern Bitmapset *bms_join(Bitmapset *a, Bitmapset *b);
  77. /* support for iterating through the integer elements of a set: */
  78. extern int bms_first_member(Bitmapset *a);
  79. extern int bms_next_member(const Bitmapset *a, int prevbit);
  80. /* support for hashtables using Bitmapsets as keys: */
  81. extern uint32 bms_hash_value(const Bitmapset *a);
  82. #endif /* BITMAPSET_H */