18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifdef USE_PRAGMA_IMPLEMENTATION
22
#pragma implementation // gcc: Class implementation
23
25
#include <drizzled/field/blob.h>
24
#include <drizzled/table.h>
25
#include <drizzled/session.h>
26
#include "plugin/myisam/myisam.h"
36
static uint32_t blob_pack_length_to_max_length(uint32_t arg)
38
return max(UINT32_MAX,
39
(uint32_t)((INT64_C(1) << min(arg, 4U) * 8) - INT64_C(1)));
27
#define BLOB_PACK_LENGTH_TO_MAX_LENGH(arg) \
28
((ulong) ((1LL << min(arg, 4) * 8) - 1LL))
43
30
/****************************************************************************
46
33
** packlength slot and may be from 1-4.
47
34
****************************************************************************/
49
Field_blob::Field_blob(unsigned char *ptr_arg,
50
unsigned char *null_ptr_arg,
51
unsigned char null_bit_arg,
52
const char *field_name_arg,
54
uint32_t blob_pack_length,
55
const CHARSET_INFO * const cs)
57
blob_pack_length_to_max_length(blob_pack_length),
36
Field_blob::Field_blob(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
37
enum utype unireg_check_arg, const char *field_name_arg,
38
TABLE_SHARE *share, uint blob_pack_length,
40
:Field_longstr(ptr_arg, BLOB_PACK_LENGTH_TO_MAX_LENGH(blob_pack_length),
41
null_ptr_arg, null_bit_arg, unireg_check_arg, field_name_arg,
62
43
packlength(blob_pack_length)
65
46
share->blob_fields++;
66
/* TODO: why do not fill table->getShare()->blob_field array here? */
47
/* TODO: why do not fill table->s->blob_field array here? */
69
void Field_blob::store_length(unsigned char *i_ptr,
70
uint32_t i_packlength,
51
void Field_blob::store_length(uchar *i_ptr,
54
bool low_byte_first __attribute__((unused)))
74
#ifndef WORDS_BIGENDIAN
77
56
switch (i_packlength) {
79
i_ptr[0]= (unsigned char) i_number;
58
i_ptr[0]= (uchar) i_number;
82
61
#ifdef WORDS_BIGENDIAN
107
void Field_blob::store_length(unsigned char *i_ptr, uint32_t i_packlength,
110
store_length(i_ptr, i_packlength, i_number, getTable()->getShare()->db_low_byte_first);
114
uint32_t Field_blob::get_length(const unsigned char *pos,
115
uint32_t packlength_arg,
118
#ifndef WORDS_BIGENDIAN
119
(void)low_byte_first;
86
uint32_t Field_blob::get_length(const uchar *pos,
88
bool low_byte_first __attribute__((unused)))
121
90
switch (packlength_arg) {
123
92
return (uint32_t) pos[0];
153
uint32_t Field_blob::get_packed_size(const unsigned char *ptr_arg,
156
return packlength + get_length(ptr_arg, packlength, low_byte_first);
160
uint32_t Field_blob::get_length(uint32_t row_offset)
162
return get_length(ptr+row_offset, this->packlength,
163
getTable()->getShare()->db_low_byte_first);
167
uint32_t Field_blob::get_length(const unsigned char *ptr_arg)
169
return get_length(ptr_arg, this->packlength, getTable()->getShare()->db_low_byte_first);
174
123
Put a blob length field into a record buffer.
203
int Field_blob::store(const char *from,uint32_t length, const CHARSET_INFO * const cs)
152
int Field_blob::store(const char *from,uint length,CHARSET_INFO *cs)
205
uint32_t copy_length, new_length;
154
uint copy_length, new_length;
206
155
const char *well_formed_error_pos;
207
156
const char *cannot_convert_error_pos;
208
157
const char *from_end_pos, *tmp;
209
158
char buff[STRING_BUFFER_USUAL_SIZE];
210
159
String tmpstr(buff,sizeof(buff), &my_charset_bin);
212
ASSERT_COLUMN_MARKED_FOR_WRITE;
216
163
memset(ptr, 0, Field_blob::pack_length());
223
170
if (!String::needs_conversion(length, cs, field_charset, &dummy_offset))
225
172
Field_blob::store_length(length);
226
memmove(ptr+packlength, &from, sizeof(char*));
173
memcpy(ptr+packlength, &from, sizeof(char*));
229
176
if (tmpstr.copy(from, length, cs))
235
182
if (value.alloc(new_length))
186
if (f_is_hex_escape(flags))
188
copy_length= my_copy_with_hex_escaping(field_charset,
189
(char*) value.ptr(), new_length,
191
Field_blob::store_length(copy_length);
193
memcpy(ptr + packlength, &tmp, sizeof(char*));
239
197
"length" is OK as "nchars" argument to well_formed_copy_nchars as this
240
198
is never used to limit the length of the data. The cut of long data
262
220
/* Fatal OOM error */
263
221
memset(ptr, 0, Field_blob::pack_length());
268
226
int Field_blob::store(double nr)
270
const CHARSET_INFO * const cs=charset();
271
ASSERT_COLUMN_MARKED_FOR_WRITE;
228
CHARSET_INFO *cs=charset();
272
229
value.set_real(nr, NOT_FIXED_DEC, cs);
273
return Field_blob::store(value.ptr(),(uint32_t) value.length(), cs);
230
return Field_blob::store(value.ptr(),(uint) value.length(), cs);
277
234
int Field_blob::store(int64_t nr, bool unsigned_val)
279
const CHARSET_INFO * const cs=charset();
280
ASSERT_COLUMN_MARKED_FOR_WRITE;
236
CHARSET_INFO *cs=charset();
281
237
value.set_int(nr, unsigned_val, cs);
282
return Field_blob::store(value.ptr(), (uint32_t) value.length(), cs);
238
return Field_blob::store(value.ptr(), (uint) value.length(), cs);
315
266
return my_strntoll(charset(),blob,length,10,NULL,¬_used);
318
String *Field_blob::val_str(String *,
269
String *Field_blob::val_str(String *val_buffer __attribute__((unused)),
323
ASSERT_COLUMN_MARKED_FOR_READ;
325
273
memcpy(&blob,ptr+packlength,sizeof(char*));
327
275
val_ptr->set("",0,charset()); // A bit safer than ->length(0)
356
int Field_blob::cmp(const unsigned char *a,uint32_t a_length, const unsigned char *b,
301
int Field_blob::cmp(const uchar *a,uint32_t a_length, const uchar *b,
357
302
uint32_t b_length)
359
return field_charset->coll->strnncollsp(field_charset,
304
return field_charset->coll->strnncollsp(field_charset,
360
305
a, a_length, b, b_length,
365
int Field_blob::cmp_max(const unsigned char *a_ptr, const unsigned char *b_ptr,
310
int Field_blob::cmp_max(const uchar *a_ptr, const uchar *b_ptr,
368
unsigned char *blob1,*blob2;
369
314
memcpy(&blob1,a_ptr+packlength,sizeof(char*));
370
315
memcpy(&blob2,b_ptr+packlength,sizeof(char*));
371
uint32_t a_len= get_length(a_ptr), b_len= get_length(b_ptr);
316
uint a_len= get_length(a_ptr), b_len= get_length(b_ptr);
372
317
set_if_smaller(a_len, max_length);
373
318
set_if_smaller(b_len, max_length);
374
319
return Field_blob::cmp(blob1,a_len,blob2,b_len);
378
int Field_blob::cmp_binary(const unsigned char *a_ptr, const unsigned char *b_ptr,
323
int Field_blob::cmp_binary(const uchar *a_ptr, const uchar *b_ptr,
383
328
uint32_t a_length,b_length;
384
329
memcpy(&a,a_ptr+packlength,sizeof(char*));
385
330
memcpy(&b,b_ptr+packlength,sizeof(char*));
387
a_length= get_length(a_ptr);
331
a_length=get_length(a_ptr);
389
332
if (a_length > max_length)
390
a_length= max_length;
392
b_length= get_length(b_ptr);
334
b_length=get_length(b_ptr);
394
335
if (b_length > max_length)
395
b_length= max_length;
397
diff= memcmp(a,b,min(a_length,b_length));
337
diff=memcmp(a,b,min(a_length,b_length));
399
338
return diff ? diff : (int) (a_length - b_length);
402
342
/* The following is used only when comparing a key */
403
uint32_t Field_blob::get_key_image(unsigned char *buff, uint32_t length)
344
uint Field_blob::get_key_image(uchar *buff,
346
imagetype type_arg __attribute__((unused)))
405
348
uint32_t blob_length= get_length(ptr);
409
uint32_t local_char_length= length / field_charset->mbmaxlen;
352
uint local_char_length= length / field_charset->mbmaxlen;
410
353
local_char_length= my_charpos(field_charset, blob, blob + blob_length,
411
354
local_char_length);
412
355
set_if_smaller(blob_length, local_char_length);
414
357
if ((uint32_t) length > blob_length)
417
Must clear this as we do a memcmp in optimizer/range.cc to detect
360
Must clear this as we do a memcmp in opt_range.cc to detect
420
363
memset(buff+HA_KEY_BLOB_LENGTH+blob_length, 0, (length-blob_length));
421
length=(uint32_t) blob_length;
364
length=(uint) blob_length;
423
366
int2store(buff,length);
424
367
memcpy(buff+HA_KEY_BLOB_LENGTH, blob, length);
429
uint32_t Field_blob::get_key_image(basic_string<unsigned char> &buff, uint32_t length)
431
uint32_t blob_length= get_length(ptr);
435
uint32_t local_char_length= length / field_charset->mbmaxlen;
436
local_char_length= my_charpos(field_charset, blob, blob + blob_length,
438
set_if_smaller(blob_length, local_char_length);
440
unsigned char len_buff[HA_KEY_BLOB_LENGTH];
441
int2store(len_buff,length);
442
buff.append(len_buff);
443
buff.append(blob, blob_length);
445
if (length > blob_length)
448
Must clear this as we do a memcmp in optimizer/range.cc to detect
452
buff.append(length-blob_length, '0');
454
return HA_KEY_BLOB_LENGTH+length;
457
void Field_blob::set_key_image(const unsigned char *buff,uint32_t length)
372
void Field_blob::set_key_image(const uchar *buff,uint length)
459
374
length= uint2korr(buff);
460
(void) Field_blob::store((const char*) buff+HA_KEY_BLOB_LENGTH, length, field_charset);
375
(void) Field_blob::store((const char*) buff+HA_KEY_BLOB_LENGTH, length,
463
int Field_blob::key_cmp(const unsigned char *key_ptr, uint32_t max_key_length)
380
int Field_blob::key_cmp(const uchar *key_ptr, uint max_key_length)
465
unsigned char *blob1;
466
uint32_t blob_length=get_length(ptr);
383
uint blob_length=get_length(ptr);
467
384
memcpy(&blob1,ptr+packlength,sizeof(char*));
468
const CHARSET_INFO * const cs= charset();
469
uint32_t local_char_length= max_key_length / cs->mbmaxlen;
385
CHARSET_INFO *cs= charset();
386
uint local_char_length= max_key_length / cs->mbmaxlen;
470
387
local_char_length= my_charpos(cs, blob1, blob1+blob_length,
471
388
local_char_length);
472
389
set_if_smaller(blob_length, local_char_length);
475
392
uint2korr(key_ptr));
478
int Field_blob::key_cmp(const unsigned char *a,const unsigned char *b)
395
int Field_blob::key_cmp(const uchar *a,const uchar *b)
480
397
return Field_blob::cmp(a+HA_KEY_BLOB_LENGTH, uint2korr(a),
481
398
b+HA_KEY_BLOB_LENGTH, uint2korr(b));
403
Save the field metadata for blob fields.
405
Saves the pack length in the first byte of the field metadata array
406
at index of *metadata_ptr.
408
@param metadata_ptr First byte of field metadata
410
@returns number of bytes written to metadata_ptr
412
int Field_blob::do_save_field_metadata(uchar *metadata_ptr)
414
*metadata_ptr= pack_length_no_ptr();
484
419
uint32_t Field_blob::sort_length() const
486
return (uint32_t) (current_session->variables.max_sort_length +
421
return (uint32_t) (current_thd->variables.max_sort_length +
487
422
(field_charset == &my_charset_bin ? 0 : packlength));
490
void Field_blob::sort_string(unsigned char *to,uint32_t length)
426
void Field_blob::sort_string(uchar *to,uint length)
493
uint32_t blob_length=get_length();
429
uint blob_length=get_length();
495
431
if (!blob_length)
496
432
memset(to, 0, length);
524
460
memcpy(&blob,ptr+packlength,sizeof(char*));
526
462
blob_length=my_strnxfrm(field_charset,
527
463
to, length, blob, blob_length);
528
464
assert(blob_length == length);
532
uint32_t Field_blob::pack_length() const
534
return (uint32_t) (packlength + getTable()->getShare()->blob_ptr_size);
537
469
void Field_blob::sql_type(String &res) const
542
474
res.set_ascii(STRING_WITH_LEN("text"));
545
unsigned char *Field_blob::pack(unsigned char *to, const unsigned char *from,
546
uint32_t max_length, bool low_byte_first)
477
uchar *Field_blob::pack(uchar *to, const uchar *from,
478
uint max_length, bool low_byte_first)
548
unsigned char *save= ptr;
549
ptr= (unsigned char*) from;
550
uint32_t length= get_length(); // Length of from string
482
uint32_t length=get_length(); // Length of from string
553
485
Store max length, which will occupy packlength bytes. If the max
564
get_ptr((unsigned char**) &from);
496
get_ptr((uchar**) &from);
565
497
memcpy(to+packlength, from,length);
568
ptr= save; // Restore org row pointer
499
ptr=save; // Restore org row pointer
569
500
return(to+packlength+length);
573
505
Unpack a blob field from row data.
575
This method is used to unpack a blob field from a master whose size of
507
This method is used to unpack a blob field from a master whose size of
576
508
the field is less than that of the slave. Note: This method is included
577
509
to satisfy inheritance rules, but is not needed for blob fields. It
578
510
simply is used as a pass-through to the original unpack() method for
587
519
@return New pointer into memory based on from + length of the data
589
const unsigned char *Field_blob::unpack(unsigned char *,
590
const unsigned char *from,
521
const uchar *Field_blob::unpack(uchar *to __attribute__((unused)),
594
uint32_t const master_packlength=
526
uint const master_packlength=
595
527
param_data > 0 ? param_data & 0xFF : packlength;
596
528
uint32_t const length= get_length(from, master_packlength, low_byte_first);
597
getTable()->setWriteSet(field_index);
529
bitmap_set_bit(table->write_set, field_index);
598
530
store(reinterpret_cast<const char*>(from) + master_packlength,
599
531
length, field_charset);
600
532
return(from + master_packlength + length);
535
/* Keys for blobs are like keys on varchars */
537
int Field_blob::pack_cmp(const uchar *a, const uchar *b, uint key_length_arg,
538
my_bool insert_or_update)
540
uint a_length, b_length;
541
if (key_length_arg > 255)
543
a_length=uint2korr(a); a+=2;
544
b_length=uint2korr(b); b+=2;
548
a_length= (uint) *a++;
549
b_length= (uint) *b++;
551
return field_charset->coll->strnncollsp(field_charset,
558
int Field_blob::pack_cmp(const uchar *b, uint key_length_arg,
559
my_bool insert_or_update)
562
uint a_length, b_length;
563
memcpy(&a,ptr+packlength,sizeof(char*));
565
return key_length_arg > 0 ? -1 : 0;
567
a_length= get_length(ptr);
568
if (key_length_arg > 255)
570
b_length= uint2korr(b); b+=2;
573
b_length= (uint) *b++;
574
return field_charset->coll->strnncollsp(field_charset,
603
580
/** Create a packed key that will be used for storage from a MySQL row. */
606
Field_blob::pack_key(unsigned char *to, const unsigned char *from, uint32_t max_length,
583
Field_blob::pack_key(uchar *to, const uchar *from, uint max_length,
584
bool low_byte_first __attribute__((unused)))
609
unsigned char *save= ptr;
610
ptr= (unsigned char*) from;
611
588
uint32_t length=get_length(); // Length of from string
612
uint32_t local_char_length= ((field_charset->mbmaxlen > 1) ?
589
uint local_char_length= ((field_charset->mbmaxlen > 1) ?
613
590
max_length/field_charset->mbmaxlen : max_length);
615
get_ptr((unsigned char**) &from);
592
get_ptr((uchar**) &from);
616
593
if (length > local_char_length)
617
594
local_char_length= my_charpos(field_charset, from, from+length,
618
595
local_char_length);
619
596
set_if_smaller(length, local_char_length);
620
*to++= (unsigned char) length;
597
*to++= (uchar) length;
621
598
if (max_length > 255) // 2 byte length
622
*to++= (unsigned char) (length >> 8);
599
*to++= (uchar) (length >> 8);
623
600
memcpy(to, from, length);
624
601
ptr=save; // Restore org row pointer
625
602
return to+length;
607
Unpack a blob key into a record buffer.
609
A blob key has a maximum size of 64K-1.
610
In its packed form, the length field is one or two bytes long,
611
depending on 'max_length'.
612
Depending on the maximum length of a blob, its length field is
613
put into 1 to 4 bytes. This is a property of the blob object,
614
described by 'packlength'.
615
Blobs are internally stored apart from the record buffer, which
616
contains a pointer to the blob buffer.
619
@param to Pointer into the record buffer.
620
@param from Pointer to the packed key.
621
@param max_length Key length limit from key description.
624
Pointer into 'from' past the last byte copied from packed key.
628
Field_blob::unpack_key(uchar *to, const uchar *from, uint max_length,
629
bool low_byte_first __attribute__((unused)))
631
/* get length of the blob key */
632
uint32_t length= *from++;
633
if (max_length > 255)
634
length+= *from++ << 8;
636
/* put the length into the record buffer */
637
put_length(to, length);
639
/* put the address of the blob buffer or NULL */
641
memcpy(to + packlength, &from, sizeof(from));
643
memset(to + packlength, 0, sizeof(from));
645
/* point to first byte of next field in 'from' */
646
return from + length;
650
/** Create a packed key that will be used for storage from a MySQL key. */
653
Field_blob::pack_key_from_key_image(uchar *to, const uchar *from, uint max_length,
654
bool low_byte_first __attribute__((unused)))
656
uint length=uint2korr(from);
657
if (length > max_length)
659
*to++= (char) (length & 255);
660
if (max_length > 255)
661
*to++= (char) (length >> 8);
663
memcpy(to, from+HA_KEY_BLOB_LENGTH, length);
668
uint Field_blob::packed_col_length(const uchar *data_ptr, uint length)
671
return uint2korr(data_ptr)+2;
672
return (uint) *data_ptr + 1;
676
uint Field_blob::max_packed_col_length(uint max_length)
678
return (max_length > 255 ? 2 : 1)+max_length;
682
uint Field_blob::is_equal(Create_field *new_field)
684
if (compare_str_field_flags(new_field, flags))
687
return ((new_field->sql_type == get_blob_type_from_length(max_data_length()))
688
&& new_field->charset == field_charset &&
689
((Field_blob *)new_field->field)->max_data_length() ==
630
695
maximum possible display length for blob.