MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
my_compare.h
1 /* Copyright (c) 2011, Oracle and/or its affiliates. All rights reserved.
2 
3  This program is free software; you can redistribute it and/or modify
4  it under the terms of the GNU General Public License as published by
5  the Free Software Foundation; version 2 of the License.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program; if not, write to the Free Software
14  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA */
15 
16 #ifndef _my_compare_h
17 #define _my_compare_h
18 
19 #include "myisampack.h"
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23 
24 #include "m_ctype.h" /* CHARSET_INFO */
25 
26 /*
27  There is a hard limit for the maximum number of keys as there are only
28  8 bits in the index file header for the number of keys in a table.
29  This means that 0..255 keys can exist for a table. The idea of
30  HA_MAX_POSSIBLE_KEY is to ensure that one can use myisamchk & tools on
31  a MyISAM table for which one has more keys than MyISAM is normally
32  compiled for. If you don't have this, you will get a core dump when
33  running myisamchk compiled for 128 keys on a table with 255 keys.
34 */
35 
36 #define HA_MAX_POSSIBLE_KEY 255 /* For myisamchk */
37 /*
38  The following defines can be increased if necessary.
39  But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and HA_MAX_KEY_LENGTH.
40 */
41 
42 #define HA_MAX_KEY_LENGTH 1000 /* Max length in bytes */
43 #define HA_MAX_KEY_SEG 16 /* Max segments for key */
44 
45 #define HA_MAX_POSSIBLE_KEY_BUFF (HA_MAX_KEY_LENGTH + 24+ 6+6)
46 #define HA_MAX_KEY_BUFF (HA_MAX_KEY_LENGTH+HA_MAX_KEY_SEG*6+8+8)
47 
48 typedef struct st_HA_KEYSEG /* Key-portion */
49 {
50  const CHARSET_INFO *charset;
51  uint32 start; /* Start of key in record */
52  uint32 null_pos; /* position to NULL indicator */
53  uint16 bit_pos; /* Position to bit part */
54  uint16 flag;
55  uint16 length; /* Keylength */
56  uint16 language;
57  uint8 type; /* Type of key (for sort) */
58  uint8 null_bit; /* bitmask to test for NULL */
59  uint8 bit_start,bit_end; /* if bit field */
60  uint8 bit_length; /* Length of bit part */
61 } HA_KEYSEG;
62 
63 #define get_key_length(length,key) \
64 { if (*(uchar*) (key) != 255) \
65  length= (uint) *(uchar*) ((key)++); \
66  else \
67  { length= mi_uint2korr((key)+1); (key)+=3; } \
68 }
69 
70 #define get_key_length_rdonly(length,key) \
71 { if (*(uchar*) (key) != 255) \
72  length= ((uint) *(uchar*) ((key))); \
73  else \
74  { length= mi_uint2korr((key)+1); } \
75 }
76 
77 #define get_key_pack_length(length,length_pack,key) \
78 { if (*(uchar*) (key) != 255) \
79  { length= (uint) *(uchar*) ((key)++); length_pack= 1; }\
80  else \
81  { length=mi_uint2korr((key)+1); (key)+= 3; length_pack= 3; } \
82 }
83 
84 #define store_key_length_inc(key,length) \
85 { if ((length) < 255) \
86  { *(key)++= (length); } \
87  else \
88  { *(key)=255; mi_int2store((key)+1,(length)); (key)+=3; } \
89 }
90 
91 #define size_to_store_key_length(length) ((length) < 255 ? 1 : 3)
92 
93 #define get_rec_bits(bit_ptr, bit_ofs, bit_len) \
94  (((((uint16) (bit_ptr)[1] << 8) | (uint16) (bit_ptr)[0]) >> (bit_ofs)) & \
95  ((1 << (bit_len)) - 1))
96 
97 #define set_rec_bits(bits, bit_ptr, bit_ofs, bit_len) \
98 { \
99  (bit_ptr)[0]= ((bit_ptr)[0] & ~(((1 << (bit_len)) - 1) << (bit_ofs))) | \
100  ((bits) << (bit_ofs)); \
101  if ((bit_ofs) + (bit_len) > 8) \
102  (bit_ptr)[1]= ((bit_ptr)[1] & ~((1 << ((bit_len) - 8 + (bit_ofs))) - 1)) | \
103  ((bits) >> (8 - (bit_ofs))); \
104 }
105 
106 #define clr_rec_bits(bit_ptr, bit_ofs, bit_len) \
107  set_rec_bits(0, bit_ptr, bit_ofs, bit_len)
108 
109 extern int ha_compare_text(const CHARSET_INFO *, uchar *, uint, uchar *, uint ,
110  my_bool, my_bool);
111 extern int ha_key_cmp(register HA_KEYSEG *keyseg, register uchar *a,
112  register uchar *b, uint key_length, uint nextflag,
113  uint *diff_pos);
114 
115 /*
116  Inside an in-memory data record, memory pointers to pieces of the
117  record (like BLOBs) are stored in their native byte order and in
118  this amount of bytes.
119 */
120 #define portable_sizeof_char_ptr 8
121 
122 
136 typedef enum icp_result {
137  ICP_NO_MATCH,
138  ICP_MATCH,
139  ICP_OUT_OF_RANGE
140 } ICP_RESULT;
141 
142 
143 #ifdef __cplusplus
144 }
145 #endif
146 
147 #endif /* _my_compare_h */