~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: Jay Pipes
  • Date: 2008-12-18 15:55:03 UTC
  • mto: This revision was merged to the branch mainline in revision 717.
  • Revision ID: jpipes@serialcoder-20081218155503-u45ygyunrdyyvquq
Fix for Bug#308457.  Gave UTF8 enclosure and escape character on LOAD DATA INFILE and changed the error message to be more descriptive

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#ifndef DRIZZLED_SQL_STRING_H
21
 
#define DRIZZLED_SQL_STRING_H
 
20
#ifndef DRIZZLE_SERVER_SQL_STRING_H
 
21
#define DRIZZLE_SERVER_SQL_STRING_H
22
22
 
23
23
/* This file is originally from the mysql distribution. Coded by monty */
24
24
 
 
25
 
 
26
#ifndef NOT_FIXED_DEC
 
27
#define NOT_FIXED_DEC                   31
 
28
#endif
 
29
 
25
30
#include <drizzled/common.h>
26
 
 
27
 
#include <cassert>
28
 
#include <cstdlib>
29
 
#include <cstring>
30
 
#include <string>
31
 
 
32
 
#include <drizzled/visibility.h>
33
 
 
34
 
#ifndef NOT_FIXED_DEC
35
 
#define NOT_FIXED_DEC                   (uint8_t)31
36
 
#endif
37
 
 
38
 
namespace drizzled
39
 
{
 
31
#include <mysys/iocache.h>
 
32
#include <stdlib.h>
 
33
#include <string.h>
40
34
 
41
35
class String;
42
36
 
43
 
extern DRIZZLED_API String my_empty_string;
44
 
extern const String my_null_string;
45
 
namespace memory { class Root; }
46
 
typedef struct charset_info_st CHARSET_INFO;
47
 
 
48
 
DRIZZLED_API std::string String_to_std_string(String const& s);
49
 
DRIZZLED_API String* set_String_from_std_string(String* s, std::string const& cs);
50
 
 
51
 
int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
52
 
int stringcmp(const String *a,const String *b);
53
 
String *copy_if_not_alloced(String *a,String *b,size_t arg_length);
54
 
size_t well_formed_copy_nchars(const CHARSET_INFO * const to_cs,
55
 
                                 char *to, size_t to_length,
56
 
                                 const CHARSET_INFO * const from_cs,
57
 
                                 const char *from, size_t from_length,
58
 
                                 size_t nchars,
59
 
                                 const char **well_formed_error_pos,
60
 
                                 const char **cannot_convert_error_pos,
61
 
                                 const char **from_end_pos);
62
 
 
63
 
 
64
 
class DRIZZLED_API String
 
37
#if defined(__cplusplus)
 
38
extern "C" {
 
39
#endif
 
40
 
 
41
  int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
 
42
  int stringcmp(const String *a,const String *b);
 
43
  String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);
 
44
  uint32_t copy_and_convert(char *to, uint32_t to_length,
 
45
                            const CHARSET_INFO * const to_cs,
 
46
                            const char *from, uint32_t from_length,
 
47
                            const CHARSET_INFO * const from_cs,
 
48
                            uint32_t *errors);
 
49
  uint32_t well_formed_copy_nchars(const CHARSET_INFO * const to_cs,
 
50
                                   char *to, uint32_t to_length,
 
51
                                   const CHARSET_INFO * const from_cs,
 
52
                                   const char *from, uint32_t from_length,
 
53
                                   uint32_t nchars,
 
54
                                   const char **well_formed_error_pos,
 
55
                                   const char **cannot_convert_error_pos,
 
56
                                   const char **from_end_pos);
 
57
  size_t my_copy_with_hex_escaping(const CHARSET_INFO * const cs,
 
58
                                   char *dst, size_t dstlen,
 
59
                                   const char *src, size_t srclen);
 
60
 
 
61
#if defined(__cplusplus)
 
62
}
 
63
#endif
 
64
 
 
65
class String
65
66
{
66
67
  char *Ptr;
67
 
  size_t str_length,Alloced_length;
 
68
  uint32_t str_length,Alloced_length;
68
69
  bool alloced;
69
70
  const CHARSET_INFO *str_charset;
70
 
 
71
71
public:
72
 
  String();
73
 
  String(size_t length_arg);
74
 
  String(const char *str, const CHARSET_INFO * const cs);
75
 
  String(const char *str, size_t len, const CHARSET_INFO * const cs);
76
 
  String(char *str, size_t len, const CHARSET_INFO * const cs);
77
 
  String(const String &str);
78
 
 
79
 
  static void *operator new(size_t size, memory::Root *mem_root);
 
72
  String()
 
73
  {
 
74
    Ptr=0; str_length=Alloced_length=0; alloced=0;
 
75
    str_charset= &my_charset_bin;
 
76
  }
 
77
  String(uint32_t length_arg)
 
78
  {
 
79
    alloced=0; Alloced_length=0; (void) real_alloc(length_arg);
 
80
    str_charset= &my_charset_bin;
 
81
  }
 
82
  String(const char *str, const CHARSET_INFO * const cs)
 
83
  {
 
84
    Ptr=(char*) str; str_length=(uint) strlen(str); Alloced_length=0; alloced=0;
 
85
    str_charset=cs;
 
86
  }
 
87
  String(const char *str,uint32_t len, const CHARSET_INFO * const cs)
 
88
  {
 
89
    Ptr=(char*) str; str_length=len; Alloced_length=0; alloced=0;
 
90
    str_charset=cs;
 
91
  }
 
92
  String(char *str,uint32_t len, const CHARSET_INFO * const cs)
 
93
  {
 
94
    Ptr=(char*) str; Alloced_length=str_length=len; alloced=0;
 
95
    str_charset=cs;
 
96
  }
 
97
  String(const String &str)
 
98
  {
 
99
    Ptr=str.Ptr ; str_length=str.str_length ;
 
100
    Alloced_length=str.Alloced_length; alloced=0;
 
101
    str_charset=str.str_charset;
 
102
  }
 
103
  static void *operator new(size_t size, MEM_ROOT *mem_root)
 
104
  { return (void*) alloc_root(mem_root, (uint) size); }
80
105
  static void operator delete(void *, size_t)
81
 
  { }
82
 
  static void operator delete(void *, memory::Root *)
83
 
  { }
84
 
  ~String();
 
106
  { TRASH(ptr_arg, size); }
 
107
  static void operator delete(void *, MEM_ROOT *)
 
108
  { /* never called */ }
 
109
  ~String() { free(); }
85
110
 
86
111
  inline void set_charset(const CHARSET_INFO * const charset_arg)
87
112
  { str_charset= charset_arg; }
88
113
  inline const CHARSET_INFO *charset() const { return str_charset; }
89
 
  inline size_t length() const { return str_length;}
90
 
  inline size_t alloced_length() const { return Alloced_length;}
91
 
  inline char& operator [] (size_t i) const { return Ptr[i]; }
92
 
  inline void length(size_t len) { str_length=len ; }
 
114
  inline uint32_t length() const { return str_length;}
 
115
  inline uint32_t alloced_length() const { return Alloced_length;}
 
116
  inline char& operator [] (uint32_t i) const { return Ptr[i]; }
 
117
  inline void length(uint32_t len) { str_length=len ; }
93
118
  inline bool is_empty() { return (str_length == 0); }
94
119
  inline void mark_as_const() { Alloced_length= 0;}
95
120
  inline char *ptr() { return Ptr; }
96
121
  inline const char *ptr() const { return Ptr; }
97
122
  inline char *c_ptr()
98
123
  {
99
 
    if (str_length == Alloced_length)
 
124
    if (!Ptr || Ptr[str_length])                /* Should be safe */
100
125
      (void) realloc(str_length);
101
 
    else
102
 
      Ptr[str_length]= 0;
103
 
 
104
126
    return Ptr;
105
127
  }
106
128
  inline char *c_ptr_quick()
117
139
      (void) realloc(str_length);
118
140
    return Ptr;
119
141
  }
120
 
  inline char *c_str()
121
 
  {
122
 
    if (Ptr && str_length < Alloced_length)
123
 
      Ptr[str_length]=0;
124
 
    else
125
 
      (void) realloc(str_length);
126
 
    return Ptr;
127
 
  }
128
 
  void append_identifier(const char *name, size_t length);
129
142
 
130
 
  void set(String &str,size_t offset,size_t arg_length)
 
143
  void set(String &str,uint32_t offset,uint32_t arg_length)
131
144
  {
132
145
    assert(&str != this);
133
146
    free();
134
 
    Ptr= str.ptr()+offset; str_length=arg_length; alloced=0;
 
147
    Ptr=(char*) str.ptr()+offset; str_length=arg_length; alloced=0;
135
148
    if (str.Alloced_length)
136
149
      Alloced_length=str.Alloced_length-offset;
137
150
    else
138
151
      Alloced_length=0;
139
152
    str_charset=str.str_charset;
140
153
  }
141
 
  inline void set(char *str,size_t arg_length, const CHARSET_INFO * const cs)
142
 
  {
143
 
    free();
144
 
    Ptr= str; str_length=Alloced_length=arg_length ; alloced=0;
145
 
    str_charset=cs;
146
 
  }
147
 
  inline void set(const char *str,size_t arg_length, const CHARSET_INFO * const cs)
148
 
  {
149
 
    free();
150
 
    Ptr= const_cast<char*>(str);
151
 
    str_length=arg_length; Alloced_length=0 ; alloced=0;
152
 
    str_charset=cs;
153
 
  }
154
 
  bool set_ascii(const char *str, size_t arg_length);
155
 
  inline void set_quick(char *str,size_t arg_length, const CHARSET_INFO * const cs)
 
154
  inline void set(char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
 
155
  {
 
156
    free();
 
157
    Ptr=(char*) str; str_length=Alloced_length=arg_length ; alloced=0;
 
158
    str_charset=cs;
 
159
  }
 
160
  inline void set(const char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
 
161
  {
 
162
    free();
 
163
    Ptr=(char*) str; str_length=arg_length; Alloced_length=0 ; alloced=0;
 
164
    str_charset=cs;
 
165
  }
 
166
  bool set_ascii(const char *str, uint32_t arg_length);
 
167
  inline void set_quick(char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
156
168
  {
157
169
    if (!alloced)
158
170
    {
159
 
      Ptr= str; str_length= Alloced_length= arg_length;
 
171
      Ptr=(char*) str; str_length=Alloced_length=arg_length;
160
172
    }
161
 
    str_charset= cs;
 
173
    str_charset=cs;
162
174
  }
163
175
  bool set_int(int64_t num, bool unsigned_flag, const CHARSET_INFO * const cs);
164
176
  bool set(int64_t num, const CHARSET_INFO * const cs)
165
177
  { return set_int(num, false, cs); }
166
178
  bool set(uint64_t num, const CHARSET_INFO * const cs)
167
 
  { return set_int(static_cast<int64_t>(num), true, cs); }
168
 
  bool set_real(double num,size_t decimals, const CHARSET_INFO * const cs);
 
179
  { return set_int((int64_t)num, true, cs); }
 
180
  bool set_real(double num,uint32_t decimals, const CHARSET_INFO * const cs);
169
181
 
170
182
  /*
171
183
    PMG 2004.11.12
205
217
      str_length=0;                             /* Safety */
206
218
    }
207
219
  }
208
 
  inline bool alloc(size_t arg_length)
 
220
  inline bool alloc(uint32_t arg_length)
209
221
  {
210
222
    if (arg_length < Alloced_length)
211
223
      return 0;
212
224
    return real_alloc(arg_length);
213
225
  }
214
 
  bool real_alloc(size_t arg_length);                   // Empties old string
215
 
  bool realloc(size_t arg_length);
216
 
  inline void shrink(size_t arg_length)         // Shrink buffer
 
226
  bool real_alloc(uint32_t arg_length);                 // Empties old string
 
227
  bool realloc(uint32_t arg_length);
 
228
  inline void shrink(uint32_t arg_length)               // Shrink buffer
217
229
  {
218
230
    if (arg_length < Alloced_length)
219
231
    {
220
232
      char *new_ptr;
221
 
      if (!(new_ptr= reinterpret_cast<char*>(::realloc(Ptr,arg_length))))
 
233
      if (!(new_ptr=(char*) ::realloc(Ptr,arg_length)))
222
234
      {
223
 
        Alloced_length = 0;
224
 
        real_alloc(arg_length);
 
235
        Alloced_length = 0;
 
236
        real_alloc(arg_length);
225
237
      }
226
238
      else
227
239
      {
228
 
        Ptr=new_ptr;
229
 
        Alloced_length=arg_length;
 
240
        Ptr=new_ptr;
 
241
        Alloced_length=arg_length;
230
242
      }
231
243
    }
232
244
  }
249
261
 
250
262
  bool copy();                                  // Alloc string if not alloced
251
263
  bool copy(const String &s);                   // Allocate new string
252
 
  bool copy(const std::string&, const CHARSET_INFO * const cs); // Allocate new string
253
 
  bool copy(const char *s,size_t arg_length, const CHARSET_INFO * const cs);    // Allocate new string
254
 
  static bool needs_conversion(size_t arg_length,
 
264
  bool copy(const char *s,uint32_t arg_length, const CHARSET_INFO * const cs);  // Allocate new string
 
265
  static bool needs_conversion(uint32_t arg_length,
255
266
                               const CHARSET_INFO * const cs_from, const CHARSET_INFO * const cs_to,
256
 
                               size_t *offset);
257
 
  bool set_or_copy_aligned(const char *s, size_t arg_length, const CHARSET_INFO * const cs);
258
 
  bool copy(const char*s,size_t arg_length, const CHARSET_INFO * const csfrom,
259
 
            const CHARSET_INFO * const csto, size_t *errors);
 
267
                               uint32_t *offset);
 
268
  bool copy_aligned(const char *s, uint32_t arg_length, uint32_t offset,
 
269
                    const CHARSET_INFO * const cs);
 
270
  bool set_or_copy_aligned(const char *s, uint32_t arg_length, const CHARSET_INFO * const cs);
 
271
  bool copy(const char*s,uint32_t arg_length, const CHARSET_INFO * const csfrom,
 
272
            const CHARSET_INFO * const csto, uint32_t *errors);
260
273
  bool append(const String &s);
261
274
  bool append(const char *s);
262
 
  bool append(const char *s,size_t arg_length);
263
 
  bool append(const char *s,size_t arg_length, const CHARSET_INFO * const cs);
264
 
  bool append_with_prefill(const char *s, size_t arg_length,
265
 
                           size_t full_length, char fill_char);
266
 
  int strstr(const String &search,size_t offset=0); // Returns offset to substring or -1
267
 
  int strrstr(const String &search,size_t offset=0); // Returns offset to substring or -1
268
 
  bool replace(size_t offset,size_t arg_length,const char *to,size_t length);
269
 
  bool replace(size_t offset,size_t arg_length,const String &to);
 
275
  bool append(const char *s,uint32_t arg_length);
 
276
  bool append(const char *s,uint32_t arg_length, const CHARSET_INFO * const cs);
 
277
  bool append(IO_CACHE* file, uint32_t arg_length);
 
278
  bool append_with_prefill(const char *s, uint32_t arg_length,
 
279
                           uint32_t full_length, char fill_char);
 
280
  int strstr(const String &search,uint32_t offset=0); // Returns offset to substring or -1
 
281
  int strrstr(const String &search,uint32_t offset=0); // Returns offset to substring or -1
 
282
  bool replace(uint32_t offset,uint32_t arg_length,const char *to,uint32_t length);
 
283
  bool replace(uint32_t offset,uint32_t arg_length,const String &to);
270
284
  inline bool append(char chr)
271
285
  {
272
286
    if (str_length < Alloced_length)
276
290
    else
277
291
    {
278
292
      if (realloc(str_length+1))
279
 
        return 1;
 
293
        return 1;
280
294
      Ptr[str_length++]=chr;
281
295
    }
282
296
    return 0;
283
297
  }
 
298
  bool fill(uint32_t max_length,char fill);
284
299
  friend int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
285
300
  friend int stringcmp(const String *a,const String *b);
286
 
  friend String *copy_if_not_alloced(String *a,String *b,size_t arg_length);
287
 
  size_t numchars();
288
 
  int charpos(int i,size_t offset=0);
 
301
  friend String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);
 
302
  uint32_t numchars();
 
303
  int charpos(int i,uint32_t offset=0);
289
304
 
290
 
  int reserve(size_t space_needed)
 
305
  int reserve(uint32_t space_needed)
291
306
  {
292
307
    return realloc(str_length + space_needed);
293
308
  }
294
 
  int reserve(size_t space_needed, size_t grow_by);
 
309
  int reserve(uint32_t space_needed, uint32_t grow_by);
295
310
 
296
311
  /*
297
312
    The following append operations do NOT check alloced memory
298
313
    q_*** methods writes values of parameters itself
299
314
    qs_*** methods writes string representation of value
300
315
  */
301
 
  void q_append(const char c);
302
 
  void q_append(const size_t n);
303
 
  void q_append(double d);
304
 
  void q_append(double *d);
305
 
  void q_append(const char *data, size_t data_len);
306
 
  void write_at_position(int position, size_t value);
 
316
  void q_append(const char c)
 
317
  {
 
318
    Ptr[str_length++] = c;
 
319
  }
 
320
  void q_append(const uint32_t n)
 
321
  {
 
322
    int4store(Ptr + str_length, n);
 
323
    str_length += 4;
 
324
  }
 
325
  void q_append(double d)
 
326
  {
 
327
    float8store(Ptr + str_length, d);
 
328
    str_length += 8;
 
329
  }
 
330
  void q_append(double *d)
 
331
  {
 
332
    float8store(Ptr + str_length, *d);
 
333
    str_length += 8;
 
334
  }
 
335
  void q_append(const char *data, uint32_t data_len)
 
336
  {
 
337
    memcpy(Ptr + str_length, data, data_len);
 
338
    str_length += data_len;
 
339
  }
 
340
 
 
341
  void write_at_position(int position, uint32_t value)
 
342
  {
 
343
    int4store(Ptr + position,value);
 
344
  }
 
345
 
 
346
  void qs_append(const char *str, uint32_t len);
 
347
  void qs_append(double d);
 
348
  void qs_append(double *d);
 
349
  inline void qs_append(const char c)
 
350
  {
 
351
     Ptr[str_length]= c;
 
352
     str_length++;
 
353
  }
 
354
  void qs_append(int i);
 
355
  void qs_append(uint32_t i);
307
356
 
308
357
  /* Inline (general) functions used by the protocol functions */
309
358
 
310
 
  inline char *prep_append(size_t arg_length, size_t step_alloc)
 
359
  inline char *prep_append(uint32_t arg_length, uint32_t step_alloc)
311
360
  {
312
 
    size_t new_length= arg_length + str_length;
 
361
    uint32_t new_length= arg_length + str_length;
313
362
    if (new_length > Alloced_length)
314
363
    {
315
364
      if (realloc(new_length + step_alloc))
316
365
        return 0;
317
366
    }
318
 
    size_t old_length= str_length;
 
367
    uint32_t old_length= str_length;
319
368
    str_length+= arg_length;
320
369
    return Ptr+ old_length;                     /* Area to use */
321
370
  }
322
371
 
323
 
  inline bool append(const char *s, size_t arg_length, size_t step_alloc)
 
372
  inline bool append(const char *s, uint32_t arg_length, uint32_t step_alloc)
324
373
  {
325
 
    size_t new_length= arg_length + str_length;
 
374
    uint32_t new_length= arg_length + str_length;
326
375
    if (new_length > Alloced_length && realloc(new_length + step_alloc))
327
376
      return true;
328
377
    memcpy(Ptr+str_length, s, arg_length);
340
389
  }
341
390
};
342
391
 
343
 
bool check_if_only_end_space(const CHARSET_INFO * const cs, char *str,
344
 
                             char *end);
345
 
 
346
 
std::ostream& operator<<(std::ostream& output, const String &str);
347
 
 
348
 
} /* namespace drizzled */
349
 
 
350
 
bool operator==(const drizzled::String &s1, const drizzled::String &s2);
351
 
bool operator!=(const drizzled::String &s1, const drizzled::String &s2);
352
 
 
353
 
 
354
 
#endif /* DRIZZLED_SQL_STRING_H */
 
392
static inline bool check_if_only_end_space(const CHARSET_INFO * const cs, char *str,
 
393
                                           char *end)
 
394
{
 
395
  return str+ cs->cset->scan(cs, str, end, MY_SEQ_SPACES) == end;
 
396
}
 
397
 
 
398
extern "C++" {
 
399
bool operator==(const String &s1, const String &s2);
 
400
bool operator!=(const String &s1, const String &s2);
 
401
}
 
402
 
 
403
#endif /* DRIZZLE_SERVER_SQL_STRING_H */