~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2002-2006 MySQL AB
2
3
   This library is free software; you can redistribute it and/or
4
   modify it under the terms of the GNU Library General Public
5
   License as published by the Free Software Foundation; version 2
6
   of the License.
7
8
   This library is distributed in the hope that it will be useful,
9
   but WITHOUT ANY WARRANTY; without even the implied warranty of
10
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
   Library General Public License for more details.
12
13
   You should have received a copy of the GNU Library General Public
14
   License along with this library; if not, write to the Free
15
   Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16
   MA 02111-1307, USA */
17
18
#ifndef _my_handler_h
19
#define _my_handler_h
20
612.2.13 by Monty Taylor
Work on removing global.h from headers that should be installed.
21
#include <mystrings/m_ctype.h>
212.4.2 by Monty Taylor
Fixed the includes in places to make the myisam header file move work.
22
#include <storage/myisam/myisampack.h>
1 by brian
clean slate
23
#ifdef	__cplusplus
24
extern "C" {
25
#endif
26
27
/*
28
  There is a hard limit for the maximum number of keys as there are only
29
  8 bits in the index file header for the number of keys in a table.
30
  This means that 0..255 keys can exist for a table. The idea of
31
  HA_MAX_POSSIBLE_KEY is to ensure that one can use myisamchk & tools on
32
  a MyISAM table for which one has more keys than MyISAM is normally
33
  compiled for. If you don't have this, you will get a core dump when
34
  running myisamchk compiled for 128 keys on a table with 255 keys.
35
*/
36
37
#define HA_MAX_POSSIBLE_KEY         255         /* For myisamchk */
38
/*
39
  The following defines can be increased if necessary.
40
  But beware the dependency of MI_MAX_POSSIBLE_KEY_BUFF and HA_MAX_KEY_LENGTH.
41
*/
42
43
#define HA_MAX_KEY_LENGTH           1332        /* Max length in bytes */
44
#define HA_MAX_KEY_SEG              16          /* Max segments for key */
45
46
#define HA_MAX_POSSIBLE_KEY_BUFF    (HA_MAX_KEY_LENGTH + 24+ 6+6)
47
#define HA_MAX_KEY_BUFF  (HA_MAX_KEY_LENGTH+HA_MAX_KEY_SEG*6+8+8)
48
49
typedef struct st_HA_KEYSEG		/* Key-portion */
50
{
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
51
  const CHARSET_INFO *charset;
205 by Brian Aker
uint32 -> uin32_t
52
  uint32_t start;				/* Start of key in record */
53
  uint32_t null_pos;			/* position to NULL indicator */
206 by Brian Aker
Removed final uint dead types.
54
  uint16_t bit_pos;                       /* Position to bit part */
55
  uint16_t flag;
56
  uint16_t length;			/* Keylength */
57
  uint8_t  type;				/* Type of key (for sort) */
58
  uint8_t  language;
59
  uint8_t  null_bit;			/* bitmask to test for NULL */
60
  uint8_t  bit_start,bit_end;		/* if bit field */
61
  uint8_t  bit_length;                    /* Length of bit part */
1 by brian
clean slate
62
} HA_KEYSEG;
63
64
#define get_key_length(length,key) \
481 by Brian Aker
Remove all of uchar.
65
{ if (*(unsigned char*) (key) != 255) \
66
    length= (uint) *(unsigned char*) ((key)++); \
1 by brian
clean slate
67
  else \
68
  { length= mi_uint2korr((key)+1); (key)+=3; } \
69
}
70
71
#define get_key_length_rdonly(length,key) \
481 by Brian Aker
Remove all of uchar.
72
{ if (*(unsigned char*) (key) != 255) \
73
    length= ((uint) *(unsigned char*) ((key))); \
1 by brian
clean slate
74
  else \
75
  { length= mi_uint2korr((key)+1); } \
76
}
77
78
#define get_key_pack_length(length,length_pack,key) \
481 by Brian Aker
Remove all of uchar.
79
{ if (*(unsigned char*) (key) != 255) \
80
  { length= (uint) *(unsigned char*) ((key)++); length_pack= 1; }\
1 by brian
clean slate
81
  else \
82
  { length=mi_uint2korr((key)+1); (key)+= 3; length_pack= 3; } \
83
}
84
85
#define store_key_length_inc(key,length) \
86
{ if ((length) < 255) \
87
  { *(key)++= (length); } \
88
  else \
89
  { *(key)=255; mi_int2store((key)+1,(length)); (key)+=3; } \
90
}
91
92
#define size_to_store_key_length(length) ((length) < 255 ? 1 : 3)
93
94
#define get_rec_bits(bit_ptr, bit_ofs, bit_len) \
206 by Brian Aker
Removed final uint dead types.
95
  (((((uint16_t) (bit_ptr)[1] << 8) | (uint16_t) (bit_ptr)[0]) >> (bit_ofs)) & \
1 by brian
clean slate
96
   ((1 << (bit_len)) - 1))
97
98
#define set_rec_bits(bits, bit_ptr, bit_ofs, bit_len) \
99
{ \
100
  (bit_ptr)[0]= ((bit_ptr)[0] & ~(((1 << (bit_len)) - 1) << (bit_ofs))) | \
101
                ((bits) << (bit_ofs)); \
102
  if ((bit_ofs) + (bit_len) > 8) \
103
    (bit_ptr)[1]= ((bit_ptr)[1] & ~((1 << ((bit_len) - 8 + (bit_ofs))) - 1)) | \
104
                  ((bits) >> (8 - (bit_ofs))); \
105
}
106
107
#define clr_rec_bits(bit_ptr, bit_ofs, bit_len) \
108
  set_rec_bits(0, bit_ptr, bit_ofs, bit_len)
109
481 by Brian Aker
Remove all of uchar.
110
extern int ha_compare_text(const CHARSET_INFO * const, unsigned char *, uint, unsigned char *, uint, bool, bool);
1 by brian
clean slate
111
481 by Brian Aker
Remove all of uchar.
112
extern HA_KEYSEG *ha_find_null(HA_KEYSEG *keyseg, unsigned char *a);
547 by Monty Taylor
Moved handler_error_messages array out of header file. Moved associated
113
void my_handler_error_register(void);
114
void my_handler_error_unregister(void);
481 by Brian Aker
Remove all of uchar.
115
extern int ha_key_cmp(HA_KEYSEG *keyseg, unsigned char *a,unsigned char *b,
482 by Brian Aker
Remove uint.
116
                      uint32_t key_length,uint32_t nextflag,uint32_t *diff_length);
77.1.7 by Monty Taylor
Heap builds clean.
117
1 by brian
clean slate
118
/*
119
  Inside an in-memory data record, memory pointers to pieces of the
120
  record (like BLOBs) are stored in their native byte order and in
121
  this amount of bytes.
122
*/
123
#define portable_sizeof_char_ptr 8
124
#ifdef	__cplusplus
125
}
126
#endif
127
128
#endif /* _my_handler_h */