2009-09-23 23:32:31 +02:00
|
|
|
#ifndef SQL_STRING_INCLUDED
|
|
|
|
#define SQL_STRING_INCLUDED
|
|
|
|
|
2001-12-06 13:10:51 +01:00
|
|
|
/* 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
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
2000-07-31 21:29:14 +02:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2001-12-06 13:10:51 +01:00
|
|
|
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 */
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
/* This file is originally from the mysql distribution. Coded by monty */
|
|
|
|
|
2005-05-04 15:05:56 +02:00
|
|
|
#ifdef USE_PRAGMA_INTERFACE
|
2000-07-31 21:29:14 +02:00
|
|
|
#pragma interface /* gcc class implementation */
|
|
|
|
#endif
|
|
|
|
|
2001-01-27 00:20:56 +01:00
|
|
|
class String;
|
2003-03-04 15:01:59 +01:00
|
|
|
int sortcmp(const String *a,const String *b, CHARSET_INFO *cs);
|
2001-01-27 00:20:56 +01:00
|
|
|
String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
|
2003-05-21 20:39:58 +02:00
|
|
|
uint32 copy_and_convert(char *to, uint32 to_length, CHARSET_INFO *to_cs,
|
|
|
|
const char *from, uint32 from_length,
|
2004-10-29 14:00:39 +02:00
|
|
|
CHARSET_INFO *from_cs, uint *errors);
|
2006-10-30 07:14:03 +01:00
|
|
|
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);
|
2008-02-29 14:56:50 +01:00
|
|
|
size_t my_copy_with_hex_escaping(CHARSET_INFO *cs,
|
|
|
|
char *dst, size_t dstlen,
|
|
|
|
const char *src, size_t srclen);
|
2009-07-31 19:14:52 +02:00
|
|
|
uint convert_to_printable(char *to, size_t to_len,
|
|
|
|
const char *from, size_t from_len,
|
|
|
|
CHARSET_INFO *from_cs, size_t nbytes= 0);
|
2001-01-27 00:20:56 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
class String
|
|
|
|
{
|
|
|
|
char *Ptr;
|
|
|
|
uint32 str_length,Alloced_length;
|
|
|
|
bool alloced;
|
2002-03-07 12:23:24 +01:00
|
|
|
CHARSET_INFO *str_charset;
|
2000-07-31 21:29:14 +02:00
|
|
|
public:
|
|
|
|
String()
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
Ptr=0; str_length=Alloced_length=0; alloced=0;
|
2003-02-26 09:29:17 +01:00
|
|
|
str_charset= &my_charset_bin;
|
2002-03-07 12:23:24 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
String(uint32 length_arg)
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
alloced=0; Alloced_length=0; (void) real_alloc(length_arg);
|
2003-02-26 09:29:17 +01:00
|
|
|
str_charset= &my_charset_bin;
|
2002-03-07 12:23:24 +01:00
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
String(const char *str, CHARSET_INFO *cs)
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
Ptr=(char*) str; str_length=(uint) strlen(str); Alloced_length=0; alloced=0;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2002-03-07 12:23:24 +01:00
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
String(const char *str,uint32 len, CHARSET_INFO *cs)
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
Ptr=(char*) str; str_length=len; Alloced_length=0; alloced=0;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2002-03-07 12:23:24 +01:00
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
String(char *str,uint32 len, CHARSET_INFO *cs)
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
Ptr=(char*) str; Alloced_length=str_length=len; alloced=0;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2002-03-07 12:23:24 +01:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
String(const String &str)
|
2002-03-07 12:23:24 +01:00
|
|
|
{
|
|
|
|
Ptr=str.Ptr ; str_length=str.str_length ;
|
|
|
|
Alloced_length=str.Alloced_length; alloced=0;
|
|
|
|
str_charset=str.str_charset;
|
|
|
|
}
|
Bug#38296 (low memory crash with many conditions in a query)
This fix is for 5.0 only : back porting the 6.0 patch manually
The parser code in sql/sql_yacc.yy needs to be more robust to out of
memory conditions, so that when parsing a query fails due to OOM,
the thread gracefully returns an error.
Before this fix, a new/alloc returning NULL could:
- cause a crash, if dereferencing the NULL pointer,
- produce a corrupted parsed tree, containing NULL nodes,
- alter the semantic of a query, by silently dropping token values or nodes
With this fix:
- C++ constructors are *not* executed with a NULL "this" pointer
when operator new fails.
This is achieved by declaring "operator new" with a "throw ()" clause,
so that a failed new gracefully returns NULL on OOM conditions.
- calls to new/alloc are tested for a NULL result,
- The thread diagnostic area is set to an error status when OOM occurs.
This ensures that a request failing in the server properly returns an
ER_OUT_OF_RESOURCES error to the client.
- OOM conditions cause the parser to stop immediately (MYSQL_YYABORT).
This prevents causing further crashes when using a partially built parsed
tree in further rules in the parser.
No test scripts are provided, since automating OOM failures is not
instrumented in the server.
Tested under the debugger, to verify that an error in alloc_root cause the
thread to returns gracefully all the way to the client application, with
an ER_OUT_OF_RESOURCES error.
2008-08-11 18:10:00 +02:00
|
|
|
static void *operator new(size_t size, MEM_ROOT *mem_root) throw ()
|
2003-06-04 17:28:51 +02:00
|
|
|
{ return (void*) alloc_root(mem_root, (uint) size); }
|
2004-10-22 17:44:51 +02:00
|
|
|
static void operator delete(void *ptr_arg,size_t size)
|
2004-11-28 15:53:17 +01:00
|
|
|
{ TRASH(ptr_arg, size); }
|
2005-02-15 01:55:44 +01:00
|
|
|
static void operator delete(void *ptr_arg, MEM_ROOT *mem_root)
|
2005-02-15 20:06:55 +01:00
|
|
|
{ /* never called */ }
|
2000-07-31 21:29:14 +02:00
|
|
|
~String() { free(); }
|
|
|
|
|
2006-12-14 23:51:37 +01:00
|
|
|
inline void set_charset(CHARSET_INFO *charset_arg)
|
|
|
|
{ str_charset= charset_arg; }
|
2002-03-07 12:23:24 +01:00
|
|
|
inline CHARSET_INFO *charset() const { return str_charset; }
|
2000-07-31 21:29:14 +02:00
|
|
|
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); }
|
2005-03-21 22:41:28 +01:00
|
|
|
inline void mark_as_const() { Alloced_length= 0;}
|
2000-07-31 21:29:14 +02:00
|
|
|
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;
|
|
|
|
}
|
2004-08-19 03:02:09 +02:00
|
|
|
inline char *c_ptr_safe()
|
|
|
|
{
|
|
|
|
if (Ptr && str_length < Alloced_length)
|
|
|
|
Ptr[str_length]=0;
|
|
|
|
else
|
|
|
|
(void) realloc(str_length);
|
|
|
|
return Ptr;
|
|
|
|
}
|
Backport of revno 2630.28.10, 2630.28.31, 2630.28.26, 2630.33.1,
2630.39.1, 2630.28.29, 2630.34.3, 2630.34.2, 2630.34.1, 2630.29.29,
2630.29.28, 2630.31.1, 2630.28.13, 2630.28.10, 2617.23.14 and
some other minor revisions.
This patch implements:
WL#4264 "Backup: Stabilize Service Interface" -- all the
server prerequisites except si_objects.{h,cc} themselves (they can
be just copied over, when needed).
WL#4435: Support OUT-parameters in prepared statements.
(and all issues in the initial patches for these two
tasks, that were discovered in pushbuild and during testing).
Bug#39519: mysql_stmt_close() should flush all data
associated with the statement.
After execution of a prepared statement, send OUT parameters of the invoked
stored procedure, if any, to the client.
When using the binary protocol, send the parameters in an additional result
set over the wire. When using the text protocol, assign out parameters to
the user variables from the CALL(@var1, @var2, ...) specification.
The following refactoring has been made:
- Protocol::send_fields() was renamed to Protocol::send_result_set_metadata();
- A new Protocol::send_result_set_row() was introduced to incapsulate
common functionality for sending row data.
- Signature of Protocol::prepare_for_send() was changed: this operation
does not need a list of items, the number of items is fully sufficient.
The following backward incompatible changes have been made:
- CLIENT_MULTI_RESULTS is now enabled by default in the client;
- CLIENT_PS_MULTI_RESUTLS is now enabled by default in the client.
2009-10-21 22:02:06 +02:00
|
|
|
LEX_STRING lex_string() const
|
|
|
|
{
|
|
|
|
LEX_STRING lex_string = { (char*) ptr(), length() };
|
|
|
|
return lex_string;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
|
|
|
|
void set(String &str,uint32 offset,uint32 arg_length)
|
|
|
|
{
|
2004-08-12 08:28:39 +02:00
|
|
|
DBUG_ASSERT(&str != this);
|
2000-07-31 21:29:14 +02:00
|
|
|
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;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=str.str_charset;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
inline void set(char *str,uint32 arg_length, CHARSET_INFO *cs)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
free();
|
|
|
|
Ptr=(char*) str; str_length=Alloced_length=arg_length ; alloced=0;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
inline void set(const char *str,uint32 arg_length, CHARSET_INFO *cs)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
free();
|
|
|
|
Ptr=(char*) str; str_length=arg_length; Alloced_length=0 ; alloced=0;
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2003-06-03 11:59:17 +02:00
|
|
|
bool set_ascii(const char *str, uint32 arg_length);
|
2002-05-17 13:29:52 +02:00
|
|
|
inline void set_quick(char *str,uint32 arg_length, CHARSET_INFO *cs)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
|
|
|
if (!alloced)
|
|
|
|
{
|
|
|
|
Ptr=(char*) str; str_length=Alloced_length=arg_length;
|
|
|
|
}
|
2002-05-17 13:29:52 +02:00
|
|
|
str_charset=cs;
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2006-06-16 12:17:20 +02:00
|
|
|
bool set_int(longlong num, bool unsigned_flag, CHARSET_INFO *cs);
|
2006-06-14 23:09:03 +02:00
|
|
|
bool set(longlong num, CHARSET_INFO *cs)
|
2006-06-16 12:17:20 +02:00
|
|
|
{ return set_int(num, false, cs); }
|
2006-06-14 23:09:03 +02:00
|
|
|
bool set(ulonglong num, CHARSET_INFO *cs)
|
2006-06-16 12:17:20 +02:00
|
|
|
{ return set_int((longlong)num, true, cs); }
|
|
|
|
bool set_real(double num,uint decimals, CHARSET_INFO *cs);
|
2004-11-13 00:56:25 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
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';
|
|
|
|
}
|
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
inline void free()
|
2000-10-10 23:48:03 +02:00
|
|
|
{
|
|
|
|
if (alloced)
|
2000-07-31 21:29:14 +02:00
|
|
|
{
|
2000-10-10 23:48:03 +02:00
|
|
|
alloced=0;
|
|
|
|
Alloced_length=0;
|
|
|
|
my_free(Ptr,MYF(0));
|
|
|
|
Ptr=0;
|
|
|
|
str_length=0; /* Safety */
|
2000-07-31 21:29:14 +02:00
|
|
|
}
|
2000-10-10 23:48:03 +02:00
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
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))))
|
|
|
|
{
|
2000-10-29 06:26:48 +01:00
|
|
|
Alloced_length = 0;
|
2000-07-31 21:29:14 +02:00
|
|
|
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)
|
|
|
|
{
|
2005-02-04 07:14:22 +01:00
|
|
|
/*
|
|
|
|
It is forbidden to do assignments like
|
|
|
|
some_string = substring_of_that_string
|
|
|
|
*/
|
|
|
|
DBUG_ASSERT(!s.uses_buffer_owned_by(this));
|
2000-07-31 21:29:14 +02:00
|
|
|
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
|
2002-11-06 14:43:22 +01:00
|
|
|
bool copy(const char *s,uint32 arg_length, CHARSET_INFO *cs); // Allocate new string
|
2004-02-09 12:31:03 +01:00
|
|
|
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);
|
2004-01-19 16:16:30 +01:00
|
|
|
bool set_or_copy_aligned(const char *s, uint32 arg_length, CHARSET_INFO *cs);
|
2002-11-25 16:33:51 +01:00
|
|
|
bool copy(const char*s,uint32 arg_length, CHARSET_INFO *csfrom,
|
2004-10-29 14:00:39 +02:00
|
|
|
CHARSET_INFO *csto, uint *errors);
|
2000-07-31 21:29:14 +02:00
|
|
|
bool append(const String &s);
|
2004-05-25 12:54:03 +02:00
|
|
|
bool append(const char *s);
|
|
|
|
bool append(const char *s,uint32 arg_length);
|
2003-03-18 10:42:45 +01:00
|
|
|
bool append(const char *s,uint32 arg_length, CHARSET_INFO *cs);
|
2000-11-15 22:00:06 +01:00
|
|
|
bool append(IO_CACHE* file, uint32 arg_length);
|
2003-07-08 12:06:05 +02:00
|
|
|
bool append_with_prefill(const char *s, uint32 arg_length,
|
|
|
|
uint32 full_length, char fill_char);
|
2000-07-31 21:29:14 +02:00
|
|
|
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
|
2003-04-04 19:33:17 +02:00
|
|
|
bool replace(uint32 offset,uint32 arg_length,const char *to,uint32 length);
|
2000-07-31 21:29:14 +02:00
|
|
|
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();
|
2003-03-04 15:01:59 +01:00
|
|
|
friend int sortcmp(const String *a,const String *b, CHARSET_INFO *cs);
|
2004-02-16 09:03:25 +01:00
|
|
|
friend int stringcmp(const String *a,const String *b);
|
2000-07-31 21:29:14 +02:00
|
|
|
friend String *copy_if_not_alloced(String *a,String *b,uint32 arg_length);
|
|
|
|
uint32 numchars();
|
|
|
|
int charpos(int i,uint32 offset=0);
|
2002-02-22 12:24:42 +01:00
|
|
|
|
|
|
|
int reserve(uint32 space_needed)
|
|
|
|
{
|
|
|
|
return realloc(str_length + space_needed);
|
|
|
|
}
|
|
|
|
int reserve(uint32 space_needed, uint32 grow_by);
|
|
|
|
|
2002-06-04 07:23:57 +02:00
|
|
|
/*
|
|
|
|
The following append operations do NOT check alloced memory
|
|
|
|
q_*** methods writes values of parameters itself
|
|
|
|
qs_*** methods writes string representation of value
|
|
|
|
*/
|
2004-03-04 07:50:37 +01:00
|
|
|
void q_append(const char c)
|
2002-02-22 12:24:42 +01:00
|
|
|
{
|
|
|
|
Ptr[str_length++] = c;
|
|
|
|
}
|
2002-12-18 14:17:35 +01:00
|
|
|
void q_append(const uint32 n)
|
2002-02-22 12:24:42 +01:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2004-03-04 07:50:37 +01:00
|
|
|
void write_at_position(int position, uint32 value)
|
2002-02-22 12:24:42 +01:00
|
|
|
{
|
|
|
|
int4store(Ptr + position,value);
|
|
|
|
}
|
|
|
|
|
2004-03-04 07:50:37 +01:00
|
|
|
void qs_append(const char *str, uint32 len);
|
2002-02-22 12:24:42 +01:00
|
|
|
void qs_append(double d);
|
|
|
|
void qs_append(double *d);
|
2004-03-04 07:50:37 +01:00
|
|
|
inline void qs_append(const char c)
|
|
|
|
{
|
|
|
|
Ptr[str_length]= c;
|
|
|
|
str_length++;
|
|
|
|
}
|
2004-03-29 11:16:45 +02:00
|
|
|
void qs_append(int i);
|
|
|
|
void qs_append(uint i);
|
2002-12-11 08:17:51 +01:00
|
|
|
|
|
|
|
/* 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;
|
|
|
|
}
|
2003-11-03 11:28:36 +01:00
|
|
|
void print(String *print);
|
2004-05-25 00:03:49 +02:00
|
|
|
|
|
|
|
/* Swap two string objects. Efficient way to exchange data without memcpy. */
|
|
|
|
void swap(String &s);
|
2005-02-04 07:14:22 +01:00
|
|
|
|
|
|
|
inline bool uses_buffer_owned_by(const String *s) const
|
|
|
|
{
|
|
|
|
return (s->alloced && Ptr >= s->Ptr && Ptr < s->Ptr + s->str_length);
|
|
|
|
}
|
2009-07-31 19:14:52 +02:00
|
|
|
bool is_ascii() const
|
|
|
|
{
|
|
|
|
if (length() == 0)
|
|
|
|
return TRUE;
|
|
|
|
if (charset()->mbminlen > 1)
|
|
|
|
return FALSE;
|
|
|
|
for (const char *c= ptr(), *end= c + length(); c < end; c++)
|
|
|
|
{
|
|
|
|
if (!my_isascii(*c))
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
return TRUE;
|
|
|
|
}
|
2000-07-31 21:29:14 +02:00
|
|
|
};
|
2006-11-28 14:44:11 +01:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2009-09-23 23:32:31 +02:00
|
|
|
|
|
|
|
#endif /* SQL_STRING_INCLUDED */
|