~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_string.h

  • Committer: lbieber
  • Date: 2010-10-07 02:59:11 UTC
  • mfrom: (1818.1.2 build)
  • Revision ID: lbieber@orisndriz08-20101007025911-rz1n8q23hrwxks6v
Merge Brian - Fix a large number of warning issues on ICC. sql_string becomes 64bit
Merge Monty - clean up ICC warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
 
48
48
int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
49
49
int stringcmp(const String *a,const String *b);
50
 
String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);
51
 
uint32_t well_formed_copy_nchars(const CHARSET_INFO * const to_cs,
52
 
                                 char *to, uint32_t to_length,
 
50
String *copy_if_not_alloced(String *a,String *b,size_t arg_length);
 
51
size_t well_formed_copy_nchars(const CHARSET_INFO * const to_cs,
 
52
                                 char *to, size_t to_length,
53
53
                                 const CHARSET_INFO * const from_cs,
54
 
                                 const char *from, uint32_t from_length,
55
 
                                 uint32_t nchars,
 
54
                                 const char *from, size_t from_length,
 
55
                                 size_t nchars,
56
56
                                 const char **well_formed_error_pos,
57
57
                                 const char **cannot_convert_error_pos,
58
58
                                 const char **from_end_pos);
61
61
class String
62
62
{
63
63
  char *Ptr;
64
 
  uint32_t str_length,Alloced_length;
 
64
  size_t str_length,Alloced_length;
65
65
  bool alloced;
66
66
  const CHARSET_INFO *str_charset;
67
67
 
68
68
public:
69
69
  String();
70
 
  String(uint32_t length_arg);
 
70
  String(size_t length_arg);
71
71
  String(const char *str, const CHARSET_INFO * const cs);
72
 
  String(const char *str, uint32_t len, const CHARSET_INFO * const cs);
73
 
  String(char *str, uint32_t len, const CHARSET_INFO * const cs);
 
72
  String(const char *str, size_t len, const CHARSET_INFO * const cs);
 
73
  String(char *str, size_t len, const CHARSET_INFO * const cs);
74
74
  String(const String &str);
75
75
 
76
76
  static void *operator new(size_t size, memory::Root *mem_root);
83
83
  inline void set_charset(const CHARSET_INFO * const charset_arg)
84
84
  { str_charset= charset_arg; }
85
85
  inline const CHARSET_INFO *charset() const { return str_charset; }
86
 
  inline uint32_t length() const { return str_length;}
87
 
  inline uint32_t alloced_length() const { return Alloced_length;}
88
 
  inline char& operator [] (uint32_t i) const { return Ptr[i]; }
89
 
  inline void length(uint32_t len) { str_length=len ; }
 
86
  inline size_t length() const { return str_length;}
 
87
  inline size_t alloced_length() const { return Alloced_length;}
 
88
  inline char& operator [] (size_t i) const { return Ptr[i]; }
 
89
  inline void length(size_t len) { str_length=len ; }
90
90
  inline bool is_empty() { return (str_length == 0); }
91
91
  inline void mark_as_const() { Alloced_length= 0;}
92
92
  inline char *ptr() { return Ptr; }
122
122
      (void) realloc(str_length);
123
123
    return Ptr;
124
124
  }
125
 
  void append_identifier(const char *name, uint32_t length);
 
125
  void append_identifier(const char *name, size_t length);
126
126
 
127
 
  void set(String &str,uint32_t offset,uint32_t arg_length)
 
127
  void set(String &str,size_t offset,size_t arg_length)
128
128
  {
129
129
    assert(&str != this);
130
130
    free();
135
135
      Alloced_length=0;
136
136
    str_charset=str.str_charset;
137
137
  }
138
 
  inline void set(char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
 
138
  inline void set(char *str,size_t arg_length, const CHARSET_INFO * const cs)
139
139
  {
140
140
    free();
141
141
    Ptr= str; str_length=Alloced_length=arg_length ; alloced=0;
142
142
    str_charset=cs;
143
143
  }
144
 
  inline void set(const char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
 
144
  inline void set(const char *str,size_t arg_length, const CHARSET_INFO * const cs)
145
145
  {
146
146
    free();
147
147
    Ptr= const_cast<char*>(str);
148
148
    str_length=arg_length; Alloced_length=0 ; alloced=0;
149
149
    str_charset=cs;
150
150
  }
151
 
  bool set_ascii(const char *str, uint32_t arg_length);
152
 
  inline void set_quick(char *str,uint32_t arg_length, const CHARSET_INFO * const cs)
 
151
  bool set_ascii(const char *str, size_t arg_length);
 
152
  inline void set_quick(char *str,size_t arg_length, const CHARSET_INFO * const cs)
153
153
  {
154
154
    if (!alloced)
155
155
    {
162
162
  { return set_int(num, false, cs); }
163
163
  bool set(uint64_t num, const CHARSET_INFO * const cs)
164
164
  { return set_int(static_cast<int64_t>(num), true, cs); }
165
 
  bool set_real(double num,uint32_t decimals, const CHARSET_INFO * const cs);
 
165
  bool set_real(double num,size_t decimals, const CHARSET_INFO * const cs);
166
166
 
167
167
  /*
168
168
    PMG 2004.11.12
202
202
      str_length=0;                             /* Safety */
203
203
    }
204
204
  }
205
 
  inline bool alloc(uint32_t arg_length)
 
205
  inline bool alloc(size_t arg_length)
206
206
  {
207
207
    if (arg_length < Alloced_length)
208
208
      return 0;
209
209
    return real_alloc(arg_length);
210
210
  }
211
 
  bool real_alloc(uint32_t arg_length);                 // Empties old string
212
 
  bool realloc(uint32_t arg_length);
213
 
  inline void shrink(uint32_t arg_length)               // Shrink buffer
 
211
  bool real_alloc(size_t arg_length);                   // Empties old string
 
212
  bool realloc(size_t arg_length);
 
213
  inline void shrink(size_t arg_length)         // Shrink buffer
214
214
  {
215
215
    if (arg_length < Alloced_length)
216
216
    {
246
246
 
247
247
  bool copy();                                  // Alloc string if not alloced
248
248
  bool copy(const String &s);                   // Allocate new string
249
 
  bool copy(const char *s,uint32_t arg_length, const CHARSET_INFO * const cs);  // Allocate new string
250
 
  static bool needs_conversion(uint32_t arg_length,
 
249
  bool copy(const char *s,size_t arg_length, const CHARSET_INFO * const cs);    // Allocate new string
 
250
  static bool needs_conversion(size_t arg_length,
251
251
                               const CHARSET_INFO * const cs_from, const CHARSET_INFO * const cs_to,
252
 
                               uint32_t *offset);
253
 
  bool set_or_copy_aligned(const char *s, uint32_t arg_length, const CHARSET_INFO * const cs);
254
 
  bool copy(const char*s,uint32_t arg_length, const CHARSET_INFO * const csfrom,
255
 
            const CHARSET_INFO * const csto, uint32_t *errors);
 
252
                               size_t *offset);
 
253
  bool set_or_copy_aligned(const char *s, size_t arg_length, const CHARSET_INFO * const cs);
 
254
  bool copy(const char*s,size_t arg_length, const CHARSET_INFO * const csfrom,
 
255
            const CHARSET_INFO * const csto, size_t *errors);
256
256
  bool append(const String &s);
257
257
  bool append(const char *s);
258
 
  bool append(const char *s,uint32_t arg_length);
259
 
  bool append(const char *s,uint32_t arg_length, const CHARSET_INFO * const cs);
260
 
  bool append_with_prefill(const char *s, uint32_t arg_length,
261
 
                           uint32_t full_length, char fill_char);
262
 
  int strstr(const String &search,uint32_t offset=0); // Returns offset to substring or -1
263
 
  int strrstr(const String &search,uint32_t offset=0); // Returns offset to substring or -1
264
 
  bool replace(uint32_t offset,uint32_t arg_length,const char *to,uint32_t length);
265
 
  bool replace(uint32_t offset,uint32_t arg_length,const String &to);
 
258
  bool append(const char *s,size_t arg_length);
 
259
  bool append(const char *s,size_t arg_length, const CHARSET_INFO * const cs);
 
260
  bool append_with_prefill(const char *s, size_t arg_length,
 
261
                           size_t full_length, char fill_char);
 
262
  int strstr(const String &search,size_t offset=0); // Returns offset to substring or -1
 
263
  int strrstr(const String &search,size_t offset=0); // Returns offset to substring or -1
 
264
  bool replace(size_t offset,size_t arg_length,const char *to,size_t length);
 
265
  bool replace(size_t offset,size_t arg_length,const String &to);
266
266
  inline bool append(char chr)
267
267
  {
268
268
    if (str_length < Alloced_length)
279
279
  }
280
280
  friend int sortcmp(const String *a,const String *b, const CHARSET_INFO * const cs);
281
281
  friend int stringcmp(const String *a,const String *b);
282
 
  friend String *copy_if_not_alloced(String *a,String *b,uint32_t arg_length);
283
 
  uint32_t numchars();
284
 
  int charpos(int i,uint32_t offset=0);
 
282
  friend String *copy_if_not_alloced(String *a,String *b,size_t arg_length);
 
283
  size_t numchars();
 
284
  int charpos(int i,size_t offset=0);
285
285
 
286
 
  int reserve(uint32_t space_needed)
 
286
  int reserve(size_t space_needed)
287
287
  {
288
288
    return realloc(str_length + space_needed);
289
289
  }
290
 
  int reserve(uint32_t space_needed, uint32_t grow_by);
 
290
  int reserve(size_t space_needed, size_t grow_by);
291
291
 
292
292
  /*
293
293
    The following append operations do NOT check alloced memory
295
295
    qs_*** methods writes string representation of value
296
296
  */
297
297
  void q_append(const char c);
298
 
  void q_append(const uint32_t n);
 
298
  void q_append(const size_t n);
299
299
  void q_append(double d);
300
300
  void q_append(double *d);
301
 
  void q_append(const char *data, uint32_t data_len);
302
 
  void write_at_position(int position, uint32_t value);
 
301
  void q_append(const char *data, size_t data_len);
 
302
  void write_at_position(int position, size_t value);
303
303
 
304
304
  /* Inline (general) functions used by the protocol functions */
305
305
 
306
 
  inline char *prep_append(uint32_t arg_length, uint32_t step_alloc)
 
306
  inline char *prep_append(size_t arg_length, size_t step_alloc)
307
307
  {
308
 
    uint32_t new_length= arg_length + str_length;
 
308
    size_t new_length= arg_length + str_length;
309
309
    if (new_length > Alloced_length)
310
310
    {
311
311
      if (realloc(new_length + step_alloc))
312
312
        return 0;
313
313
    }
314
 
    uint32_t old_length= str_length;
 
314
    size_t old_length= str_length;
315
315
    str_length+= arg_length;
316
316
    return Ptr+ old_length;                     /* Area to use */
317
317
  }
318
318
 
319
 
  inline bool append(const char *s, uint32_t arg_length, uint32_t step_alloc)
 
319
  inline bool append(const char *s, size_t arg_length, size_t step_alloc)
320
320
  {
321
 
    uint32_t new_length= arg_length + str_length;
 
321
    size_t new_length= arg_length + str_length;
322
322
    if (new_length > Alloced_length && realloc(new_length + step_alloc))
323
323
      return true;
324
324
    memcpy(Ptr+str_length, s, arg_length);