18
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21
#ifndef DRIZZLED_FIELD_VARSTRING_H
22
#define DRIZZLED_FIELD_VARSTRING_H
21
#ifndef DRIZZLE_SERVER_FIELD_VARSTRING
22
#define DRIZZLE_SERVER_FIELD_VARSTRING
24
#include <drizzled/field/str.h>
24
#include <drizzled/field/longstr.h>
30
class Field_varstring :public Field_str {
27
class Field_varstring :public Field_longstr {
33
30
using Field::store;
43
40
static const uint32_t MAX_SIZE;
45
41
/* Store number of bytes used to store length (1 or 2) */
46
42
uint32_t length_bytes;
48
43
Field_varstring(unsigned char *ptr_arg,
50
uint32_t length_bytes_arg,
51
unsigned char *null_ptr_arg,
52
unsigned char null_bit_arg,
53
const char *field_name_arg,
54
const CHARSET_INFO * const cs);
55
Field_varstring(uint32_t len_arg,
57
const char *field_name_arg,
58
const CHARSET_INFO * const cs);
44
uint32_t len_arg, uint32_t length_bytes_arg,
45
unsigned char *null_ptr_arg, unsigned char null_bit_arg,
46
enum utype unireg_check_arg, const char *field_name_arg,
47
TABLE_SHARE *share, const CHARSET_INFO * const cs);
48
Field_varstring(uint32_t len_arg,bool maybe_null_arg,
49
const char *field_name_arg,
50
TABLE_SHARE *share, const CHARSET_INFO * const cs);
60
52
enum_field_types type() const { return DRIZZLE_TYPE_VARCHAR; }
61
53
enum ha_base_keytype key_type() const;
54
uint32_t row_pack_length() { return field_length; }
62
55
bool zero_pack() const { return 0; }
63
56
int reset(void) { memset(ptr, 0, field_length+length_bytes); return 0; }
64
57
uint32_t pack_length() const { return (uint32_t) field_length+length_bytes; }
65
uint32_t pack_length_no_ptr() const { return length_bytes; }
66
58
uint32_t key_length() const { return (uint32_t) field_length; }
67
59
uint32_t sort_length() const
69
61
return (uint32_t) field_length + (field_charset == &my_charset_bin ?
72
64
int store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
75
67
int store(int64_t nr, bool unsigned_val);
76
68
int store(double nr) { return Field_str::store(nr); } /* QQ: To be deleted */
77
double val_real(void) const;
78
int64_t val_int(void) const;
79
String *val_str(String*,String *) const;
69
double val_real(void);
70
int64_t val_int(void);
71
String *val_str(String*,String *);
80
72
inline String *val_str(String *str) { return val_str(str, str); }
81
type::Decimal *val_decimal(type::Decimal *) const;
73
my_decimal *val_decimal(my_decimal *);
82
74
int cmp_max(const unsigned char *, const unsigned char *, uint32_t max_length);
83
75
inline int cmp(const unsigned char *str) { return cmp(ptr,str); }
84
76
int cmp(const unsigned char *a,const unsigned char *b)
86
78
return cmp_max(a, b, UINT32_MAX);
88
80
void sort_string(unsigned char *buff,uint32_t length);
89
uint32_t get_key_image(unsigned char *buff,uint32_t length);
90
uint32_t get_key_image(std::basic_string <unsigned char> &buff, uint32_t length);
81
uint32_t get_key_image(unsigned char *buff,uint32_t length, imagetype type);
82
uint32_t get_key_image(std::basic_string <unsigned char> &buff,
83
uint32_t length, imagetype type);
91
84
void set_key_image(const unsigned char *buff,uint32_t length);
92
85
void sql_type(String &str) const;
93
virtual unsigned char *pack(unsigned char *to,
94
const unsigned char *from,
86
virtual unsigned char *pack(unsigned char *to, const unsigned char *from,
95
87
uint32_t max_length,
96
88
bool low_byte_first);
90
unsigned char *pack_key(unsigned char *to, const unsigned char *from, uint32_t max_length, bool low_byte_first);
91
unsigned char *pack_key_from_key_image(unsigned char* to, const unsigned char *from,
92
uint32_t max_length, bool low_byte_first);
98
93
virtual const unsigned char *unpack(unsigned char* to,
99
94
const unsigned char *from,
100
95
uint32_t param_data,
101
96
bool low_byte_first);
98
const unsigned char *unpack_key(unsigned char* to, const unsigned char *from,
99
uint32_t max_length, bool low_byte_first);
100
int pack_cmp(const unsigned char *a, const unsigned char *b, uint32_t key_length,
101
bool insert_or_update);
102
int pack_cmp(const unsigned char *b, uint32_t key_length,bool insert_or_update);
103
103
int cmp_binary(const unsigned char *a,const unsigned char *b, uint32_t max_length=UINT32_MAX);
104
104
int key_cmp(const unsigned char *,const unsigned char*);
105
105
int key_cmp(const unsigned char *str, uint32_t length);
106
uint32_t packed_col_length(const unsigned char *to, uint32_t length);
106
107
uint32_t max_packed_col_length(uint32_t max_length);
108
uint32_t data_length();
107
109
uint32_t used_length();
108
110
uint32_t size_of() const { return sizeof(*this); }
109
111
enum_field_types real_type() const { return DRIZZLE_TYPE_VARCHAR; }
110
112
bool has_charset(void) const
111
113
{ return charset() == &my_charset_bin ? false : true; }
112
Field *new_field(memory::Root *root, Table *new_table, bool keep_type);
113
Field *new_key_field(memory::Root *root, Table *new_table,
114
Field *new_field(MEM_ROOT *root, Table *new_table, bool keep_type);
115
Field *new_key_field(MEM_ROOT *root, Table *new_table,
114
116
unsigned char *new_ptr, unsigned char *new_null_ptr,
115
117
uint32_t new_null_bit);
118
uint32_t is_equal(Create_field *new_field);
119
void hash(uint32_t *nr, uint32_t *nr2);
121
int do_save_field_metadata(unsigned char *first_byte);
118
} /* namespace drizzled */
120
#endif /* DRIZZLED_FIELD_VARSTRING_H */