sql_string.h 11.2 KB
Newer Older
unknown's avatar
unknown committed
1 2 3 4
/* Copyright (C) 2000 MySQL AB

   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
unknown's avatar
unknown committed
5
   the Free Software Foundation; version 2 of the License.
unknown's avatar
unknown committed
6 7

   This program is distributed in the hope that it will be useful,
unknown's avatar
unknown committed
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
unknown's avatar
unknown committed
9 10 11 12 13 14
   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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
unknown's avatar
unknown committed
15 16 17

/* This file is originally from the mysql distribution. Coded by monty */

18
#ifdef USE_PRAGMA_INTERFACE
unknown's avatar
unknown committed
19 20 21 22 23 24 25
#pragma interface			/* gcc class implementation */
#endif

#ifndef NOT_FIXED_DEC
#define NOT_FIXED_DEC			31
#endif

26
class String;
27
int sortcmp(const String *a,const String *b, CHARSET_INFO *cs);
28
String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
unknown's avatar
unknown committed
29 30
uint32 copy_and_convert(char *to, uint32 to_length, CHARSET_INFO *to_cs,
			const char *from, uint32 from_length,
31
			CHARSET_INFO *from_cs, uint *errors);
32 33 34 35 36 37 38 39
uint32 well_formed_copy_nchars(CHARSET_INFO *to_cs,
                               char *to, uint to_length,
                               CHARSET_INFO *from_cs,
                               const char *from, uint from_length,
                               uint nchars,
                               const char **well_formed_error_pos,
                               const char **cannot_convert_error_pos,
                               const char **from_end_pos);
40 41 42
size_t my_copy_with_hex_escaping(CHARSET_INFO *cs,
                                 char *dst, size_t dstlen,
                                 const char *src, size_t srclen);
43

unknown's avatar
unknown committed
44 45 46 47 48
class String
{
  char *Ptr;
  uint32 str_length,Alloced_length;
  bool alloced;
49
  CHARSET_INFO *str_charset;
unknown's avatar
unknown committed
50 51
public:
  String()
52 53
  { 
    Ptr=0; str_length=Alloced_length=0; alloced=0; 
unknown's avatar
unknown committed
54
    str_charset= &my_charset_bin; 
55
  }
unknown's avatar
unknown committed
56
  String(uint32 length_arg)
57 58
  { 
    alloced=0; Alloced_length=0; (void) real_alloc(length_arg); 
unknown's avatar
unknown committed
59
    str_charset= &my_charset_bin;
60
  }
61
  String(const char *str, CHARSET_INFO *cs)
62 63
  { 
    Ptr=(char*) str; str_length=(uint) strlen(str); Alloced_length=0; alloced=0;
64
    str_charset=cs;
65
  }
66
  String(const char *str,uint32 len, CHARSET_INFO *cs)
67 68
  { 
    Ptr=(char*) str; str_length=len; Alloced_length=0; alloced=0;
69
    str_charset=cs;
70
  }
71
  String(char *str,uint32 len, CHARSET_INFO *cs)
72 73
  { 
    Ptr=(char*) str; Alloced_length=str_length=len; alloced=0;
74
    str_charset=cs;
75
  }
unknown's avatar
unknown committed
76
  String(const String &str)
77 78 79 80 81
  { 
    Ptr=str.Ptr ; str_length=str.str_length ;
    Alloced_length=str.Alloced_length; alloced=0; 
    str_charset=str.str_charset;
  }
82 83
  static void *operator new(size_t size, MEM_ROOT *mem_root)
  { return (void*) alloc_root(mem_root, (uint) size); }
84
  static void operator delete(void *ptr_arg,size_t size)
unknown's avatar
unknown committed
85
  { TRASH(ptr_arg, size); }
86
  static void operator delete(void *ptr_arg, MEM_ROOT *mem_root)
unknown's avatar
unknown committed
87
  { /* never called */ }
unknown's avatar
unknown committed
88 89
  ~String() { free(); }

90 91
  inline void set_charset(CHARSET_INFO *charset_arg)
  { str_charset= charset_arg; }
92
  inline CHARSET_INFO *charset() const { return str_charset; }
unknown's avatar
unknown committed
93 94 95 96 97
  inline uint32 length() const { return str_length;}
  inline uint32 alloced_length() const { return Alloced_length;}
  inline char& operator [] (uint32 i) const { return Ptr[i]; }
  inline void length(uint32 len) { str_length=len ; }
  inline bool is_empty() { return (str_length == 0); }
unknown's avatar
unknown committed
98
  inline void mark_as_const() { Alloced_length= 0;}
unknown's avatar
unknown committed
99 100 101 102 103 104 105 106 107 108 109 110 111
  inline const char *ptr() const { return Ptr; }
  inline char *c_ptr()
  {
    if (!Ptr || Ptr[str_length])		/* Should be safe */
      (void) realloc(str_length);
    return Ptr;
  }
  inline char *c_ptr_quick()
  {
    if (Ptr && str_length < Alloced_length)
      Ptr[str_length]=0;
    return Ptr;
  }
unknown's avatar
unknown committed
112 113 114 115 116 117 118 119
  inline char *c_ptr_safe()
  {
    if (Ptr && str_length < Alloced_length)
      Ptr[str_length]=0;
    else
      (void) realloc(str_length);
    return Ptr;
  }
unknown's avatar
unknown committed
120 121 122

  void set(String &str,uint32 offset,uint32 arg_length)
  {
123
    DBUG_ASSERT(&str != this);
unknown's avatar
unknown committed
124 125 126 127 128 129
    free();
    Ptr=(char*) str.ptr()+offset; str_length=arg_length; alloced=0;
    if (str.Alloced_length)
      Alloced_length=str.Alloced_length-offset;
    else
      Alloced_length=0;
130
    str_charset=str.str_charset;
unknown's avatar
unknown committed
131
  }
132
  inline void set(char *str,uint32 arg_length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
133 134 135
  {
    free();
    Ptr=(char*) str; str_length=Alloced_length=arg_length ; alloced=0;
136
    str_charset=cs;
unknown's avatar
unknown committed
137
  }
138
  inline void set(const char *str,uint32 arg_length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
139 140 141
  {
    free();
    Ptr=(char*) str; str_length=arg_length; Alloced_length=0 ; alloced=0;
142
    str_charset=cs;
unknown's avatar
unknown committed
143
  }
144
  bool set_ascii(const char *str, uint32 arg_length);
145
  inline void set_quick(char *str,uint32 arg_length, CHARSET_INFO *cs)
unknown's avatar
unknown committed
146 147 148 149 150
  {
    if (!alloced)
    {
      Ptr=(char*) str; str_length=Alloced_length=arg_length;
    }
151
    str_charset=cs;
unknown's avatar
unknown committed
152
  }
153
  bool set_int(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
unknown's avatar
unknown committed
154
  bool set(longlong num, CHARSET_INFO *cs)
155
  { return set_int(num, false, cs); }
unknown's avatar
unknown committed
156
  bool set(ulonglong num, CHARSET_INFO *cs)
157 158
  { return set_int((longlong)num, true, cs); }
  bool set_real(double num,uint decimals, CHARSET_INFO *cs);
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186

  /*
    PMG 2004.11.12
    This is a method that works the same as perl's "chop". It simply
    drops the last character of a string. This is useful in the case
    of the federated storage handler where I'm building a unknown
    number, list of values and fields to be used in a sql insert
    statement to be run on the remote server, and have a comma after each.
    When the list is complete, I "chop" off the trailing comma

    ex. 
      String stringobj; 
      stringobj.append("VALUES ('foo', 'fi', 'fo',");
      stringobj.chop();
      stringobj.append(")");

    In this case, the value of string was:

    VALUES ('foo', 'fi', 'fo',
    VALUES ('foo', 'fi', 'fo'
    VALUES ('foo', 'fi', 'fo')
      
  */
  inline void chop()
  {
    Ptr[str_length--]= '\0'; 
  }

unknown's avatar
unknown committed
187
  inline void free()
unknown's avatar
unknown committed
188 189
  {
    if (alloced)
unknown's avatar
unknown committed
190
    {
unknown's avatar
unknown committed
191 192 193 194 195
      alloced=0;
      Alloced_length=0;
      my_free(Ptr,MYF(0));
      Ptr=0;
      str_length=0;				/* Safety */
unknown's avatar
unknown committed
196
    }
unknown's avatar
unknown committed
197
  }
unknown's avatar
unknown committed
198 199 200 201 202 203 204 205 206 207 208 209 210 211 212
  inline bool alloc(uint32 arg_length)
  {
    if (arg_length < Alloced_length)
      return 0;
    return real_alloc(arg_length);
  }
  bool real_alloc(uint32 arg_length);			// Empties old string
  bool realloc(uint32 arg_length);
  inline void shrink(uint32 arg_length)		// Shrink buffer
  {
    if (arg_length < Alloced_length)
    {
      char *new_ptr;
      if (!(new_ptr=(char*) my_realloc(Ptr,arg_length,MYF(0))))
      {
unknown's avatar
unknown committed
213
	Alloced_length = 0;
unknown's avatar
unknown committed
214 215 216 217 218 219 220 221 222 223 224 225 226 227
	real_alloc(arg_length);
      }
      else
      {
	Ptr=new_ptr;
	Alloced_length=arg_length;
      }
    }
  }
  bool is_alloced() { return alloced; }
  inline String& operator = (const String &s)
  {
    if (&s != this)
    {
228 229 230 231 232
      /*
        It is forbidden to do assignments like 
        some_string = substring_of_that_string
       */
      DBUG_ASSERT(!s.uses_buffer_owned_by(this));
unknown's avatar
unknown committed
233 234 235 236 237 238 239 240 241
      free();
      Ptr=s.Ptr ; str_length=s.str_length ; Alloced_length=s.Alloced_length;
      alloced=0;
    }
    return *this;
  }

  bool copy();					// Alloc string if not alloced
  bool copy(const String &s);			// Allocate new string
242
  bool copy(const char *s,uint32 arg_length, CHARSET_INFO *cs);	// Allocate new string
unknown's avatar
unknown committed
243 244 245 246 247
  static bool needs_conversion(uint32 arg_length,
  			       CHARSET_INFO *cs_from, CHARSET_INFO *cs_to,
			       uint32 *offset);
  bool copy_aligned(const char *s, uint32 arg_length, uint32 offset,
		    CHARSET_INFO *cs);
unknown's avatar
unknown committed
248
  bool set_or_copy_aligned(const char *s, uint32 arg_length, CHARSET_INFO *cs);
unknown's avatar
unknown committed
249
  bool copy(const char*s,uint32 arg_length, CHARSET_INFO *csfrom,
250
	    CHARSET_INFO *csto, uint *errors);
unknown's avatar
unknown committed
251
  bool append(const String &s);
252 253
  bool append(const char *s);
  bool append(const char *s,uint32 arg_length);
254
  bool append(const char *s,uint32 arg_length, CHARSET_INFO *cs);
255
  bool append(IO_CACHE* file, uint32 arg_length);
unknown's avatar
unknown committed
256 257
  bool append_with_prefill(const char *s, uint32 arg_length, 
			   uint32 full_length, char fill_char);
unknown's avatar
unknown committed
258 259
  int strstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
  int strrstr(const String &search,uint32 offset=0); // Returns offset to substring or -1
260
  bool replace(uint32 offset,uint32 arg_length,const char *to,uint32 length);
unknown's avatar
unknown committed
261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277
  bool replace(uint32 offset,uint32 arg_length,const String &to);
  inline bool append(char chr)
  {
    if (str_length < Alloced_length)
    {
      Ptr[str_length++]=chr;
    }
    else
    {
      if (realloc(str_length+1))
	return 1;
      Ptr[str_length++]=chr;
    }
    return 0;
  }
  bool fill(uint32 max_length,char fill);
  void strip_sp();
278
  friend int sortcmp(const String *a,const String *b, CHARSET_INFO *cs);
unknown's avatar
unknown committed
279
  friend int stringcmp(const String *a,const String *b);
unknown's avatar
unknown committed
280 281 282
  friend String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
  uint32 numchars();
  int charpos(int i,uint32 offset=0);
unknown's avatar
unknown committed
283 284 285 286 287 288 289

  int reserve(uint32 space_needed)
  {
    return realloc(str_length + space_needed);
  }
  int reserve(uint32 space_needed, uint32 grow_by);

unknown's avatar
unknown committed
290 291 292 293 294
  /*
    The following append operations do NOT check alloced memory
    q_*** methods writes values of parameters itself
    qs_*** methods writes string representation of value
  */
unknown's avatar
unknown committed
295
  void q_append(const char c)
unknown's avatar
unknown committed
296 297 298
  {
    Ptr[str_length++] = c;
  }
unknown's avatar
unknown committed
299
  void q_append(const uint32 n)
unknown's avatar
unknown committed
300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319
  {
    int4store(Ptr + str_length, n);
    str_length += 4;
  }
  void q_append(double d)
  {
    float8store(Ptr + str_length, d);
    str_length += 8;
  }
  void q_append(double *d)
  {
    float8store(Ptr + str_length, *d);
    str_length += 8;
  }
  void q_append(const char *data, uint32 data_len)
  {
    memcpy(Ptr + str_length, data, data_len);
    str_length += data_len;
  }

unknown's avatar
unknown committed
320
  void write_at_position(int position, uint32 value)
unknown's avatar
unknown committed
321 322 323 324
  {
    int4store(Ptr + position,value);
  }

unknown's avatar
unknown committed
325
  void qs_append(const char *str, uint32 len);
unknown's avatar
unknown committed
326 327
  void qs_append(double d);
  void qs_append(double *d);
unknown's avatar
unknown committed
328 329 330 331 332
  inline void qs_append(const char c)
  {
     Ptr[str_length]= c;
     str_length++;
  }
333 334
  void qs_append(int i);
  void qs_append(uint i);
335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359

  /* Inline (general) functions used by the protocol functions */

  inline char *prep_append(uint32 arg_length, uint32 step_alloc)
  {
    uint32 new_length= arg_length + str_length;
    if (new_length > Alloced_length)
    {
      if (realloc(new_length + step_alloc))
        return 0;
    }
    uint32 old_length= str_length;
    str_length+= arg_length;
    return Ptr+ old_length;			/* Area to use */
  }

  inline bool append(const char *s, uint32 arg_length, uint32 step_alloc)
  {
    uint32 new_length= arg_length + str_length;
    if (new_length > Alloced_length && realloc(new_length + step_alloc))
      return TRUE;
    memcpy(Ptr+str_length, s, arg_length);
    str_length+= arg_length;
    return FALSE;
  }
unknown's avatar
unknown committed
360
  void print(String *print);
361 362 363

  /* Swap two string objects. Efficient way to exchange data without memcpy. */
  void swap(String &s);
364 365 366 367 368

  inline bool uses_buffer_owned_by(const String *s) const
  {
    return (s->alloced && Ptr >= s->Ptr && Ptr < s->Ptr + s->str_length);
  }
unknown's avatar
unknown committed
369
};
370 371 372 373 374 375

static inline bool check_if_only_end_space(CHARSET_INFO *cs, char *str, 
                                           char *end)
{
  return str+ cs->cset->scan(cs, str, end, MY_SEQ_SPACES) == end;
}