my_bitmap.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef _my_bitmap_h_
  14. #define _my_bitmap_h_
  15. #include <my_pthread.h>
  16. #define MY_BIT_NONE (~(uint) 0)
  17. typedef struct st_bitmap
  18. {
  19.   uchar *bitmap;
  20.   uint bitmap_size;
  21.   /*
  22.      mutex will be acquired for the duration of each bitmap operation if
  23.      thread_safe flag in bitmap_init was set.  Otherwise, we optimize by not
  24.      acquiring the mutex
  25.    */
  26. #ifdef THREAD
  27.   pthread_mutex_t *mutex;
  28. #endif
  29. } MY_BITMAP;
  30. #ifdef __cplusplus
  31. extern "C" {
  32. #endif
  33. extern my_bool bitmap_cmp(const MY_BITMAP *map1, const MY_BITMAP *map2);
  34. extern my_bool bitmap_init(MY_BITMAP *map, uchar *buf, uint bitmap_size, my_bool thread_safe);
  35. extern my_bool bitmap_is_clear_all(const MY_BITMAP *map);
  36. extern my_bool bitmap_is_prefix(const MY_BITMAP *map, uint prefix_size);
  37. extern my_bool bitmap_is_set(const MY_BITMAP *map, uint bitmap_bit);
  38. extern my_bool bitmap_is_set_all(const MY_BITMAP *map);
  39. extern my_bool bitmap_is_subset(const MY_BITMAP *map1, const MY_BITMAP *map2);
  40. extern uint bitmap_set_next(MY_BITMAP *map);
  41. extern void bitmap_clear_all(MY_BITMAP *map);
  42. extern void bitmap_clear_bit(MY_BITMAP *map, uint bitmap_bit);
  43. extern void bitmap_free(MY_BITMAP *map);
  44. extern void bitmap_intersect(MY_BITMAP *map, const MY_BITMAP *map2);
  45. extern void bitmap_set_all(MY_BITMAP *map);
  46. extern void bitmap_set_bit(MY_BITMAP *map, uint bitmap_bit);
  47. extern void bitmap_set_prefix(MY_BITMAP *map, uint prefix_size);
  48. extern void bitmap_subtract(MY_BITMAP *map, const MY_BITMAP *map2);
  49. extern void bitmap_union(MY_BITMAP *map, const MY_BITMAP *map2);
  50. /* Fast, not thread safe, bitmap functions */
  51. #define bitmap_fast_set_bit(MAP, BIT) (MAP)->bitmap[(BIT) / 8] |= (1 << ((BIT) & 7))
  52. #define bitmap_fast_clear_bit(MAP, BIT) (MAP)->bitmap[(BIT) / 8] &= ~ (1 << ((BIT) & 7))
  53. #define bitmap_fast_is_set(MAP, BIT) (MAP)->bitmap[(BIT) / 8] & (1 << ((BIT) & 7))
  54. #ifdef __cplusplus
  55. }
  56. #endif
  57. #endif /* _my_bitmap_h_ */