2006-04-11 15:45:10 +02:00
|
|
|
/* Copyright (C) 2006 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-03-02 11:20:23 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2017-02-10 12:26:55 +01:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA */
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
/* Functions to compressed records */
|
|
|
|
|
|
|
|
#include "maria_def.h"
|
|
|
|
|
|
|
|
#define IS_CHAR ((uint) 32768) /* Bit if char (not offset) in tree */
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Some definitions to keep in sync with maria_pack.c */
|
|
|
|
#define HEAD_LENGTH 32 /* Length of fixed header */
|
|
|
|
|
|
|
|
#if INT_MAX > 32767
|
2006-04-11 15:45:10 +02:00
|
|
|
#define BITS_SAVED 32
|
|
|
|
#define MAX_QUICK_TABLE_BITS 9 /* Because we may shift in 24 bits */
|
|
|
|
#else
|
|
|
|
#define BITS_SAVED 16
|
|
|
|
#define MAX_QUICK_TABLE_BITS 6
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define get_bit(BU) ((BU)->bits ? \
|
|
|
|
(BU)->current_byte & ((maria_bit_type) 1 << --(BU)->bits) :\
|
|
|
|
(fill_buffer(BU), (BU)->bits= BITS_SAVED-1,\
|
|
|
|
(BU)->current_byte & ((maria_bit_type) 1 << (BITS_SAVED-1))))
|
|
|
|
#define skip_to_next_byte(BU) ((BU)->bits&=~7)
|
|
|
|
#define get_bits(BU,count) (((BU)->bits >= count) ? (((BU)->current_byte >> ((BU)->bits-=count)) & mask[count]) : fill_and_get_bits(BU,count))
|
|
|
|
|
|
|
|
#define decode_bytes_test_bit(bit) \
|
|
|
|
if (low_byte & (1 << (7-bit))) \
|
|
|
|
pos++; \
|
|
|
|
if (*pos & IS_CHAR) \
|
|
|
|
{ bits-=(bit+1); break; } \
|
|
|
|
pos+= *pos
|
|
|
|
|
2007-11-28 20:38:30 +01:00
|
|
|
/*
|
|
|
|
Size in uint16 of a Huffman tree for uchar compression of 256 uchar values
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
#define OFFSET_TABLE_SIZE 512
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static my_bool _ma_read_pack_info(MARIA_SHARE *share, File file,
|
|
|
|
pbool fix_keys);
|
|
|
|
static uint read_huff_table(MARIA_BIT_BUFF *bit_buff,
|
|
|
|
MARIA_DECODE_TREE *decode_tree,
|
2007-07-02 19:45:15 +02:00
|
|
|
uint16 **decode_table,uchar **intervall_buff,
|
2006-04-11 15:45:10 +02:00
|
|
|
uint16 *tmp_buff);
|
|
|
|
static void make_quick_table(uint16 *to_table,uint16 *decode_table,
|
|
|
|
uint *next_free,uint value,uint bits,
|
|
|
|
uint max_bits);
|
|
|
|
static void fill_quick_table(uint16 *table,uint bits, uint max_bits,
|
|
|
|
uint value);
|
|
|
|
static uint copy_decode_table(uint16 *to_pos,uint offset,
|
|
|
|
uint16 *decode_table);
|
|
|
|
static uint find_longest_bitstream(uint16 *table, uint16 *end);
|
|
|
|
static void (*get_unpack_function(MARIA_COLUMNDEF *rec))(MARIA_COLUMNDEF *field,
|
2007-01-18 20:38:14 +01:00
|
|
|
MARIA_BIT_BUFF *buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,
|
|
|
|
uchar *end);
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_zerofill_skip_zero(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_skip_zero(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_space_normal(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_endspace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_endspace_selected(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_space_endspace(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_endspace(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_prespace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_prespace_selected(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_space_prespace(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_prespace(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_zerofill_normal(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_constant(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_intervall(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_zero(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_blob(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_varchar1(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void uf_varchar2(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end);
|
2006-04-11 15:45:10 +02:00
|
|
|
static void decode_bytes(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,uchar *end);
|
2007-01-18 20:38:14 +01:00
|
|
|
static uint decode_pos(MARIA_BIT_BUFF *bit_buff,
|
|
|
|
MARIA_DECODE_TREE *decode_tree);
|
|
|
|
static void init_bit_buffer(MARIA_BIT_BUFF *bit_buff,uchar *buffer,
|
|
|
|
uint length);
|
2006-04-11 15:45:10 +02:00
|
|
|
static uint fill_and_get_bits(MARIA_BIT_BUFF *bit_buff,uint count);
|
|
|
|
static void fill_buffer(MARIA_BIT_BUFF *bit_buff);
|
|
|
|
static uint max_bit(uint value);
|
|
|
|
static uint read_pack_length(uint version, const uchar *buf, ulong *length);
|
|
|
|
#ifdef HAVE_MMAP
|
2007-01-18 20:38:14 +01:00
|
|
|
static uchar *_ma_mempack_get_block_info(MARIA_HA *maria,
|
2007-01-23 20:13:26 +01:00
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-01-18 20:38:14 +01:00
|
|
|
MARIA_BLOCK_INFO *info,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar **rec_buff_p,
|
|
|
|
size_t *rec_buff_size_p,
|
2006-04-11 15:45:10 +02:00
|
|
|
uchar *header);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static maria_bit_type mask[]=
|
|
|
|
{
|
|
|
|
0x00000000,
|
|
|
|
0x00000001, 0x00000003, 0x00000007, 0x0000000f,
|
|
|
|
0x0000001f, 0x0000003f, 0x0000007f, 0x000000ff,
|
|
|
|
0x000001ff, 0x000003ff, 0x000007ff, 0x00000fff,
|
|
|
|
0x00001fff, 0x00003fff, 0x00007fff, 0x0000ffff,
|
|
|
|
#if BITS_SAVED > 16
|
|
|
|
0x0001ffff, 0x0003ffff, 0x0007ffff, 0x000fffff,
|
|
|
|
0x001fffff, 0x003fffff, 0x007fffff, 0x00ffffff,
|
|
|
|
0x01ffffff, 0x03ffffff, 0x07ffffff, 0x0fffffff,
|
|
|
|
0x1fffffff, 0x3fffffff, 0x7fffffff, 0xffffffff,
|
|
|
|
#endif
|
2007-01-18 20:38:14 +01:00
|
|
|
};
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
my_bool _ma_once_init_pack_row(MARIA_SHARE *share, File dfile)
|
|
|
|
{
|
|
|
|
share->options|= HA_OPTION_READ_ONLY_DATA;
|
2007-04-19 12:18:56 +02:00
|
|
|
return (_ma_read_pack_info(share, dfile,
|
|
|
|
(pbool)
|
2014-02-19 11:05:15 +01:00
|
|
|
MY_TEST(!(share->options &
|
|
|
|
(HA_OPTION_PACK_RECORD |
|
|
|
|
HA_OPTION_TEMP_COMPRESS_RECORD)))));
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-04-19 12:18:56 +02:00
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
my_bool _ma_once_end_pack_row(MARIA_SHARE *share)
|
|
|
|
{
|
|
|
|
if (share->decode_trees)
|
|
|
|
{
|
2011-04-25 17:22:25 +02:00
|
|
|
my_free(share->decode_trees);
|
|
|
|
my_free(share->decode_tables);
|
2007-01-18 20:38:14 +01:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Read all packed info, allocate memory and fix field structs */
|
|
|
|
|
|
|
|
static my_bool _ma_read_pack_info(MARIA_SHARE *share, File file,
|
|
|
|
pbool fix_keys)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
int diff_length;
|
|
|
|
uint i,trees,huff_tree_bits,rec_reflength,length;
|
|
|
|
uint16 *decode_table,*tmp_buff;
|
|
|
|
ulong elements,intervall_length;
|
2007-10-04 19:33:42 +02:00
|
|
|
uchar *disk_cache;
|
2007-07-26 17:51:49 +02:00
|
|
|
uchar *intervall_buff;
|
2007-03-01 18:23:58 +01:00
|
|
|
uchar header[HEAD_LENGTH];
|
2006-04-11 15:45:10 +02:00
|
|
|
MARIA_BIT_BUFF bit_buff;
|
|
|
|
DBUG_ENTER("_ma_read_pack_info");
|
|
|
|
|
|
|
|
if (maria_quick_table_bits < 4)
|
|
|
|
maria_quick_table_bits=4;
|
|
|
|
else if (maria_quick_table_bits > MAX_QUICK_TABLE_BITS)
|
|
|
|
maria_quick_table_bits=MAX_QUICK_TABLE_BITS;
|
|
|
|
|
|
|
|
my_errno=0;
|
2011-07-13 21:10:18 +02:00
|
|
|
if (mysql_file_read(file, header, sizeof(header), MYF(MY_NABP)))
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (!my_errno)
|
|
|
|
my_errno=HA_ERR_END_OF_FILE;
|
|
|
|
goto err0;
|
|
|
|
}
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Only the first three bytes of magic number are independent of version. */
|
2009-01-09 05:23:25 +01:00
|
|
|
if (memcmp(header, maria_pack_file_magic, 3))
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(share, HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err0;
|
|
|
|
}
|
2007-07-02 19:45:15 +02:00
|
|
|
share->pack.version= header[3]; /* fourth uchar of magic number */
|
2006-04-11 15:45:10 +02:00
|
|
|
share->pack.header_length= uint4korr(header+4);
|
|
|
|
share->min_pack_length=(uint) uint4korr(header+8);
|
|
|
|
share->max_pack_length=(uint) uint4korr(header+12);
|
2008-04-01 16:57:30 +02:00
|
|
|
set_if_bigger(share->base.default_rec_buff_size,
|
|
|
|
share->max_pack_length + 7);
|
2006-04-11 15:45:10 +02:00
|
|
|
elements=uint4korr(header+16);
|
|
|
|
intervall_length=uint4korr(header+20);
|
|
|
|
trees=uint2korr(header+24);
|
|
|
|
share->pack.ref_length=header[26];
|
|
|
|
rec_reflength=header[27];
|
|
|
|
diff_length=(int) rec_reflength - (int) share->base.rec_reflength;
|
|
|
|
if (fix_keys)
|
|
|
|
share->rec_reflength=rec_reflength;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("fixed header length: %u", HEAD_LENGTH));
|
|
|
|
DBUG_PRINT("info", ("total header length: %lu", share->pack.header_length));
|
|
|
|
DBUG_PRINT("info", ("pack file version: %u", share->pack.version));
|
|
|
|
DBUG_PRINT("info", ("min pack length: %lu", share->min_pack_length));
|
|
|
|
DBUG_PRINT("info", ("max pack length: %lu", share->max_pack_length));
|
|
|
|
DBUG_PRINT("info", ("elements of all trees: %lu", elements));
|
|
|
|
DBUG_PRINT("info", ("distinct values bytes: %lu", intervall_length));
|
|
|
|
DBUG_PRINT("info", ("number of code trees: %u", trees));
|
|
|
|
DBUG_PRINT("info", ("bytes for record lgt: %u", share->pack.ref_length));
|
|
|
|
DBUG_PRINT("info", ("record pointer length: %u", rec_reflength));
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Memory segment #1:
|
|
|
|
- Decode tree heads
|
|
|
|
- Distinct column values
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(share->decode_trees=(MARIA_DECODE_TREE*)
|
|
|
|
my_malloc((uint) (trees*sizeof(MARIA_DECODE_TREE)+
|
2007-07-02 19:45:15 +02:00
|
|
|
intervall_length*sizeof(uchar)),
|
2006-04-11 15:45:10 +02:00
|
|
|
MYF(MY_WME))))
|
|
|
|
goto err0;
|
2007-07-02 19:45:15 +02:00
|
|
|
intervall_buff=(uchar*) (share->decode_trees+trees);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Memory segment #2:
|
|
|
|
- Decode tables
|
|
|
|
- Quick decode tables
|
|
|
|
- Temporary decode table
|
|
|
|
- Compressed data file header cache
|
|
|
|
This segment will be reallocated after construction of the tables.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
length=(uint) (elements*2+trees*(1 << maria_quick_table_bits));
|
|
|
|
if (!(share->decode_tables=(uint16*)
|
|
|
|
my_malloc((length+OFFSET_TABLE_SIZE)*sizeof(uint16)+
|
2007-11-28 20:38:30 +01:00
|
|
|
(uint) (share->pack.header_length - sizeof(header)) +
|
|
|
|
share->base.extra_rec_buff_size,
|
2006-04-11 15:45:10 +02:00
|
|
|
MYF(MY_WME | MY_ZEROFILL))))
|
|
|
|
goto err1;
|
|
|
|
tmp_buff=share->decode_tables+length;
|
2007-07-02 19:45:15 +02:00
|
|
|
disk_cache=(uchar*) (tmp_buff+OFFSET_TABLE_SIZE);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2011-07-13 21:10:18 +02:00
|
|
|
if (mysql_file_read(file,disk_cache,
|
2006-04-11 15:45:10 +02:00
|
|
|
(uint) (share->pack.header_length-sizeof(header)),
|
|
|
|
MYF(MY_NABP)))
|
|
|
|
goto err2;
|
2009-05-06 14:03:24 +02:00
|
|
|
#ifdef HAVE_valgrind
|
2007-11-28 20:38:30 +01:00
|
|
|
/* Zero bytes accessed by fill_buffer */
|
|
|
|
bzero(disk_cache + (share->pack.header_length-sizeof(header)),
|
|
|
|
share->base.extra_rec_buff_size);
|
|
|
|
#endif
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
huff_tree_bits=max_bit(trees ? trees-1 : 0);
|
2007-10-04 19:33:42 +02:00
|
|
|
init_bit_buffer(&bit_buff, disk_cache,
|
2006-04-11 15:45:10 +02:00
|
|
|
(uint) (share->pack.header_length-sizeof(header)));
|
|
|
|
/* Read new info for each field */
|
|
|
|
for (i=0 ; i < share->base.fields ; i++)
|
|
|
|
{
|
2007-04-19 12:18:56 +02:00
|
|
|
share->columndef[i].base_type=(enum en_fieldtype) get_bits(&bit_buff,5);
|
|
|
|
share->columndef[i].pack_type=(uint) get_bits(&bit_buff,6);
|
|
|
|
share->columndef[i].space_length_bits=get_bits(&bit_buff,5);
|
|
|
|
share->columndef[i].huff_tree=share->decode_trees+(uint) get_bits(&bit_buff,
|
2006-04-11 15:45:10 +02:00
|
|
|
huff_tree_bits);
|
2007-04-19 12:18:56 +02:00
|
|
|
share->columndef[i].unpack= get_unpack_function(share->columndef + i);
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("col: %2u type: %2u pack: %u slbits: %2u",
|
2007-04-19 12:18:56 +02:00
|
|
|
i, share->columndef[i].base_type,
|
|
|
|
share->columndef[i].pack_type,
|
|
|
|
share->columndef[i].space_length_bits));
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
skip_to_next_byte(&bit_buff);
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Construct the decoding tables from the file header. Keep track of
|
|
|
|
the used memory.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
decode_table=share->decode_tables;
|
|
|
|
for (i=0 ; i < trees ; i++)
|
|
|
|
if (read_huff_table(&bit_buff,share->decode_trees+i,&decode_table,
|
|
|
|
&intervall_buff,tmp_buff))
|
|
|
|
goto err3;
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Reallocate the decoding tables to the used size. */
|
2006-04-11 15:45:10 +02:00
|
|
|
decode_table=(uint16*)
|
2007-07-02 19:45:15 +02:00
|
|
|
my_realloc((uchar*) share->decode_tables,
|
|
|
|
(uint) ((uchar*) decode_table - (uchar*) share->decode_tables),
|
2006-04-11 15:45:10 +02:00
|
|
|
MYF(MY_HOLD_ON_ERROR));
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Fix the table addresses in the tree heads. */
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2008-01-12 23:30:38 +01:00
|
|
|
my_ptrdiff_t diff= PTR_BYTE_DIFF(decode_table,share->decode_tables);
|
2006-04-11 15:45:10 +02:00
|
|
|
share->decode_tables=decode_table;
|
|
|
|
for (i=0 ; i < trees ; i++)
|
|
|
|
share->decode_trees[i].table=ADD_TO_PTR(share->decode_trees[i].table,
|
|
|
|
diff, uint16*);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fix record-ref-length for keys */
|
|
|
|
if (fix_keys)
|
|
|
|
{
|
|
|
|
for (i=0 ; i < share->base.keys ; i++)
|
|
|
|
{
|
2006-10-11 18:30:16 +02:00
|
|
|
MARIA_KEYDEF *keyinfo= &share->keyinfo[i];
|
|
|
|
keyinfo->keylength+= (uint16) diff_length;
|
|
|
|
keyinfo->minlength+= (uint16) diff_length;
|
|
|
|
keyinfo->maxlength+= (uint16) diff_length;
|
|
|
|
keyinfo->seg[keyinfo->flag & HA_FULLTEXT ?
|
|
|
|
FT_SEGS : keyinfo->keysegs].length= (uint16) rec_reflength;
|
|
|
|
}
|
|
|
|
if (share->ft2_keyinfo.seg)
|
|
|
|
{
|
|
|
|
MARIA_KEYDEF *ft2_keyinfo= &share->ft2_keyinfo;
|
|
|
|
ft2_keyinfo->keylength+= (uint16) diff_length;
|
|
|
|
ft2_keyinfo->minlength+= (uint16) diff_length;
|
|
|
|
ft2_keyinfo->maxlength+= (uint16) diff_length;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bit_buff.error || bit_buff.pos < bit_buff.end)
|
|
|
|
goto err3;
|
|
|
|
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
|
|
|
|
err3:
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(share, HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
err2:
|
2011-04-25 17:22:25 +02:00
|
|
|
my_free(share->decode_tables);
|
2006-04-11 15:45:10 +02:00
|
|
|
err1:
|
2011-04-25 17:22:25 +02:00
|
|
|
my_free(share->decode_trees);
|
2006-04-11 15:45:10 +02:00
|
|
|
err0:
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Read a huff-code-table from datafile.
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
SYNOPSIS
|
|
|
|
read_huff_table()
|
|
|
|
bit_buff Bit buffer pointing at start of the
|
|
|
|
decoding table in the file header cache.
|
|
|
|
decode_tree Pointer to the decode tree head.
|
|
|
|
decode_table IN/OUT Address of a pointer to the next free space.
|
|
|
|
intervall_buff IN/OUT Address of a pointer to the next unused values.
|
|
|
|
tmp_buff Buffer for temporary extraction of a full
|
|
|
|
decoding table as read from bit_buff.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
0 OK.
|
|
|
|
1 Error.
|
|
|
|
*/
|
2007-01-18 20:38:14 +01:00
|
|
|
static uint read_huff_table(MARIA_BIT_BUFF *bit_buff,
|
|
|
|
MARIA_DECODE_TREE *decode_tree,
|
2007-07-02 19:45:15 +02:00
|
|
|
uint16 **decode_table, uchar **intervall_buff,
|
2006-04-11 15:45:10 +02:00
|
|
|
uint16 *tmp_buff)
|
|
|
|
{
|
|
|
|
uint min_chr,elements,char_bits,offset_bits,size,intervall_length,table_bits,
|
|
|
|
next_free_offset;
|
|
|
|
uint16 *ptr,*end;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_ENTER("read_huff_table");
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
if (!get_bits(bit_buff,1))
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Byte value compression. */
|
2006-04-11 15:45:10 +02:00
|
|
|
min_chr=get_bits(bit_buff,8);
|
|
|
|
elements=get_bits(bit_buff,9);
|
|
|
|
char_bits=get_bits(bit_buff,5);
|
|
|
|
offset_bits=get_bits(bit_buff,5);
|
|
|
|
intervall_length=0;
|
|
|
|
ptr=tmp_buff;
|
2007-03-01 18:23:58 +01:00
|
|
|
ptr=tmp_buff;
|
|
|
|
DBUG_PRINT("info", ("byte value compression"));
|
2007-07-02 19:45:15 +02:00
|
|
|
DBUG_PRINT("info", ("minimum uchar value: %u", min_chr));
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("number of tree nodes: %u", elements));
|
|
|
|
DBUG_PRINT("info", ("bits for values: %u", char_bits));
|
|
|
|
DBUG_PRINT("info", ("bits for tree offsets: %u", offset_bits));
|
|
|
|
if (elements > 256)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("error", ("ERROR: illegal number of tree elements: %u",
|
|
|
|
elements));
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Distinct column value compression. */
|
2006-04-11 15:45:10 +02:00
|
|
|
min_chr=0;
|
|
|
|
elements=get_bits(bit_buff,15);
|
|
|
|
intervall_length=get_bits(bit_buff,16);
|
|
|
|
char_bits=get_bits(bit_buff,5);
|
|
|
|
offset_bits=get_bits(bit_buff,5);
|
|
|
|
decode_tree->quick_table_bits=0;
|
|
|
|
ptr= *decode_table;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("distinct column value compression"));
|
|
|
|
DBUG_PRINT("info", ("number of tree nodes: %u", elements));
|
|
|
|
DBUG_PRINT("info", ("value buffer length: %u", intervall_length));
|
|
|
|
DBUG_PRINT("info", ("bits for value index: %u", char_bits));
|
|
|
|
DBUG_PRINT("info", ("bits for tree offsets: %u", offset_bits));
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
size=elements*2-2;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("tree size in uint16: %u", size));
|
|
|
|
DBUG_PRINT("info", ("tree size in bytes: %u",
|
|
|
|
size * (uint) sizeof(uint16)));
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
for (end=ptr+size ; ptr < end ; ptr++)
|
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
2006-04-11 15:45:10 +02:00
|
|
|
*ptr= (uint16) get_bits(bit_buff,offset_bits);
|
2007-03-01 18:23:58 +01:00
|
|
|
if ((ptr + *ptr >= end) || !*ptr)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("error", ("ERROR: illegal pointer in decode tree"));
|
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
*ptr= (uint16) (IS_CHAR + (get_bits(bit_buff,char_bits) + min_chr));
|
|
|
|
}
|
|
|
|
skip_to_next_byte(bit_buff);
|
|
|
|
|
|
|
|
decode_tree->table= *decode_table;
|
|
|
|
decode_tree->intervalls= *intervall_buff;
|
|
|
|
if (! intervall_length)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Byte value compression. ptr started from tmp_buff. */
|
|
|
|
/* Find longest Huffman code from begin to end of tree in bits. */
|
|
|
|
table_bits= find_longest_bitstream(tmp_buff, ptr);
|
|
|
|
if (table_bits >= OFFSET_TABLE_SIZE)
|
|
|
|
DBUG_RETURN(1);
|
2006-04-11 15:45:10 +02:00
|
|
|
if (table_bits > maria_quick_table_bits)
|
|
|
|
table_bits=maria_quick_table_bits;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_PRINT("info", ("table bits: %u", table_bits));
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
next_free_offset= (1 << table_bits);
|
|
|
|
make_quick_table(*decode_table,tmp_buff,&next_free_offset,0,table_bits,
|
|
|
|
table_bits);
|
|
|
|
(*decode_table)+= next_free_offset;
|
|
|
|
decode_tree->quick_table_bits=table_bits;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Distinct column value compression. ptr started from *decode_table */
|
2006-04-11 15:45:10 +02:00
|
|
|
(*decode_table)=end;
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
get_bits() moves some bytes to a cache buffer in advance. May need
|
|
|
|
to step back.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
bit_buff->pos-= bit_buff->bits/8;
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Copy the distinct column values from the buffer. */
|
2006-04-11 15:45:10 +02:00
|
|
|
memcpy(*intervall_buff,bit_buff->pos,(size_t) intervall_length);
|
|
|
|
(*intervall_buff)+=intervall_length;
|
|
|
|
bit_buff->pos+=intervall_length;
|
|
|
|
bit_buff->bits=0;
|
|
|
|
}
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_RETURN(0);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Make a quick_table for faster decoding.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
make_quick_table()
|
|
|
|
to_table Target quick_table and remaining decode table.
|
|
|
|
decode_table Source Huffman (sub-)tree within tmp_buff.
|
|
|
|
next_free_offset IN/OUT Next free offset from to_table.
|
|
|
|
Starts behind quick_table on the top-level.
|
|
|
|
value Huffman bits found so far.
|
|
|
|
bits Remaining bits to be collected.
|
|
|
|
max_bits Total number of bits to collect (table_bits).
|
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
|
|
|
The quick table is an array of 16-bit values. There exists one value
|
|
|
|
for each possible code representable by max_bits (table_bits) bits.
|
|
|
|
In most cases table_bits is 9. So there are 512 16-bit values.
|
|
|
|
|
|
|
|
If the high-order bit (16) is set (IS_CHAR) then the array slot for
|
2007-07-02 19:45:15 +02:00
|
|
|
this value is a valid Huffman code for a resulting uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
The low-order 8 bits (1..8) are the resulting uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
Bits 9..14 are the length of the Huffman code for this uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
This means so many bits from the input stream were needed to
|
2007-07-02 19:45:15 +02:00
|
|
|
represent this uchar value. The remaining bits belong to later
|
2007-03-01 18:23:58 +01:00
|
|
|
Huffman codes. This also means that for every Huffman code shorter
|
|
|
|
than table_bits there are multiple entires in the array, which
|
|
|
|
differ just in the unused bits.
|
|
|
|
|
|
|
|
If the high-order bit (16) is clear (0) then the remaining bits are
|
|
|
|
the position of the remaining Huffman decode tree segment behind the
|
|
|
|
quick table.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
void
|
|
|
|
*/
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
static void make_quick_table(uint16 *to_table, uint16 *decode_table,
|
|
|
|
uint *next_free_offset, uint value, uint bits,
|
|
|
|
uint max_bits)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_ENTER("make_quick_table");
|
|
|
|
|
|
|
|
/*
|
|
|
|
When down the table to the requested maximum, copy the rest of the
|
|
|
|
Huffman table.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!bits--)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Remaining left Huffman tree segment starts behind quick table.
|
|
|
|
Remaining right Huffman tree segment starts behind left segment.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
to_table[value]= (uint16) *next_free_offset;
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Re-construct the remaining Huffman tree segment at
|
|
|
|
next_free_offset in to_table.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
*next_free_offset=copy_decode_table(to_table, *next_free_offset,
|
|
|
|
decode_table);
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_VOID_RETURN;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-03-01 18:23:58 +01:00
|
|
|
|
|
|
|
/* Descent on the left side. Left side bits are clear (0). */
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(*decode_table & IS_CHAR))
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Not a leaf. Follow the pointer. */
|
2006-04-11 15:45:10 +02:00
|
|
|
make_quick_table(to_table,decode_table+ *decode_table,
|
|
|
|
next_free_offset,value,bits,max_bits);
|
|
|
|
}
|
|
|
|
else
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
A leaf. A Huffman code is complete. Fill the quick_table
|
|
|
|
array for all possible bit strings starting with this Huffman
|
|
|
|
code.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
fill_quick_table(to_table+value,bits,max_bits,(uint) *decode_table);
|
2007-03-01 18:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Descent on the right side. Right side bits are set (1). */
|
2006-04-11 15:45:10 +02:00
|
|
|
decode_table++;
|
|
|
|
value|= (1 << bits);
|
|
|
|
if (!(*decode_table & IS_CHAR))
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Not a leaf. Follow the pointer. */
|
2006-04-11 15:45:10 +02:00
|
|
|
make_quick_table(to_table,decode_table+ *decode_table,
|
|
|
|
next_free_offset,value,bits,max_bits);
|
|
|
|
}
|
|
|
|
else
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
A leaf. A Huffman code is complete. Fill the quick_table
|
|
|
|
array for all possible bit strings starting with this Huffman
|
|
|
|
code.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
fill_quick_table(to_table+value,bits,max_bits,(uint) *decode_table);
|
2007-03-01 18:23:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
DBUG_VOID_RETURN;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Fill quick_table for all possible values starting with this Huffman code.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
fill_quick_table()
|
|
|
|
table Target quick_table position.
|
|
|
|
bits Unused bits from max_bits.
|
|
|
|
max_bits Total number of bits to collect (table_bits).
|
2007-07-02 19:45:15 +02:00
|
|
|
value The uchar encoded by the found Huffman code.
|
2007-03-01 18:23:58 +01:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
|
|
|
|
Fill the segment (all slots) of the quick_table array with the
|
|
|
|
resulting value for the found Huffman code. There are as many slots
|
|
|
|
as there are combinations representable by the unused bits.
|
|
|
|
|
|
|
|
In most cases we use 9 table bits. Assume a 3-bit Huffman code. Then
|
|
|
|
there are 6 unused bits. Hence we fill 2**6 = 64 slots with the
|
|
|
|
value.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
void
|
|
|
|
*/
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
static void fill_quick_table(uint16 *table, uint bits, uint max_bits,
|
|
|
|
uint value)
|
|
|
|
{
|
|
|
|
uint16 *end;
|
2007-03-01 18:23:58 +01:00
|
|
|
DBUG_ENTER("fill_quick_table");
|
|
|
|
|
|
|
|
/*
|
2007-07-02 19:45:15 +02:00
|
|
|
Bits 1..8 of value represent the decoded uchar value.
|
|
|
|
Bits 9..14 become the length of the Huffman code for this uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
Bit 16 flags a valid code (IS_CHAR).
|
|
|
|
*/
|
|
|
|
value|= (max_bits - bits) << 8 | IS_CHAR;
|
|
|
|
|
2008-04-01 16:57:30 +02:00
|
|
|
for (end= table + ((my_ptrdiff_t) 1 << bits); table < end; table++)
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
|
|
|
*table= (uint16) value;
|
|
|
|
}
|
|
|
|
DBUG_VOID_RETURN;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Reconstruct a decode subtree at the target position.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
copy_decode_table()
|
|
|
|
to_pos Target quick_table and remaining decode table.
|
|
|
|
offset Next free offset from to_pos.
|
|
|
|
decode_table Source Huffman subtree within tmp_buff.
|
|
|
|
|
|
|
|
NOTE
|
|
|
|
Pointers in the decode tree are relative to the pointers position.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
next free offset from to_pos.
|
|
|
|
*/
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
static uint copy_decode_table(uint16 *to_pos, uint offset,
|
|
|
|
uint16 *decode_table)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
uint prev_offset= offset;
|
|
|
|
DBUG_ENTER("copy_decode_table");
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Descent on the left side. */
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(*decode_table & IS_CHAR))
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Set a pointer to the next target node. */
|
2006-04-11 15:45:10 +02:00
|
|
|
to_pos[offset]=2;
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Copy the left hand subtree there. */
|
2006-04-11 15:45:10 +02:00
|
|
|
offset=copy_decode_table(to_pos,offset+2,decode_table+ *decode_table);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-07-02 19:45:15 +02:00
|
|
|
/* Copy the uchar value. */
|
2006-04-11 15:45:10 +02:00
|
|
|
to_pos[offset]= *decode_table;
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Step behind this node. */
|
2006-04-11 15:45:10 +02:00
|
|
|
offset+=2;
|
|
|
|
}
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Descent on the right side. */
|
|
|
|
decode_table++;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(*decode_table & IS_CHAR))
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Set a pointer to the next free target node. */
|
2006-04-11 15:45:10 +02:00
|
|
|
to_pos[prev_offset+1]=(uint16) (offset-prev_offset-1);
|
2007-03-01 18:23:58 +01:00
|
|
|
/* Copy the right hand subtree to the entry of that node. */
|
2006-04-11 15:45:10 +02:00
|
|
|
offset=copy_decode_table(to_pos,offset,decode_table+ *decode_table);
|
|
|
|
}
|
|
|
|
else
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
2007-07-02 19:45:15 +02:00
|
|
|
/* Copy the uchar value. */
|
2006-04-11 15:45:10 +02:00
|
|
|
to_pos[prev_offset+1]= *decode_table;
|
2007-03-01 18:23:58 +01:00
|
|
|
}
|
|
|
|
DBUG_RETURN(offset);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Find the length of the longest Huffman code in this table in bits.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
find_longest_bitstream()
|
|
|
|
table Code (sub-)table start.
|
|
|
|
end End of code table.
|
|
|
|
|
|
|
|
IMPLEMENTATION
|
|
|
|
|
|
|
|
Recursively follow the branch(es) of the code pair on every level of
|
2007-07-02 19:45:15 +02:00
|
|
|
the tree until two uchar values (and no branch) are found. Add one to
|
2007-03-01 18:23:58 +01:00
|
|
|
each level when returning back from each recursion stage.
|
|
|
|
|
|
|
|
'end' is used for error checking only. A clean tree terminates
|
|
|
|
before reaching 'end'. Hence the exact value of 'end' is not too
|
|
|
|
important. However having it higher than necessary could lead to
|
|
|
|
misbehaviour should 'next' jump into the dirty area.
|
|
|
|
|
|
|
|
RETURN
|
|
|
|
length Length of longest Huffman code in bits.
|
|
|
|
>= OFFSET_TABLE_SIZE Error, broken tree. It does not end before 'end'.
|
|
|
|
*/
|
|
|
|
|
2006-04-11 15:45:10 +02:00
|
|
|
static uint find_longest_bitstream(uint16 *table, uint16 *end)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
uint length=1;
|
|
|
|
uint length2;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (!(*table & IS_CHAR))
|
|
|
|
{
|
|
|
|
uint16 *next= table + *table;
|
|
|
|
if (next > end || next == table)
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
|
|
|
DBUG_PRINT("error", ("ERROR: illegal pointer in decode tree"));
|
|
|
|
return OFFSET_TABLE_SIZE;
|
|
|
|
}
|
2006-04-11 15:45:10 +02:00
|
|
|
length=find_longest_bitstream(next, end)+1;
|
|
|
|
}
|
|
|
|
table++;
|
|
|
|
if (!(*table & IS_CHAR))
|
|
|
|
{
|
|
|
|
uint16 *next= table + *table;
|
|
|
|
if (next > end || next == table)
|
2007-03-01 18:23:58 +01:00
|
|
|
{
|
|
|
|
DBUG_PRINT("error", ("ERROR: illegal pointer in decode tree"));
|
|
|
|
return OFFSET_TABLE_SIZE;
|
|
|
|
}
|
|
|
|
length2= find_longest_bitstream(next, end) + 1;
|
2013-03-25 23:03:13 +01:00
|
|
|
length=MY_MAX(length,length2);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
Read record from datafile.
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
_ma_read_pack_record()
|
|
|
|
info A pointer to MARIA_HA.
|
|
|
|
filepos File offset of the record.
|
|
|
|
buf RETURN The buffer to receive the record.
|
|
|
|
|
|
|
|
RETURN
|
2007-09-09 18:15:10 +02:00
|
|
|
0 On success
|
|
|
|
# Error number
|
2006-04-11 15:45:10 +02:00
|
|
|
*/
|
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
int _ma_read_pack_record(MARIA_HA *info, uchar *buf, MARIA_RECORD_POS filepos)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
MARIA_BLOCK_INFO block_info;
|
|
|
|
File file;
|
|
|
|
DBUG_ENTER("maria_read_pack_record");
|
|
|
|
|
|
|
|
if (filepos == HA_OFFSET_ERROR)
|
2007-09-09 18:15:10 +02:00
|
|
|
DBUG_RETURN(my_errno); /* _search() didn't find record */
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-04-04 22:37:09 +02:00
|
|
|
file= info->dfile.file;
|
2006-12-19 19:15:53 +01:00
|
|
|
if (_ma_pack_get_block_info(info, &info->bit_buff, &block_info,
|
2007-01-23 20:13:26 +01:00
|
|
|
&info->rec_buff, &info->rec_buff_size, file,
|
|
|
|
filepos))
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
2011-07-13 21:10:18 +02:00
|
|
|
if (mysql_file_read(file, info->rec_buff + block_info.offset ,
|
2006-04-11 15:45:10 +02:00
|
|
|
block_info.rec_len - block_info.offset, MYF(MY_NABP)))
|
|
|
|
goto panic;
|
|
|
|
info->update|= HA_STATE_AKTIV;
|
2006-12-19 19:15:53 +01:00
|
|
|
DBUG_RETURN(_ma_pack_rec_unpack(info,&info->bit_buff, buf,
|
|
|
|
info->rec_buff, block_info.rec_len));
|
2006-04-11 15:45:10 +02:00
|
|
|
panic:
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(info->s, HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
err:
|
2007-09-09 18:15:10 +02:00
|
|
|
DBUG_RETURN(my_errno);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-12-19 19:15:53 +01:00
|
|
|
int _ma_pack_rec_unpack(register MARIA_HA *info, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
register uchar *to, uchar *from, ulong reclength)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *end_field;
|
2006-04-11 15:45:10 +02:00
|
|
|
reg3 MARIA_COLUMNDEF *end;
|
|
|
|
MARIA_COLUMNDEF *current_field;
|
2007-12-10 01:32:00 +01:00
|
|
|
MARIA_SHARE *share= info->s;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("_ma_pack_rec_unpack");
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
if (info->s->base.null_bytes)
|
|
|
|
{
|
|
|
|
memcpy(to, from, info->s->base.null_bytes);
|
|
|
|
to+= info->s->base.null_bytes;
|
First part of redo/undo for key pages
Added key_nr to st_maria_keydef for faster keyinfo->keynr conversion
For transactional tables, shift record number in keys up with 1 bit to have place to indicate if transid follows
Checksum for MyISAM now ignores NULL and not used part of VARCHAR
Renamed some variables that caused shadow compiler warnings
Moved extra() call when waiting for tables to not be used to after tables are removed from cache.
Fixed crashing bugs when using Maria TEMPORARY tables with TRUNCATE. Removed 'hack' code in sql directory to go around this bug.
pagecache_unlock_by_ulink() now has extra argument to say if page was changed.
Give error message if we fail to open control file
Mark page cache variables as not flushable
include/maria.h:
Made min page cache larger (needed for pinning key page)
Added key_nr to st_maria_keydef for faster keyinfo->keynr conversion
Added write_comp_flag to move some runtime code to maria_open()
include/my_base.h:
Added new error message to be used when handler initialization failed
include/my_global.h:
Renamed dummy to swap_dummy to avoid conflicts with local 'dummy' variables
include/my_handler.h:
Added const to some parameters
mysys/array.c:
More DBUG
mysys/my_error.c:
Fixed indentation
mysys/my_handler.c:
Added const to some parameters
Added missing error messages
sql/field.h:
Renamed variables to avoid variable shadowing
sql/handler.h:
Renamed parameter to avoid variable name conflict
sql/item.h:
Renamed variables to avoid variable shadowing
sql/log_event_old.h:
Renamed variables to avoid variable shadowing
sql/set_var.h:
Renamed variables to avoid variable shadowing
sql/sql_delete.cc:
Removed maria hack for temporary tables
Fixed indentation
sql/sql_table.cc:
Moved extra() call when waiting for tables to not be used to after tables are removed from cache.
This was needed to ensure we don't do a PREPARE_FOR_DROP or similar call while the table is still in use.
sql/table.cc:
Copy page_checksum from share
Removed Maria hack
storage/maria/Makefile.am:
Added new files
storage/maria/ha_maria.cc:
Renamed records -> record_count and info -> create_info to avoid variable name conflicts
Mark page cache variables as not flushable
storage/maria/ma_blockrec.c:
Moved _ma_unpin_all_pages() to ma_key_recover.c
Moved init of info->pinned_pages to ma_open.c
Moved _ma_finalize_row() to maria_key_recover.h
Renamed some variables to avoid variable name conflicts
Mark page_link.changed for blocks we change directly
Simplify handling of undo link when writing LOGREC_UNDO_ROW_INSERT (old code crashed when having redo for index)
storage/maria/ma_blockrec.h:
Removed extra empty line
storage/maria/ma_checkpoint.c:
Remove not needed trnman.h
storage/maria/ma_close.c:
Free pinned pages (which are now always allocated)
storage/maria/ma_control_file.c:
Give error message if we fail to open control file
storage/maria/ma_delete.c:
Changes for redo logging (first part, logging of underflow not yet done)
- Log undo-key-delete
- Log delete of key
- Updated arguments to _ma_fetch_keypage(), _ma_dispose(), _ma_write_keypage(), _ma_insert()
- Added new arguments to some functions to be able to write redo information
- Mark key pages as changed when we write with PAGECACHE_LOCK_LEFT_WRITELOCKED
Remove one not needed _ma_write_keypage() in d_search() when upper level will do the write anyway
Changed 2 bmove_upp() to bmove() as this made code easer to understand
More function comments
Indentation fixes
storage/maria/ma_ft_update.c:
New arguments to _ma_write_keypage()
storage/maria/ma_loghandler.c:
Fixed some DBUG_PRINT messages
Simplify code
Added new log entrys for key page redo
Renamed some variables to avoid variable name shadowing
storage/maria/ma_loghandler.h:
Moved some defines here
Added define for storing key number on key pages
Added new translog record types
Added enum for type of operations in LOGREC_REDO_INDEX
storage/maria/ma_open.c:
Always allocate info.pinned_pages (we need now also for normal key page usage)
Update keyinfo->key_nr
Added virtual functions to convert record position o number to be stored on key pages
Update keyinfo->write_comp_flag to value of search flag to be used when writing key
storage/maria/ma_page.c:
Added redo for key pages
- Extended _ma_fetch_keypage() with type of lock to put on page and address to used MARIA_PINNED_PAGE
- _ma_fetch_keypage() now pin's pages if needed
- Extended _ma_write_keypage() with type of locks to be used
- ma_dispose() now locks info->s->state.key_del from other threads
- ma_dispose() writes redo log record
- ma_new() locks info->s->state.key_del from other threads if it was used
- ma_new() now pins read page
Other things:
- Removed some not needed arguments from _ma_new() and _ma_dispose)
- Added some new variables to simplify code
- If EXTRA_DEBUG is used, do crc on full page to catch not unitialized bytes
storage/maria/ma_pagecache.h:
Applied patch from Sanja to add extra argument to pagecache_unlock_by_ulink() to mark if page was changed
Added some defines for pagecache priority levels that one can use
storage/maria/ma_range.c:
Added new arguments for call to _ma_fetch_keypage()
storage/maria/ma_recovery.c:
- Added hooks for new translog types:
REDO_INDEX, REDO_INDEX_NEW_PAGE, REDO_INDEX_FREE_PAGE, UNDO_KEY_INSERT, UNDO_KEY_DELETE and
UNDO_KEY_DELETE_WITH_ROOT.
- Moved variable declarations to start of function (portability fixes)
- Removed some not needed initializations
- Set only relevant state changes for each redo/undo entry
storage/maria/lockman.c:
Removed end space
storage/maria/ma_check.c:
Removed end space
storage/maria/ma_create.c:
Removed end space
storage/maria/ma_locking.c:
Removed end space
storage/maria/ma_packrec.c:
Removed end space
storage/maria/ma_pagecache.c:
Removed end space
storage/maria/ma_panic.c:
Removed end space
storage/maria/ma_rt_index.c:
Added new arguments for call to _ma_fetch_keypage(), _ma_write_keypage(), _ma_dispose() and _ma_new()
Fixed indentation
storage/maria/ma_rt_key.c:
Added new arguments for call to _ma_fetch_keypage()
storage/maria/ma_rt_split.c:
Added new arguments for call to _ma_new()
Use new keypage header
Added new arguments for call to _ma_write_keypage()
storage/maria/ma_search.c:
Updated comments & indentation
Added new arguments for call to _ma_fetch_keypage()
Made some variables and arguments const
Added virtual functions for converting row position to number to be stored in key
use MARIA_RECORD_POS of record position instead of my_off_t
Record in MARIA_KEY_PARAM how page was changed one key insert (needed for REDO)
storage/maria/ma_sort.c:
Removed end space
storage/maria/ma_statrec.c:
Updated arguments for call to _ma_rec_pos()
storage/maria/ma_test1.c:
Fixed too small buffer to init_pagecache()
Fixed bug when using insert_count and test_flag
storage/maria/ma_test2.c:
Use more resonable pagecache size
Remove not used code
Reset blob_length to fix wrong output message
storage/maria/ma_test_all.sh:
Fixed wrong test
storage/maria/ma_write.c:
Lots of new code to handle REDO of key pages
No logic changes because of REDO code, mostly adding new arguments and adding new code for logging
Added new arguments for calls to _ma_fetch_keypage(), _ma_write_keypage() and similar functions
Move setting of comp_flag in ma_ck_wrte_btree() from runtime to maria_open()
Zerofill new used pages for:
- To remove possible sensitive data left in buffer
- To get idenitical data on pages after running redo
- Better compression of pages if archived
storage/maria/maria_chk.c:
Added information if table is crash safe
storage/maria/maria_def.h:
New virtual function to convert between record position on key and normal record position
Aded mutex and extra variables to handle locking of share->state.key_del
Moved some structure variables to get things more aligned
Added extra arguments to MARIA_KEY_PARAM to be able to remember what was changed on key page on key insert
Added argument to MARIA_PINNED_PAGE to indicate if page was changed
Updated prototypes for functions
Added some structures for signaling changes in REDO handling
storage/maria/unittest/ma_pagecache_single.c:
Updated arguments for changed function calls
storage/myisam/mi_check.c:
Made calc_check_checksum virtual
storage/myisam/mi_checksum.c:
Update checksums to ignore null columns
storage/myisam/mi_create.c:
Mark if table has null column (to know when we have to use mi_checksum())
storage/myisam/mi_open.c:
Added virtual function for calculating checksum to be able to easily ignore NULL fields
storage/myisam/mi_test2.c:
Fixed bug
storage/myisam/myisamdef.h:
Added virtual function for calculating checksum during check table
Removed ha_key_cmp() as this is in handler.h
storage/maria/ma_key_recover.c:
New BitKeeper file ``storage/maria/ma_key_recover.c''
storage/maria/ma_key_recover.h:
New BitKeeper file ``storage/maria/ma_key_recover.h''
storage/maria/ma_key_redo.c:
New BitKeeper file ``storage/maria/ma_key_redo.c''
2007-11-14 18:08:06 +01:00
|
|
|
from+= info->s->base.null_bytes;
|
2007-01-18 20:38:14 +01:00
|
|
|
reclength-= info->s->base.null_bytes;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
init_bit_buffer(bit_buff, from, reclength);
|
2007-04-19 12:18:56 +02:00
|
|
|
for (current_field=share->columndef, end=current_field+share->base.fields ;
|
2006-04-11 15:45:10 +02:00
|
|
|
current_field < end ;
|
|
|
|
current_field++,to=end_field)
|
|
|
|
{
|
|
|
|
end_field=to+current_field->length;
|
2007-01-23 20:13:26 +01:00
|
|
|
(*current_field->unpack)(current_field, bit_buff, to, end_field);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2006-12-19 19:15:53 +01:00
|
|
|
if (!bit_buff->error &&
|
|
|
|
bit_buff->pos - bit_buff->bits / 8 == bit_buff->end)
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_RETURN(0);
|
|
|
|
info->update&= ~HA_STATE_AKTIV;
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(share, HA_ERR_WRONG_IN_RECORD);
|
|
|
|
DBUG_RETURN(HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
} /* _ma_pack_rec_unpack */
|
|
|
|
|
|
|
|
|
|
|
|
/* Return function to unpack field */
|
|
|
|
|
|
|
|
static void (*get_unpack_function(MARIA_COLUMNDEF *rec))
|
2007-07-02 19:45:15 +02:00
|
|
|
(MARIA_COLUMNDEF *, MARIA_BIT_BUFF *, uchar *, uchar *)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
switch (rec->base_type) {
|
|
|
|
case FIELD_SKIP_ZERO:
|
|
|
|
if (rec->pack_type & PACK_TYPE_ZERO_FILL)
|
|
|
|
return &uf_zerofill_skip_zero;
|
|
|
|
return &uf_skip_zero;
|
|
|
|
case FIELD_NORMAL:
|
|
|
|
if (rec->pack_type & PACK_TYPE_SPACE_FIELDS)
|
|
|
|
return &uf_space_normal;
|
|
|
|
if (rec->pack_type & PACK_TYPE_ZERO_FILL)
|
|
|
|
return &uf_zerofill_normal;
|
|
|
|
return &decode_bytes;
|
|
|
|
case FIELD_SKIP_ENDSPACE:
|
|
|
|
if (rec->pack_type & PACK_TYPE_SPACE_FIELDS)
|
|
|
|
{
|
|
|
|
if (rec->pack_type & PACK_TYPE_SELECTED)
|
|
|
|
return &uf_space_endspace_selected;
|
|
|
|
return &uf_space_endspace;
|
|
|
|
}
|
|
|
|
if (rec->pack_type & PACK_TYPE_SELECTED)
|
|
|
|
return &uf_endspace_selected;
|
|
|
|
return &uf_endspace;
|
|
|
|
case FIELD_SKIP_PRESPACE:
|
|
|
|
if (rec->pack_type & PACK_TYPE_SPACE_FIELDS)
|
|
|
|
{
|
|
|
|
if (rec->pack_type & PACK_TYPE_SELECTED)
|
|
|
|
return &uf_space_prespace_selected;
|
|
|
|
return &uf_space_prespace;
|
|
|
|
}
|
|
|
|
if (rec->pack_type & PACK_TYPE_SELECTED)
|
|
|
|
return &uf_prespace_selected;
|
|
|
|
return &uf_prespace;
|
|
|
|
case FIELD_CONSTANT:
|
|
|
|
return &uf_constant;
|
|
|
|
case FIELD_INTERVALL:
|
|
|
|
return &uf_intervall;
|
|
|
|
case FIELD_ZERO:
|
|
|
|
case FIELD_CHECK:
|
|
|
|
return &uf_zero;
|
|
|
|
case FIELD_BLOB:
|
|
|
|
return &uf_blob;
|
|
|
|
case FIELD_VARCHAR:
|
2007-07-02 19:45:15 +02:00
|
|
|
if (rec->length <= 256) /* 255 + 1 uchar length */
|
2006-04-11 15:45:10 +02:00
|
|
|
return &uf_varchar1;
|
|
|
|
return &uf_varchar2;
|
|
|
|
case FIELD_LAST:
|
|
|
|
default:
|
|
|
|
return 0; /* This should never happend */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The different functions to unpack a field */
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_zerofill_skip_zero(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
bzero((char*) to,(uint) (end-to));
|
|
|
|
else
|
|
|
|
{
|
|
|
|
end-=rec->space_length_bits;
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
bzero((char*) end,rec->space_length_bits);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_skip_zero(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
bzero((char*) to,(uint) (end-to));
|
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_normal(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, (end-to), ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_endspace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, (end-to), ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to,end-spaces);
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(end - spaces, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_endspace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to,end-spaces);
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(end - spaces, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_endspace(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, (end-to), ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to,end-spaces);
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(end - spaces, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_endspace(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to,end-spaces);
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(end - spaces, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_prespace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, (end-to), ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to+spaces,end);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_prespace_selected(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to+spaces,end);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
decode_bytes(rec,bit_buff,to,end);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_space_prespace(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if (get_bit(bit_buff))
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, (end-to), ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to+spaces,end);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_prespace(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint spaces;
|
|
|
|
if ((spaces=get_bits(bit_buff,rec->space_length_bits))+to > end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
bfill(to, spaces, ' ');
|
2006-04-11 15:45:10 +02:00
|
|
|
if (to+spaces != end)
|
|
|
|
decode_bytes(rec,bit_buff,to+spaces,end);
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_zerofill_normal(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
end-=rec->space_length_bits;
|
2007-01-18 20:38:14 +01:00
|
|
|
decode_bytes(rec,bit_buff, to, end);
|
2006-04-11 15:45:10 +02:00
|
|
|
bzero((char*) end,rec->space_length_bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void uf_constant(MARIA_COLUMNDEF *rec,
|
|
|
|
MARIA_BIT_BUFF *bit_buff __attribute__((unused)),
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
memcpy(to,rec->huff_tree->intervalls,(size_t) (end-to));
|
|
|
|
}
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void uf_intervall(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to,
|
|
|
|
uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
reg1 uint field_length=(uint) (end-to);
|
|
|
|
memcpy(to,rec->huff_tree->intervalls+field_length*decode_pos(bit_buff,
|
|
|
|
rec->huff_tree),
|
|
|
|
(size_t) field_length);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
|
|
|
static void uf_zero(MARIA_COLUMNDEF *rec __attribute__((unused)),
|
|
|
|
MARIA_BIT_BUFF *bit_buff __attribute__((unused)),
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
bzero(to, (uint) (end-to));
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void uf_blob(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
2007-01-18 20:38:14 +01:00
|
|
|
bzero(to, (uint) (end-to));
|
2006-04-11 15:45:10 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
ulong length=get_bits(bit_buff,rec->space_length_bits);
|
2007-04-19 12:18:56 +02:00
|
|
|
uint pack_length=(uint) (end-to)-portable_sizeof_char_ptr;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (bit_buff->blob_pos+length > bit_buff->blob_end)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
2009-01-09 05:23:25 +01:00
|
|
|
bzero(to, (end-to));
|
2006-04-11 15:45:10 +02:00
|
|
|
return;
|
|
|
|
}
|
2009-01-09 05:23:25 +01:00
|
|
|
decode_bytes(rec, bit_buff, bit_buff->blob_pos,
|
|
|
|
bit_buff->blob_pos + length);
|
|
|
|
_ma_store_blob_length(to, pack_length, length);
|
2011-04-25 17:22:25 +02:00
|
|
|
memcpy(to+pack_length, &bit_buff->blob_pos, sizeof(uchar*));
|
2006-04-11 15:45:10 +02:00
|
|
|
bit_buff->blob_pos+=length;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void uf_varchar1(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end __attribute__((unused)))
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
to[0]= 0; /* Zero lengths */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ulong length=get_bits(bit_buff,rec->space_length_bits);
|
2007-01-18 20:38:14 +01:00
|
|
|
*to= (char) length;
|
2006-04-11 15:45:10 +02:00
|
|
|
decode_bytes(rec,bit_buff,to+1,to+1+length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void uf_varchar2(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end __attribute__((unused)))
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
to[0]=to[1]=0; /* Zero lengths */
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ulong length=get_bits(bit_buff,rec->space_length_bits);
|
|
|
|
int2store(to,length);
|
|
|
|
decode_bytes(rec,bit_buff,to+2,to+2+length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Functions to decode of buffer of bits */
|
|
|
|
|
|
|
|
#if BITS_SAVED == 64
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void decode_bytes(MARIA_COLUMNDEF *rec,MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
reg1 uint bits,low_byte;
|
|
|
|
reg3 uint16 *pos;
|
|
|
|
reg4 uint table_bits,table_and;
|
|
|
|
MARIA_DECODE_TREE *decode_tree;
|
|
|
|
|
|
|
|
decode_tree=rec->decode_tree;
|
|
|
|
bits=bit_buff->bits; /* Save in reg for quicker access */
|
|
|
|
table_bits=decode_tree->quick_table_bits;
|
|
|
|
table_and= (1 << table_bits)-1;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (bits <= 32)
|
|
|
|
{
|
|
|
|
if (bit_buff->pos > bit_buff->end+4)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return; /* Can't be right */
|
|
|
|
}
|
|
|
|
bit_buff->current_byte= (bit_buff->current_byte << 32) +
|
|
|
|
((((uint) bit_buff->pos[3])) +
|
|
|
|
(((uint) bit_buff->pos[2]) << 8) +
|
|
|
|
(((uint) bit_buff->pos[1]) << 16) +
|
|
|
|
(((uint) bit_buff->pos[0]) << 24));
|
|
|
|
bit_buff->pos+=4;
|
|
|
|
bits+=32;
|
|
|
|
}
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
First use info in quick_table.
|
|
|
|
|
|
|
|
The quick table is an array of 16-bit values. There exists one
|
|
|
|
value for each possible code representable by table_bits bits.
|
|
|
|
In most cases table_bits is 9. So there are 512 16-bit values.
|
|
|
|
|
|
|
|
If the high-order bit (16) is set (IS_CHAR) then the array slot
|
2007-07-02 19:45:15 +02:00
|
|
|
for this value is a valid Huffman code for a resulting uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
The low-order 8 bits (1..8) are the resulting uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
Bits 9..14 are the length of the Huffman code for this uchar value.
|
2007-03-01 18:23:58 +01:00
|
|
|
This means so many bits from the input stream were needed to
|
2007-07-02 19:45:15 +02:00
|
|
|
represent this uchar value. The remaining bits belong to later
|
2007-03-01 18:23:58 +01:00
|
|
|
Huffman codes. This also means that for every Huffman code shorter
|
|
|
|
than table_bits there are multiple entires in the array, which
|
|
|
|
differ just in the unused bits.
|
|
|
|
|
|
|
|
If the high-order bit (16) is clear (0) then the remaining bits are
|
|
|
|
the position of the remaining Huffman decode tree segment behind the
|
|
|
|
quick table.
|
|
|
|
*/
|
2006-04-11 15:45:10 +02:00
|
|
|
low_byte=(uint) (bit_buff->current_byte >> (bits - table_bits)) & table_and;
|
|
|
|
low_byte=decode_tree->table[low_byte];
|
|
|
|
if (low_byte & IS_CHAR)
|
|
|
|
{
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
All Huffman codes of less or equal table_bits length are in the
|
|
|
|
quick table. This is one of them.
|
|
|
|
*/
|
2007-01-18 20:38:14 +01:00
|
|
|
*to++ = (char) (low_byte & 255); /* Found char in quick table */
|
2006-04-11 15:45:10 +02:00
|
|
|
bits-= ((low_byte >> 8) & 31); /* Remove bits used */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* Map through rest of decode-table */
|
2007-03-01 18:23:58 +01:00
|
|
|
/* This means that the Huffman code must be longer than table_bits. */
|
2006-04-11 15:45:10 +02:00
|
|
|
pos=decode_tree->table+low_byte;
|
|
|
|
bits-=table_bits;
|
2016-03-04 01:09:37 +01:00
|
|
|
/* NOTE: decode_bytes_test_bit() is a macro which contains a break !!! */
|
2006-04-11 15:45:10 +02:00
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
low_byte=(uint) (bit_buff->current_byte >> (bits-8));
|
|
|
|
decode_bytes_test_bit(0);
|
|
|
|
decode_bytes_test_bit(1);
|
|
|
|
decode_bytes_test_bit(2);
|
|
|
|
decode_bytes_test_bit(3);
|
|
|
|
decode_bytes_test_bit(4);
|
|
|
|
decode_bytes_test_bit(5);
|
|
|
|
decode_bytes_test_bit(6);
|
|
|
|
decode_bytes_test_bit(7);
|
|
|
|
bits-=8;
|
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
*to++ = (char) *pos;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
} while (to != end);
|
|
|
|
|
|
|
|
bit_buff->bits=bits;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void decode_bytes(MARIA_COLUMNDEF *rec, MARIA_BIT_BUFF *bit_buff,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *to, uchar *end)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
reg1 uint bits,low_byte;
|
|
|
|
reg3 uint16 *pos;
|
|
|
|
reg4 uint table_bits,table_and;
|
|
|
|
MARIA_DECODE_TREE *decode_tree;
|
|
|
|
|
|
|
|
decode_tree=rec->huff_tree;
|
|
|
|
bits=bit_buff->bits; /* Save in reg for quicker access */
|
|
|
|
table_bits=decode_tree->quick_table_bits;
|
|
|
|
table_and= (1 << table_bits)-1;
|
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if (bits < table_bits)
|
|
|
|
{
|
|
|
|
if (bit_buff->pos > bit_buff->end+1)
|
|
|
|
{
|
|
|
|
bit_buff->error=1;
|
|
|
|
return; /* Can't be right */
|
|
|
|
}
|
|
|
|
#if BITS_SAVED == 32
|
|
|
|
bit_buff->current_byte= (bit_buff->current_byte << 24) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[2]))) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[1])) << 8) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[0])) << 16);
|
|
|
|
bit_buff->pos+=3;
|
|
|
|
bits+=24;
|
|
|
|
#else
|
|
|
|
if (bits) /* We must have at leasts 9 bits */
|
|
|
|
{
|
|
|
|
bit_buff->current_byte= (bit_buff->current_byte << 8) +
|
|
|
|
(uint) ((uchar) bit_buff->pos[0]);
|
|
|
|
bit_buff->pos++;
|
|
|
|
bits+=8;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bit_buff->current_byte= ((uint) ((uchar) bit_buff->pos[0]) << 8) +
|
|
|
|
((uint) ((uchar) bit_buff->pos[1]));
|
|
|
|
bit_buff->pos+=2;
|
|
|
|
bits+=16;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
/* First use info in quick_table */
|
|
|
|
low_byte=(bit_buff->current_byte >> (bits - table_bits)) & table_and;
|
|
|
|
low_byte=decode_tree->table[low_byte];
|
|
|
|
if (low_byte & IS_CHAR)
|
|
|
|
{
|
|
|
|
*to++ = (low_byte & 255); /* Found char in quick table */
|
|
|
|
bits-= ((low_byte >> 8) & 31); /* Remove bits used */
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ /* Map through rest of decode-table */
|
|
|
|
pos=decode_tree->table+low_byte;
|
|
|
|
bits-=table_bits;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (bits < 8)
|
|
|
|
{ /* We don't need to check end */
|
|
|
|
#if BITS_SAVED == 32
|
|
|
|
bit_buff->current_byte= (bit_buff->current_byte << 24) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[2]))) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[1])) << 8) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[0])) << 16);
|
|
|
|
bit_buff->pos+=3;
|
|
|
|
bits+=24;
|
|
|
|
#else
|
|
|
|
bit_buff->current_byte= (bit_buff->current_byte << 8) +
|
|
|
|
(uint) ((uchar) bit_buff->pos[0]);
|
|
|
|
bit_buff->pos+=1;
|
|
|
|
bits+=8;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
low_byte=(uint) (bit_buff->current_byte >> (bits-8));
|
|
|
|
decode_bytes_test_bit(0);
|
|
|
|
decode_bytes_test_bit(1);
|
|
|
|
decode_bytes_test_bit(2);
|
|
|
|
decode_bytes_test_bit(3);
|
|
|
|
decode_bytes_test_bit(4);
|
|
|
|
decode_bytes_test_bit(5);
|
|
|
|
decode_bytes_test_bit(6);
|
|
|
|
decode_bytes_test_bit(7);
|
|
|
|
bits-=8;
|
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
*to++ = (char) *pos;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
} while (to != end);
|
|
|
|
|
|
|
|
bit_buff->bits=bits;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif /* BIT_SAVED == 64 */
|
|
|
|
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static uint decode_pos(MARIA_BIT_BUFF *bit_buff,
|
|
|
|
MARIA_DECODE_TREE *decode_tree)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
uint16 *pos=decode_tree->table;
|
|
|
|
for (;;)
|
|
|
|
{
|
|
|
|
if (get_bit(bit_buff))
|
|
|
|
pos++;
|
|
|
|
if (*pos & IS_CHAR)
|
|
|
|
return (uint) (*pos & ~IS_CHAR);
|
|
|
|
pos+= *pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
int _ma_read_rnd_pack_record(MARIA_HA *info,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *buf,
|
2007-01-18 20:38:14 +01:00
|
|
|
register MARIA_RECORD_POS filepos,
|
2006-04-11 15:45:10 +02:00
|
|
|
my_bool skip_deleted_blocks)
|
|
|
|
{
|
2007-01-23 20:13:26 +01:00
|
|
|
File file;
|
2006-04-11 15:45:10 +02:00
|
|
|
MARIA_BLOCK_INFO block_info;
|
2007-12-10 01:32:00 +01:00
|
|
|
MARIA_SHARE *share= info->s;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("_ma_read_rnd_pack_record");
|
|
|
|
|
|
|
|
if (filepos >= info->state->data_file_length)
|
|
|
|
{
|
|
|
|
my_errno= HA_ERR_END_OF_FILE;
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2007-04-04 22:37:09 +02:00
|
|
|
file= info->dfile.file;
|
2006-04-11 15:45:10 +02:00
|
|
|
if (info->opt_flag & READ_CACHE_USED)
|
|
|
|
{
|
2011-01-26 14:29:36 +01:00
|
|
|
if (_ma_read_cache(info, &info->rec_cache, block_info.header,
|
2006-12-19 19:15:53 +01:00
|
|
|
filepos, share->pack.ref_length,
|
|
|
|
skip_deleted_blocks ? READING_NEXT : 0))
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
2007-01-23 20:13:26 +01:00
|
|
|
file= -1;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
2007-01-23 20:13:26 +01:00
|
|
|
if (_ma_pack_get_block_info(info, &info->bit_buff, &block_info,
|
|
|
|
&info->rec_buff, &info->rec_buff_size,
|
|
|
|
file, filepos))
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err; /* Error code is already set */
|
|
|
|
#ifndef DBUG_OFF
|
|
|
|
if (block_info.rec_len > share->max_pack_length)
|
|
|
|
{
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(share, HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (info->opt_flag & READ_CACHE_USED)
|
|
|
|
{
|
2011-01-26 14:29:36 +01:00
|
|
|
if (_ma_read_cache(info, &info->rec_cache, info->rec_buff,
|
2006-12-19 19:15:53 +01:00
|
|
|
block_info.filepos, block_info.rec_len,
|
|
|
|
skip_deleted_blocks ? READING_NEXT : 0))
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-07-13 21:10:18 +02:00
|
|
|
if (mysql_file_read(info->dfile.file, info->rec_buff + block_info.offset,
|
2006-04-11 15:45:10 +02:00
|
|
|
block_info.rec_len-block_info.offset,
|
|
|
|
MYF(MY_NABP)))
|
|
|
|
goto err;
|
|
|
|
}
|
2007-01-18 20:38:14 +01:00
|
|
|
info->packed_length= block_info.rec_len;
|
|
|
|
info->cur_row.lastpos= filepos;
|
|
|
|
info->cur_row.nextpos= block_info.filepos+block_info.rec_len;
|
2006-04-11 15:45:10 +02:00
|
|
|
info->update|= HA_STATE_AKTIV | HA_STATE_KEY_CHANGED;
|
|
|
|
|
2006-12-19 19:15:53 +01:00
|
|
|
DBUG_RETURN (_ma_pack_rec_unpack(info, &info->bit_buff, buf,
|
|
|
|
info->rec_buff, block_info.rec_len));
|
2006-04-11 15:45:10 +02:00
|
|
|
err:
|
|
|
|
DBUG_RETURN(my_errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* Read and process header from a huff-record-file */
|
|
|
|
|
2006-12-19 19:15:53 +01:00
|
|
|
uint _ma_pack_get_block_info(MARIA_HA *maria, MARIA_BIT_BUFF *bit_buff,
|
2007-01-23 20:13:26 +01:00
|
|
|
MARIA_BLOCK_INFO *info,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar **rec_buff_p, size_t *rec_buff_size_p,
|
2006-12-19 19:15:53 +01:00
|
|
|
File file, my_off_t filepos)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2007-01-18 20:38:14 +01:00
|
|
|
uchar *header= info->header;
|
2011-10-29 20:40:03 +02:00
|
|
|
uint head_length,UNINIT_VAR(ref_length);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
if (file >= 0)
|
|
|
|
{
|
|
|
|
ref_length=maria->s->pack.ref_length;
|
|
|
|
/*
|
2007-06-07 00:01:43 +02:00
|
|
|
We can't use my_pread() here because _ma_read_rnd_pack_record assumes
|
2006-04-11 15:45:10 +02:00
|
|
|
position is ok
|
|
|
|
*/
|
2011-07-13 21:10:18 +02:00
|
|
|
mysql_file_seek(file,filepos,MY_SEEK_SET,MYF(0));
|
|
|
|
if (mysql_file_read(file, header,ref_length,MYF(MY_NABP)))
|
2006-04-11 15:45:10 +02:00
|
|
|
return BLOCK_FATAL_ERROR;
|
2009-01-09 05:23:25 +01:00
|
|
|
DBUG_DUMP("header", header, ref_length);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
head_length= read_pack_length((uint) maria->s->pack.version, header,
|
|
|
|
&info->rec_len);
|
|
|
|
if (maria->s->base.blobs)
|
|
|
|
{
|
|
|
|
head_length+= read_pack_length((uint) maria->s->pack.version,
|
|
|
|
header + head_length, &info->blob_len);
|
2007-03-01 18:23:58 +01:00
|
|
|
/*
|
|
|
|
Ensure that the record buffer is big enough for the compressed
|
|
|
|
record plus all expanded blobs. [We do not have an extra buffer
|
|
|
|
for the resulting blobs. Sigh.]
|
|
|
|
*/
|
2007-01-23 20:13:26 +01:00
|
|
|
if (_ma_alloc_buffer(rec_buff_p, rec_buff_size_p,
|
2007-01-18 20:38:14 +01:00
|
|
|
info->rec_len + info->blob_len +
|
|
|
|
maria->s->base.extra_rec_buff_size))
|
2006-04-11 15:45:10 +02:00
|
|
|
return BLOCK_FATAL_ERROR; /* not enough memory */
|
2009-01-09 05:23:25 +01:00
|
|
|
bit_buff->blob_pos= *rec_buff_p + info->rec_len;
|
2006-12-19 19:15:53 +01:00
|
|
|
bit_buff->blob_end= bit_buff->blob_pos + info->blob_len;
|
2006-04-11 15:45:10 +02:00
|
|
|
maria->blob_length=info->blob_len;
|
|
|
|
}
|
|
|
|
info->filepos=filepos+head_length;
|
2017-05-17 15:16:24 +02:00
|
|
|
if (file >= 0)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
2013-03-25 23:03:13 +01:00
|
|
|
info->offset=MY_MIN(info->rec_len, ref_length - head_length);
|
2006-12-19 19:15:53 +01:00
|
|
|
memcpy(*rec_buff_p, header + head_length, info->offset);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* rutines for bit buffer */
|
2007-07-02 19:45:15 +02:00
|
|
|
/* Note buffer must be 6 uchar bigger than longest row */
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-01-18 20:38:14 +01:00
|
|
|
static void init_bit_buffer(MARIA_BIT_BUFF *bit_buff, uchar *buffer,
|
|
|
|
uint length)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
bit_buff->pos=buffer;
|
|
|
|
bit_buff->end=buffer+length;
|
|
|
|
bit_buff->bits=bit_buff->error=0;
|
|
|
|
bit_buff->current_byte=0; /* Avoid purify errors */
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint fill_and_get_bits(MARIA_BIT_BUFF *bit_buff, uint count)
|
|
|
|
{
|
|
|
|
uint tmp;
|
|
|
|
count-=bit_buff->bits;
|
|
|
|
tmp=(bit_buff->current_byte & mask[bit_buff->bits]) << count;
|
|
|
|
fill_buffer(bit_buff);
|
|
|
|
bit_buff->bits=BITS_SAVED - count;
|
|
|
|
return tmp+(bit_buff->current_byte >> (BITS_SAVED - count));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Fill in empty bit_buff->current_byte from buffer */
|
|
|
|
/* Sets bit_buff->error if buffer is exhausted */
|
|
|
|
|
|
|
|
static void fill_buffer(MARIA_BIT_BUFF *bit_buff)
|
|
|
|
{
|
|
|
|
if (bit_buff->pos >= bit_buff->end)
|
|
|
|
{
|
|
|
|
bit_buff->error= 1;
|
|
|
|
bit_buff->current_byte=0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#if BITS_SAVED == 64
|
|
|
|
bit_buff->current_byte= ((((uint) ((uchar) bit_buff->pos[7]))) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[6])) << 8) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[5])) << 16) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[4])) << 24) +
|
|
|
|
((ulonglong)
|
|
|
|
((((uint) ((uchar) bit_buff->pos[3]))) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[2])) << 8) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[1])) << 16) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[0])) << 24)) << 32));
|
|
|
|
bit_buff->pos+=8;
|
|
|
|
#else
|
|
|
|
#if BITS_SAVED == 32
|
|
|
|
bit_buff->current_byte= (((uint) ((uchar) bit_buff->pos[3])) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[2])) << 8) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[1])) << 16) +
|
|
|
|
(((uint) ((uchar) bit_buff->pos[0])) << 24));
|
|
|
|
bit_buff->pos+=4;
|
|
|
|
#else
|
|
|
|
bit_buff->current_byte= (uint) (((uint) ((uchar) bit_buff->pos[1]))+
|
|
|
|
(((uint) ((uchar) bit_buff->pos[0])) << 8));
|
|
|
|
bit_buff->pos+=2;
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get number of bits neaded to represent value */
|
|
|
|
|
|
|
|
static uint max_bit(register uint value)
|
|
|
|
{
|
|
|
|
reg2 uint power=1;
|
|
|
|
|
|
|
|
while ((value>>=1))
|
|
|
|
power++;
|
|
|
|
return (power);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************
|
|
|
|
Some redefined functions to handle files when we are using memmap
|
|
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_SYS_MMAN_H
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_MMAP
|
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
static int _ma_read_mempack_record(MARIA_HA *info, uchar *buf,
|
2007-01-18 20:38:14 +01:00
|
|
|
MARIA_RECORD_POS filepos);
|
2007-07-02 19:45:15 +02:00
|
|
|
static int _ma_read_rnd_mempack_record(MARIA_HA*, uchar *, MARIA_RECORD_POS,
|
2007-01-18 20:38:14 +01:00
|
|
|
my_bool);
|
2006-04-11 15:45:10 +02:00
|
|
|
|
|
|
|
my_bool _ma_memmap_file(MARIA_HA *info)
|
|
|
|
{
|
2007-12-10 01:32:00 +01:00
|
|
|
MARIA_SHARE *share= info->s;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("maria_memmap_file");
|
|
|
|
|
|
|
|
if (!info->s->file_map)
|
|
|
|
{
|
2011-07-13 21:10:18 +02:00
|
|
|
if (mysql_file_seek(info->dfile.file, 0L, MY_SEEK_END, MYF(0)) <
|
2006-04-11 15:45:10 +02:00
|
|
|
share->state.state.data_file_length+MEMMAP_EXTRA_MARGIN)
|
|
|
|
{
|
|
|
|
DBUG_PRINT("warning",("File isn't extended for memmap"));
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
if (_ma_dynmap_file(info, share->state.state.data_file_length))
|
|
|
|
DBUG_RETURN(0);
|
|
|
|
}
|
|
|
|
info->opt_flag|= MEMMAP_USED;
|
|
|
|
info->read_record= share->read_record= _ma_read_mempack_record;
|
2007-01-18 20:38:14 +01:00
|
|
|
share->scan= _ma_read_rnd_mempack_record;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_RETURN(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void _ma_unmap_file(MARIA_HA *info)
|
|
|
|
{
|
2011-04-25 17:22:25 +02:00
|
|
|
my_munmap((char*) info->s->file_map,
|
|
|
|
(size_t) info->s->mmaped_length + MEMMAP_EXTRA_MARGIN);
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-01-23 20:13:26 +01:00
|
|
|
static uchar *
|
|
|
|
_ma_mempack_get_block_info(MARIA_HA *maria,
|
|
|
|
MARIA_BIT_BUFF *bit_buff,
|
|
|
|
MARIA_BLOCK_INFO *info,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar **rec_buff_p,
|
|
|
|
size_t *rec_buff_size_p,
|
2007-01-23 20:13:26 +01:00
|
|
|
uchar *header)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
header+= read_pack_length((uint) maria->s->pack.version, header,
|
|
|
|
&info->rec_len);
|
|
|
|
if (maria->s->base.blobs)
|
|
|
|
{
|
|
|
|
header+= read_pack_length((uint) maria->s->pack.version, header,
|
|
|
|
&info->blob_len);
|
|
|
|
/* _ma_alloc_rec_buff sets my_errno on error */
|
2007-01-26 12:32:02 +01:00
|
|
|
if (_ma_alloc_buffer(rec_buff_p, rec_buff_size_p,
|
2007-01-18 20:38:14 +01:00
|
|
|
info->blob_len + maria->s->base.extra_rec_buff_size))
|
2006-04-11 15:45:10 +02:00
|
|
|
return 0; /* not enough memory */
|
2009-01-09 05:23:25 +01:00
|
|
|
bit_buff->blob_pos= *rec_buff_p;
|
|
|
|
bit_buff->blob_end= *rec_buff_p + info->blob_len;
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
return header;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
static int _ma_read_mempack_record(MARIA_HA *info, uchar *buf,
|
2007-01-18 20:38:14 +01:00
|
|
|
MARIA_RECORD_POS filepos)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
MARIA_BLOCK_INFO block_info;
|
2007-12-10 01:32:00 +01:00
|
|
|
MARIA_SHARE *share= info->s;
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *pos;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("maria_read_mempack_record");
|
|
|
|
|
|
|
|
if (filepos == HA_OFFSET_ERROR)
|
2007-09-09 18:15:10 +02:00
|
|
|
DBUG_RETURN(my_errno); /* _search() didn't find record */
|
2006-04-11 15:45:10 +02:00
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
if (!(pos= (uchar*) _ma_mempack_get_block_info(info, &info->bit_buff,
|
2006-12-19 19:15:53 +01:00
|
|
|
&block_info, &info->rec_buff,
|
2007-01-23 20:13:26 +01:00
|
|
|
&info->rec_buff_size,
|
2006-04-11 15:45:10 +02:00
|
|
|
(uchar*) share->file_map+
|
|
|
|
filepos)))
|
2007-09-09 18:15:10 +02:00
|
|
|
DBUG_RETURN(my_errno);
|
2006-12-19 19:15:53 +01:00
|
|
|
DBUG_RETURN(_ma_pack_rec_unpack(info, &info->bit_buff, buf,
|
|
|
|
pos, block_info.rec_len));
|
2006-04-11 15:45:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*ARGSUSED*/
|
2007-01-18 20:38:14 +01:00
|
|
|
static int _ma_read_rnd_mempack_record(MARIA_HA *info,
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *buf,
|
2007-01-18 20:38:14 +01:00
|
|
|
register MARIA_RECORD_POS filepos,
|
2006-04-11 15:45:10 +02:00
|
|
|
my_bool skip_deleted_blocks
|
|
|
|
__attribute__((unused)))
|
|
|
|
{
|
|
|
|
MARIA_BLOCK_INFO block_info;
|
2007-12-10 01:32:00 +01:00
|
|
|
MARIA_SHARE *share= info->s;
|
2007-07-02 19:45:15 +02:00
|
|
|
uchar *pos,*start;
|
2006-04-11 15:45:10 +02:00
|
|
|
DBUG_ENTER("_ma_read_rnd_mempack_record");
|
|
|
|
|
|
|
|
if (filepos >= share->state.state.data_file_length)
|
|
|
|
{
|
|
|
|
my_errno=HA_ERR_END_OF_FILE;
|
|
|
|
goto err;
|
|
|
|
}
|
2007-07-02 19:45:15 +02:00
|
|
|
if (!(pos= (uchar*) _ma_mempack_get_block_info(info, &info->bit_buff,
|
2007-01-23 20:13:26 +01:00
|
|
|
&block_info,
|
|
|
|
&info->rec_buff,
|
|
|
|
&info->rec_buff_size,
|
2006-04-11 15:45:10 +02:00
|
|
|
(uchar*)
|
2007-01-23 20:13:26 +01:00
|
|
|
(start= share->file_map +
|
2006-04-11 15:45:10 +02:00
|
|
|
filepos))))
|
|
|
|
goto err;
|
|
|
|
#ifndef DBUG_OFF
|
|
|
|
if (block_info.rec_len > info->s->max_pack_length)
|
|
|
|
{
|
2011-01-26 14:29:36 +01:00
|
|
|
_ma_set_fatal_error(share, HA_ERR_WRONG_IN_RECORD);
|
2006-04-11 15:45:10 +02:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
info->packed_length=block_info.rec_len;
|
2007-01-18 20:38:14 +01:00
|
|
|
info->cur_row.lastpos= filepos;
|
|
|
|
info->cur_row.nextpos= filepos+(uint) (pos-start)+block_info.rec_len;
|
2006-04-11 15:45:10 +02:00
|
|
|
info->update|= HA_STATE_AKTIV | HA_STATE_KEY_CHANGED;
|
|
|
|
|
2006-12-19 19:15:53 +01:00
|
|
|
DBUG_RETURN (_ma_pack_rec_unpack(info, &info->bit_buff, buf,
|
|
|
|
pos, block_info.rec_len));
|
2006-04-11 15:45:10 +02:00
|
|
|
err:
|
|
|
|
DBUG_RETURN(my_errno);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* HAVE_MMAP */
|
|
|
|
|
|
|
|
/* Save length of row */
|
|
|
|
|
2007-07-02 19:45:15 +02:00
|
|
|
uint _ma_save_pack_length(uint version, uchar *block_buff, ulong length)
|
2006-04-11 15:45:10 +02:00
|
|
|
{
|
|
|
|
if (length < 254)
|
|
|
|
{
|
|
|
|
*(uchar*) block_buff= (uchar) length;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (length <= 65535)
|
|
|
|
{
|
|
|
|
*(uchar*) block_buff=254;
|
|
|
|
int2store(block_buff+1,(uint) length);
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
*(uchar*) block_buff=255;
|
|
|
|
if (version == 1) /* old format */
|
|
|
|
{
|
|
|
|
DBUG_ASSERT(length <= 0xFFFFFF);
|
|
|
|
int3store(block_buff + 1, (ulong) length);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
int4store(block_buff + 1, (ulong) length);
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static uint read_pack_length(uint version, const uchar *buf, ulong *length)
|
|
|
|
{
|
|
|
|
if (buf[0] < 254)
|
|
|
|
{
|
|
|
|
*length= buf[0];
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (buf[0] == 254)
|
|
|
|
{
|
|
|
|
*length= uint2korr(buf + 1);
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
if (version == 1) /* old format */
|
|
|
|
{
|
|
|
|
*length= uint3korr(buf + 1);
|
|
|
|
return 4;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*length= uint4korr(buf + 1);
|
|
|
|
return 5;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
uint _ma_calc_pack_length(uint version, ulong length)
|
|
|
|
{
|
|
|
|
return (length < 254) ? 1 : (length < 65536) ? 3 : (version == 1) ? 4 : 5;
|
|
|
|
}
|