1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
4
* Copyright (C) 2008 Sun Microsystems
6
* This program is free software; you can redistribute it and/or modify
7
* it under the terms of the GNU General Public License as published by
8
* the Free Software Foundation; version 2 of the License.
10
* This program is distributed in the hope that it will be useful,
11
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13
* GNU General Public License for more details.
15
* You should have received a copy of the GNU General Public License
16
* along with this program; if not, write to the Free Software
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22
#include <drizzled/function/str/substr.h>
28
String *Item_func_substr::val_str(String *str)
31
String *res = args[0]->val_str(str);
32
/* must be int64_t to avoid truncation */
33
int64_t start= args[1]->val_int();
34
/* Assumes that the maximum length of a String is < INT32_MAX. */
35
/* Limit so that code sees out-of-bound value properly. */
36
int64_t length= arg_count == 3 ? args[2]->val_int() : INT32_MAX;
39
if ((null_value=(args[0]->null_value || args[1]->null_value ||
40
(arg_count == 3 && args[2]->null_value))))
43
/* Negative or zero length, will return empty string. */
44
if ((arg_count == 3) && (length <= 0) &&
45
(length == 0 || !args[2]->unsigned_flag))
46
return &my_empty_string;
48
/* Assumes that the maximum length of a String is < INT32_MAX. */
49
/* Set here so that rest of code sees out-of-bound value as such. */
50
if ((length <= 0) || (length > INT32_MAX))
53
/* if "unsigned_flag" is set, we have a *huge* positive number. */
54
/* Assumes that the maximum length of a String is < INT32_MAX. */
55
if ((!args[1]->unsigned_flag && (start < INT32_MIN || start > INT32_MAX)) ||
56
(args[1]->unsigned_flag && ((uint64_t) start > INT32_MAX)))
57
return &my_empty_string;
59
start= ((start < 0) ? res->numchars() + start : start - 1);
60
start= res->charpos((int) start);
61
if ((start < 0) || ((uint) start + 1 > res->length()))
62
return &my_empty_string;
64
length= res->charpos((int) length, (uint32_t) start);
65
tmp_length= res->length() - start;
66
length= min(length, tmp_length);
68
if (!start && (int64_t) res->length() == length)
70
tmp_value.set(*res, (uint32_t) start, (uint32_t) length);
74
void Item_func_substr::fix_length_and_dec()
76
max_length=args[0]->max_length;
78
collation.set(args[0]->collation);
79
if (args[1]->const_item())
81
int32_t start= (int32_t) args[1]->val_int();
83
max_length= ((uint)(-start) > max_length) ? 0 : (uint)(-start);
85
max_length-= min((uint)(start - 1), max_length);
87
if (arg_count == 3 && args[2]->const_item())
89
int32_t length= (int32_t) args[2]->val_int();
93
set_if_smaller(max_length,(uint) length);
95
max_length*= collation.collation->mbmaxlen;
99
void Item_func_substr_index::fix_length_and_dec()
101
max_length= args[0]->max_length;
103
if (agg_arg_charsets(collation, args, 2, MY_COLL_CMP_CONV, 1))
108
String *Item_func_substr_index::val_str(String *str)
111
String *res= args[0]->val_str(str);
112
String *delimiter= args[1]->val_str(&tmp_value);
113
int32_t count= (int32_t) args[2]->val_int();
116
if (args[0]->null_value || args[1]->null_value || args[2]->null_value)
117
{ // string and/or delim are null
122
uint32_t delimiter_length= delimiter->length();
123
if (!res->length() || !delimiter_length || !count)
124
return &my_empty_string; // Wrong parameters
126
res->set_charset(collation.collation);
128
if (use_mb(res->charset()))
130
const char *ptr= res->ptr();
131
const char *strend= ptr+res->length();
132
const char *end= strend-delimiter_length+1;
133
const char *search= delimiter->ptr();
134
const char *search_end= search+delimiter_length;
135
int32_t n=0,c=count,pass;
137
for (pass=(count>0);pass<2;++pass)
144
i=(char*) ptr+1; j=(char*) search+1;
145
while (j != search_end)
146
if (*i++ != *j++) goto skip;
148
else if (!--c) break;
149
ptr+= delimiter_length;
153
if ((l=my_ismbchar(res->charset(), ptr,strend))) ptr+=l;
155
} /* either not found or got total number when count<0 */
156
if (pass == 0) /* count<0 */
159
if (c<=0) return res; /* not found, return original string */
164
if (c) return res; /* Not found, return original string */
165
if (count>0) /* return left part */
167
tmp_value.set(*res,0,(ulong) (ptr-res->ptr()));
169
else /* return right part */
171
ptr+= delimiter_length;
172
tmp_value.set(*res,(ulong) (ptr-res->ptr()), (ulong) (strend-ptr));
180
{ // start counting from the beginning
181
for (offset=0; ; offset+= delimiter_length)
183
if ((int) (offset= res->strstr(*delimiter, offset)) < 0)
184
return res; // Didn't find, return org string
187
tmp_value.set(*res,0,offset);
195
Negative index, start counting at the end
197
for (offset=res->length(); offset ;)
200
this call will result in finding the position pointing to one
201
address space less than where the found substring is located
204
if ((int) (offset= res->strrstr(*delimiter, offset)) < 0)
205
return res; // Didn't find, return org string
207
At this point, we've searched for the substring
208
the number of times as supplied by the index value
212
offset+= delimiter_length;
213
tmp_value.set(*res,offset,res->length()- offset);
220
We always mark tmp_value as const so that if val_str() is called again
221
on this object, we don't disrupt the contents of tmp_value when it was
222
derived from another String.
224
tmp_value.mark_as_const();