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/trim.h>
27
String *Item_func_ltrim::val_str(String *str)
30
char buff[MAX_FIELD_WIDTH], *ptr, *end;
31
String tmp(buff,sizeof(buff),system_charset_info);
32
String *res, *remove_str;
33
uint32_t remove_length;
35
res= args[0]->val_str(str);
36
if ((null_value=args[0]->null_value))
38
remove_str= &remove; /* Default value. */
41
remove_str= args[1]->val_str(&tmp);
42
if ((null_value= args[1]->null_value))
46
if ((remove_length= remove_str->length()) == 0 ||
47
remove_length > res->length())
50
ptr= (char*) res->ptr();
51
end= ptr+res->length();
52
if (remove_length == 1)
54
char chr=(*remove_str)[0];
55
while (ptr != end && *ptr == chr)
60
const char *r_ptr=remove_str->ptr();
62
while (ptr <= end && !memcmp(ptr, r_ptr, remove_length))
66
if (ptr == res->ptr())
68
tmp_value.set(*res,(uint) (ptr - res->ptr()),(uint) (end-ptr));
72
String *Item_func_rtrim::val_str(String *str)
75
char buff[MAX_FIELD_WIDTH], *ptr, *end;
76
String tmp(buff, sizeof(buff), system_charset_info);
77
String *res, *remove_str;
78
uint32_t remove_length;
80
res= args[0]->val_str(str);
81
if ((null_value=args[0]->null_value))
83
remove_str= &remove; /* Default value. */
86
remove_str= args[1]->val_str(&tmp);
87
if ((null_value= args[1]->null_value))
91
if ((remove_length= remove_str->length()) == 0 ||
92
remove_length > res->length())
95
ptr= (char*) res->ptr();
96
end= ptr+res->length();
99
if (remove_length == 1)
101
char chr=(*remove_str)[0];
102
if (use_mb(res->charset()))
106
if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l,p=ptr;
111
while (ptr != end && end[-1] == chr)
116
const char *r_ptr=remove_str->ptr();
117
if (use_mb(res->charset()))
120
while (ptr + remove_length < end)
122
if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
125
if (ptr + remove_length == end && !memcmp(ptr,r_ptr,remove_length))
134
while (ptr + remove_length <= end &&
135
!memcmp(end-remove_length, r_ptr, remove_length))
139
if (end == res->ptr()+res->length())
141
tmp_value.set(*res,0,(uint) (end-res->ptr()));
146
String *Item_func_trim::val_str(String *str)
149
char buff[MAX_FIELD_WIDTH], *ptr, *end;
151
String tmp(buff, sizeof(buff), system_charset_info);
152
String *res, *remove_str;
153
uint32_t remove_length;
155
res= args[0]->val_str(str);
156
if ((null_value=args[0]->null_value))
158
remove_str= &remove; /* Default value. */
161
remove_str= args[1]->val_str(&tmp);
162
if ((null_value= args[1]->null_value))
166
if ((remove_length= remove_str->length()) == 0 ||
167
remove_length > res->length())
170
ptr= (char*) res->ptr();
171
end= ptr+res->length();
172
r_ptr= remove_str->ptr();
173
while (ptr+remove_length <= end && !memcmp(ptr,r_ptr,remove_length))
175
if (use_mb(res->charset()))
180
while (ptr + remove_length < end)
182
if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
185
if (ptr + remove_length == end && !memcmp(ptr,r_ptr,remove_length))
195
while (ptr + remove_length <= end &&
196
!memcmp(end-remove_length,r_ptr,remove_length))
199
if (ptr == res->ptr() && end == ptr+res->length())
201
tmp_value.set(*res,(uint) (ptr - res->ptr()),(uint) (end-ptr));
205
void Item_func_trim::fix_length_and_dec()
207
max_length= args[0]->max_length;
210
collation.set(args[0]->collation);
211
remove.set_charset(collation.collation);
212
remove.set_ascii(" ",1);
216
// Handle character set for args[1] and args[0].
217
// Note that we pass args[1] as the first item, and args[0] as the second.
218
if (agg_arg_charsets(collation, &args[1], 2, MY_COLL_CMP_CONV, -1))
223
void Item_func_trim::print(String *str, enum_query_type query_type)
227
Item_func::print(str, query_type);
230
str->append(Item_func_trim::func_name());
232
str->append(mode_name());
234
args[1]->print(str, query_type);
235
str->append(STRING_WITH_LEN(" from "));
236
args[0]->print(str, query_type);
240
} /* namespace drizzled */