25
25
#include <drizzled/server_includes.h>
26
26
#include <drizzled/field/blob.h>
29
blob_pack_length_to_max_length(uint32_t arg)
31
return (INT64_C(1) << cmin(arg, 4U) * 8) - INT64_C(1);
28
#define BLOB_PACK_LENGTH_TO_MAX_LENGH(arg) \
29
((uint32_t) ((1LL << min(arg, 4) * 8) - 1LL))
35
31
/****************************************************************************
38
34
** packlength slot and may be from 1-4.
39
35
****************************************************************************/
41
Field_blob::Field_blob(unsigned char *ptr_arg, unsigned char *null_ptr_arg, unsigned char null_bit_arg,
37
Field_blob::Field_blob(uchar *ptr_arg, uchar *null_ptr_arg, uchar null_bit_arg,
42
38
enum utype unireg_check_arg, const char *field_name_arg,
43
TABLE_SHARE *share, uint32_t blob_pack_length,
39
TABLE_SHARE *share, uint blob_pack_length,
44
40
const CHARSET_INFO * const cs)
45
:Field_longstr(ptr_arg, blob_pack_length_to_max_length(blob_pack_length),
41
:Field_longstr(ptr_arg, BLOB_PACK_LENGTH_TO_MAX_LENGH(blob_pack_length),
46
42
null_ptr_arg, null_bit_arg, unireg_check_arg, field_name_arg,
48
44
packlength(blob_pack_length)
56
void Field_blob::store_length(unsigned char *i_ptr,
57
uint32_t i_packlength,
52
void Field_blob::store_length(uchar *i_ptr,
59
55
bool low_byte_first __attribute__((unused)))
61
57
switch (i_packlength) {
63
i_ptr[0]= (unsigned char) i_number;
59
i_ptr[0]= (uchar) i_number;
66
62
#ifdef WORDS_BIGENDIAN
91
uint32_t Field_blob::get_length(const unsigned char *pos,
92
uint32_t packlength_arg,
87
uint32_t Field_blob::get_length(const uchar *pos,
93
89
bool low_byte_first __attribute__((unused)))
95
91
switch (packlength_arg) {
157
int Field_blob::store(const char *from,uint32_t length, const CHARSET_INFO * const cs)
153
int Field_blob::store(const char *from,uint length, const CHARSET_INFO * const cs)
159
uint32_t copy_length, new_length;
155
uint copy_length, new_length;
160
156
const char *well_formed_error_pos;
161
157
const char *cannot_convert_error_pos;
162
158
const char *from_end_pos, *tmp;
306
int Field_blob::cmp(const unsigned char *a,uint32_t a_length, const unsigned char *b,
302
int Field_blob::cmp(const uchar *a,uint32_t a_length, const uchar *b,
307
303
uint32_t b_length)
309
305
return field_charset->coll->strnncollsp(field_charset,
315
int Field_blob::cmp_max(const unsigned char *a_ptr, const unsigned char *b_ptr,
311
int Field_blob::cmp_max(const uchar *a_ptr, const uchar *b_ptr,
318
unsigned char *blob1,*blob2;
319
315
memcpy(&blob1,a_ptr+packlength,sizeof(char*));
320
316
memcpy(&blob2,b_ptr+packlength,sizeof(char*));
321
uint32_t a_len= get_length(a_ptr), b_len= get_length(b_ptr);
317
uint a_len= get_length(a_ptr), b_len= get_length(b_ptr);
322
318
set_if_smaller(a_len, max_length);
323
319
set_if_smaller(b_len, max_length);
324
320
return Field_blob::cmp(blob1,a_len,blob2,b_len);
328
int Field_blob::cmp_binary(const unsigned char *a_ptr, const unsigned char *b_ptr,
324
int Field_blob::cmp_binary(const uchar *a_ptr, const uchar *b_ptr,
329
325
uint32_t max_length)
333
329
uint32_t a_length,b_length;
334
330
memcpy(&a,a_ptr+packlength,sizeof(char*));
335
331
memcpy(&b,b_ptr+packlength,sizeof(char*));
339
335
b_length=get_length(b_ptr);
340
336
if (b_length > max_length)
341
337
b_length=max_length;
342
diff=memcmp(a,b,cmin(a_length,b_length));
338
diff=memcmp(a,b,min(a_length,b_length));
343
339
return diff ? diff : (int) (a_length - b_length);
347
343
/* The following is used only when comparing a key */
349
uint32_t Field_blob::get_key_image(unsigned char *buff,
345
uint Field_blob::get_key_image(uchar *buff,
351
347
imagetype type_arg __attribute__((unused)))
353
349
uint32_t blob_length= get_length(ptr);
357
uint32_t local_char_length= length / field_charset->mbmaxlen;
353
uint local_char_length= length / field_charset->mbmaxlen;
358
354
local_char_length= my_charpos(field_charset, blob, blob + blob_length,
359
355
local_char_length);
360
356
set_if_smaller(blob_length, local_char_length);
377
void Field_blob::set_key_image(const unsigned char *buff,uint32_t length)
373
void Field_blob::set_key_image(const uchar *buff,uint length)
379
375
length= uint2korr(buff);
380
376
(void) Field_blob::store((const char*) buff+HA_KEY_BLOB_LENGTH, length,
385
int Field_blob::key_cmp(const unsigned char *key_ptr, uint32_t max_key_length)
381
int Field_blob::key_cmp(const uchar *key_ptr, uint max_key_length)
387
unsigned char *blob1;
388
uint32_t blob_length=get_length(ptr);
384
uint blob_length=get_length(ptr);
389
385
memcpy(&blob1,ptr+packlength,sizeof(char*));
390
386
const CHARSET_INFO * const cs= charset();
391
uint32_t local_char_length= max_key_length / cs->mbmaxlen;
387
uint local_char_length= max_key_length / cs->mbmaxlen;
392
388
local_char_length= my_charpos(cs, blob1, blob1+blob_length,
393
389
local_char_length);
394
390
set_if_smaller(blob_length, local_char_length);
397
393
uint2korr(key_ptr));
400
int Field_blob::key_cmp(const unsigned char *a,const unsigned char *b)
396
int Field_blob::key_cmp(const uchar *a,const uchar *b)
402
398
return Field_blob::cmp(a+HA_KEY_BLOB_LENGTH, uint2korr(a),
403
399
b+HA_KEY_BLOB_LENGTH, uint2korr(b));
415
411
@returns number of bytes written to metadata_ptr
417
int Field_blob::do_save_field_metadata(unsigned char *metadata_ptr)
413
int Field_blob::do_save_field_metadata(uchar *metadata_ptr)
419
415
*metadata_ptr= pack_length_no_ptr();
431
void Field_blob::sort_string(unsigned char *to,uint32_t length)
427
void Field_blob::sort_string(uchar *to,uint length)
434
uint32_t blob_length=get_length();
430
uint blob_length=get_length();
436
432
if (!blob_length)
437
433
memset(to, 0, length);
479
475
res.set_ascii(STRING_WITH_LEN("text"));
482
unsigned char *Field_blob::pack(unsigned char *to, const unsigned char *from,
483
uint32_t max_length, bool low_byte_first)
478
uchar *Field_blob::pack(uchar *to, const uchar *from,
479
uint max_length, bool low_byte_first)
485
unsigned char *save= ptr;
486
ptr= (unsigned char*) from;
487
483
uint32_t length=get_length(); // Length of from string
491
487
length given is smaller than the actual length of the blob, we
492
488
just store the initial bytes of the blob.
494
store_length(to, packlength, cmin(length, max_length), low_byte_first);
490
store_length(to, packlength, min(length, max_length), low_byte_first);
497
493
Store the actual blob data, which will occupy 'length' bytes.
501
get_ptr((unsigned char**) &from);
497
get_ptr((uchar**) &from);
502
498
memcpy(to+packlength, from,length);
504
500
ptr=save; // Restore org row pointer
524
520
@return New pointer into memory based on from + length of the data
526
const unsigned char *Field_blob::unpack(unsigned char *to __attribute__((unused)),
527
const unsigned char *from,
522
const uchar *Field_blob::unpack(uchar *to __attribute__((unused)),
529
525
bool low_byte_first)
531
uint32_t const master_packlength=
527
uint const master_packlength=
532
528
param_data > 0 ? param_data & 0xFF : packlength;
533
529
uint32_t const length= get_length(from, master_packlength, low_byte_first);
534
530
bitmap_set_bit(table->write_set, field_index);
540
536
/* Keys for blobs are like keys on varchars */
542
int Field_blob::pack_cmp(const unsigned char *a, const unsigned char *b, uint32_t key_length_arg,
538
int Field_blob::pack_cmp(const uchar *a, const uchar *b, uint key_length_arg,
543
539
bool insert_or_update)
545
uint32_t a_length, b_length;
541
uint a_length, b_length;
546
542
if (key_length_arg > 255)
548
544
a_length=uint2korr(a); a+=2;
563
int Field_blob::pack_cmp(const unsigned char *b, uint32_t key_length_arg,
559
int Field_blob::pack_cmp(const uchar *b, uint key_length_arg,
564
560
bool insert_or_update)
567
uint32_t a_length, b_length;
563
uint a_length, b_length;
568
564
memcpy(&a,ptr+packlength,sizeof(char*));
570
566
return key_length_arg > 0 ? -1 : 0;
585
581
/** Create a packed key that will be used for storage from a MySQL row. */
588
Field_blob::pack_key(unsigned char *to, const unsigned char *from, uint32_t max_length,
584
Field_blob::pack_key(uchar *to, const uchar *from, uint max_length,
589
585
bool low_byte_first __attribute__((unused)))
591
unsigned char *save= ptr;
592
ptr= (unsigned char*) from;
593
589
uint32_t length=get_length(); // Length of from string
594
uint32_t local_char_length= ((field_charset->mbmaxlen > 1) ?
590
uint local_char_length= ((field_charset->mbmaxlen > 1) ?
595
591
max_length/field_charset->mbmaxlen : max_length);
597
get_ptr((unsigned char**) &from);
593
get_ptr((uchar**) &from);
598
594
if (length > local_char_length)
599
595
local_char_length= my_charpos(field_charset, from, from+length,
600
596
local_char_length);
601
597
set_if_smaller(length, local_char_length);
602
*to++= (unsigned char) length;
598
*to++= (uchar) length;
603
599
if (max_length > 255) // 2 byte length
604
*to++= (unsigned char) (length >> 8);
600
*to++= (uchar) (length >> 8);
605
601
memcpy(to, from, length);
606
602
ptr=save; // Restore org row pointer
607
603
return to+length;
629
625
Pointer into 'from' past the last byte copied from packed key.
632
const unsigned char *
633
Field_blob::unpack_key(unsigned char *to, const unsigned char *from, uint32_t max_length,
629
Field_blob::unpack_key(uchar *to, const uchar *from, uint max_length,
634
630
bool low_byte_first __attribute__((unused)))
636
632
/* get length of the blob key */
655
651
/** Create a packed key that will be used for storage from a MySQL key. */
658
Field_blob::pack_key_from_key_image(unsigned char *to, const unsigned char *from, uint32_t max_length,
654
Field_blob::pack_key_from_key_image(uchar *to, const uchar *from, uint max_length,
659
655
bool low_byte_first __attribute__((unused)))
661
uint32_t length=uint2korr(from);
657
uint length=uint2korr(from);
662
658
if (length > max_length)
663
659
length=max_length;
664
660
*to++= (char) (length & 255);
681
uint32_t Field_blob::max_packed_col_length(uint32_t max_length)
677
uint Field_blob::max_packed_col_length(uint max_length)
683
679
return (max_length > 255 ? 2 : 1)+max_length;
687
uint32_t Field_blob::is_equal(Create_field *new_field)
683
uint Field_blob::is_equal(Create_field *new_field)
689
685
if (compare_str_field_flags(new_field, flags))