53
my_str_malloc() and my_str_free() are assigned to implementations in
54
strings/alloc.c, but can be overridden in the calling program.
56
extern void *(*my_str_malloc)(size_t);
57
extern void (*my_str_free)(void *);
59
#define strmov_overlapp(A,B) stpcpy(A,B)
51
#define strmov_overlapp(A,B) my_stpcpy(A,B)
60
52
#define strmake_overlapp(A,B,C) strmake(A,B,C)
62
54
extern void bmove_upp(unsigned char *dst,const unsigned char *src,size_t len);
64
56
extern void bchange(unsigned char *dst,size_t old_len,const unsigned char *src,
65
57
size_t new_len,size_t tot_len);
66
extern char *strend(const char *s);
67
58
extern char *strfield(char *src,int fields,int chars,int blanks,
69
60
extern char *strfill(char * s,size_t len,char fill);
140
116
(DBL_DIG + 2) significant digits + sign + "." + ("e-NNN" or
141
117
MAX_DECPT_FOR_F_FORMAT zeros for cases when |x|<1 and the 'f' format is used).
143
#define MY_GCVT_MAX_FIELD_WIDTH (DBL_DIG + 4 + max(5, MAX_DECPT_FOR_F_FORMAT))
119
#define MY_GCVT_MAX_FIELD_WIDTH (DBL_DIG + 4 + cmax(5, MAX_DECPT_FOR_F_FORMAT))
146
122
extern char *llstr(int64_t value,char *buff);
147
123
extern char *ullstr(int64_t value,char *buff);
149
extern char *int2str(long val, char *dst, int radix, int upcase);
150
extern char *int10_to_str(long val,char *dst,int radix);
151
extern char *str2int(const char *src,int radix,long lower,long upper,
125
extern char *int2str(int32_t val, char *dst, int radix, int upcase);
126
extern char *int10_to_str(int32_t val,char *dst,int radix);
153
127
int64_t my_strtoll10(const char *nptr, char **endptr, int *error);
154
#if SIZEOF_LONG == SIZEOF_LONG_LONG
155
#define int64_t2str(A,B,C) int2str((A),(B),(C),1)
156
#define int64_t10_to_str(A,B,C) int10_to_str((A),(B),(C))
158
#define strtoll(A,B,C) strtol((A),(B),(C))
159
#define strtoull(A,B,C) strtoul((A),(B),(C))
160
#ifndef HAVE_STRTOULL
161
#define HAVE_STRTOULL
167
128
extern char *int64_t2str(int64_t val,char *dst,int radix);
168
129
extern char *int64_t10_to_str(int64_t val,char *dst,int radix);
169
#if (!defined(HAVE_STRTOULL) || defined(NO_STRTOLL_PROTO))
170
extern int64_t strtoll(const char *str, char **ptr, int base);
171
extern uint64_t strtoull(const char *str, char **ptr, int base);
176
132
#if defined(__cplusplus)
181
LEX_STRING -- a pair of a C-string and its length.
185
/* This definition must match the one given in mysql/plugin.h */
186
struct st_mysql_lex_string
192
typedef struct st_mysql_lex_string LEX_STRING;
194
#define STRING_WITH_LEN(X) (X), ((size_t) (sizeof(X) - 1))
195
#define USTRING_WITH_LEN(X) ((unsigned char*) X), ((size_t) (sizeof(X) - 1))
196
#define C_STRING_WITH_LEN(X) ((char *) (X)), ((size_t) (sizeof(X) - 1))
198
/* SPACE_INT is a word that contains only spaces */
200
#define SPACE_INT 0x20202020
201
#elif SIZEOF_INT == 8
202
#define SPACE_INT 0x2020202020202020
204
#error define the appropriate constant for a word full of spaces
208
138
Skip trailing space.
210
On most systems reading memory in larger chunks (ideally equal to the size of
211
the chinks that the machine physically reads from memory) causes fewer memory
212
access loops and hence increased performance.
213
This is why the 'int' type is used : it's closest to that (according to how
215
So when we determine the amount of whitespace at the end of a string we do
217
1. We divide the string into 3 zones :
218
a) from the start of the string (__start) to the first multiple
219
of sizeof(int) (__start_words)
220
b) from the end of the string (__end) to the last multiple of sizeof(int)
222
c) a zone that is aligned to sizeof(int) and can be safely accessed
224
2. We start comparing backwards from (c) char-by-char. If all we find is
225
space then we continue
226
3. If there are elements in zone (b) we compare them as unsigned ints to a
227
int mask (SPACE_INT) consisting of all spaces
228
4. Finally we compare the remaining part (a) of the string char by char.
229
This covers for the last non-space unsigned int from 3. (if any)
231
This algorithm works well for relatively larger strings, but it will slow
232
the things down for smaller strings (because of the additional calculations
233
and checks compared to the naive method). Thus the barrier of length 20
236
140
@param ptr pointer to the input string
237
141
@param len the length of the string
238
142
@return the last non-space character
241
static inline const unsigned char *skip_trailing_space(const unsigned char *ptr,size_t len)
145
static inline const unsigned char *
146
skip_trailing_space(const unsigned char *ptr, size_t len)
243
148
const unsigned char *end= ptr + len;
247
const unsigned char *end_words= (const unsigned char *)(intptr_t)
248
(((uint64_t)(intptr_t)end) / SIZEOF_INT * SIZEOF_INT);
249
const unsigned char *start_words= (const unsigned char *)(intptr_t)
250
((((uint64_t)(intptr_t)ptr) + SIZEOF_INT - 1) / SIZEOF_INT * SIZEOF_INT);
252
assert(((uint64_t)(intptr_t)ptr) >= SIZEOF_INT);
255
while (end > end_words && end[-1] == 0x20)
257
if (end[-1] == 0x20 && start_words < end_words)
258
while (end > start_words && ((const unsigned *)end)[-1] == SPACE_INT)
262
while (end > ptr && end[-1] == 0x20)
150
while (end > ptr && isspace(*--end))
155
#endif /* DRIZZLED_INTERNAL_M_STRING_H */