1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/* - mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
*
* Copyright (C) 2008 MySQL
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* 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
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DRIZZLE_SERVER_FIELD_STR
#define DRIZZLE_SERVER_FIELD_STR
#include <drizzled/field.h>
typedef struct charset_info_st CHARSET_INFO;
/* base class for all string related classes */
class Field_str :public Field {
protected:
const CHARSET_INFO *field_charset;
enum Derivation field_derivation;
int report_if_important_data(const char *ptr, const char *end);
public:
Field_str(unsigned char *ptr_arg,uint32_t len_arg,
unsigned char *null_ptr_arg,
unsigned char null_bit_arg, utype unireg_check_arg,
const char *field_name_arg, const CHARSET_INFO * const charset);
Item_result result_type () const { return STRING_RESULT; }
uint32_t decimals() const { return NOT_FIXED_DEC; }
using Field::store;
int store(double nr);
int store(int64_t nr, bool unsigned_val)=0;
int store_decimal(const my_decimal *);
int store(const char *to,uint32_t length, const CHARSET_INFO * const cs)=0;
uint32_t size_of() const { return sizeof(*this); }
const CHARSET_INFO *charset(void) const { return field_charset; }
void set_charset(const CHARSET_INFO * const charset_arg)
{ field_charset= charset_arg; }
enum Derivation derivation(void) const { return field_derivation; }
virtual void set_derivation(enum Derivation derivation_arg)
{ field_derivation= derivation_arg; }
bool binary() const { return field_charset == &my_charset_bin; }
uint32_t max_display_length() { return field_length; }
friend class CreateField;
my_decimal *val_decimal(my_decimal *);
virtual bool str_needs_quotes() { return true; }
bool compare_str_field_flags(CreateField *new_field, uint32_t flags);
uint32_t is_equal(CreateField *new_field);
uint32_t max_data_length() const;
};
/*
Report "not well formed" or "cannot convert" error
after storing a character string info a field.
SYNOPSIS
check_string_copy_error()
field - Field
well_formed_error_pos - where not well formed data was first met
cannot_convert_error_pos - where a not-convertable character was first met
end - end of the string
cs - character set of the string
NOTES
As of version 5.0 both cases return the same error:
"Invalid string value: 'xxx' for column 't' at row 1"
Future versions will possibly introduce a new error message:
"Cannot convert character string: 'xxx' for column 't' at row 1"
RETURN
false - If errors didn't happen
true - If an error happened
*/
bool check_string_copy_error(Field_str *field,
const char *well_formed_error_pos,
const char *cannot_convert_error_pos,
const char *end,
const CHARSET_INFO * const cs);
#endif
|