~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/str/trim.cc

  • Committer: Monty Taylor
  • Date: 2010-12-24 02:13:05 UTC
  • mto: This revision was merged to the branch mainline in revision 2038.
  • Revision ID: mordred@inaugust.com-20101224021305-e3slv1cyjczqorij
Changed the bzrignore file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
 
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include <drizzled/server_includes.h>
21
 
#include CSTDINT_H
22
 
#include <drizzled/functions/str/trim.h>
 
20
#include "config.h"
 
21
 
 
22
#include <drizzled/function/str/trim.h>
 
23
 
 
24
namespace drizzled
 
25
{
23
26
 
24
27
String *Item_func_ltrim::val_str(String *str)
25
28
{
91
94
 
92
95
  ptr= (char*) res->ptr();
93
96
  end= ptr+res->length();
94
 
#ifdef USE_MB
95
97
  char *p=ptr;
96
98
  register uint32_t l;
97
 
#endif
98
99
  if (remove_length == 1)
99
100
  {
100
101
    char chr=(*remove_str)[0];
101
 
#ifdef USE_MB
102
102
    if (use_mb(res->charset()))
103
103
    {
104
104
      while (ptr < end)
105
105
      {
106
 
        if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l,p=ptr;
107
 
        else ++ptr;
 
106
        if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l,p=ptr;
 
107
        else ++ptr;
108
108
      }
109
109
      ptr=p;
110
110
    }
111
 
#endif
112
111
    while (ptr != end  && end[-1] == chr)
113
112
      end--;
114
113
  }
115
114
  else
116
115
  {
117
116
    const char *r_ptr=remove_str->ptr();
118
 
#ifdef USE_MB
119
117
    if (use_mb(res->charset()))
120
118
    {
121
 
  loop:
 
119
loop:
122
120
      while (ptr + remove_length < end)
123
121
      {
124
 
        if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
125
 
        else ++ptr;
 
122
        if ((l=my_ismbchar(res->charset(), ptr,end))) ptr+=l;
 
123
        else ++ptr;
126
124
      }
127
125
      if (ptr + remove_length == end && !memcmp(ptr,r_ptr,remove_length))
128
126
      {
129
 
        end-=remove_length;
130
 
        ptr=p;
131
 
        goto loop;
 
127
        end-=remove_length;
 
128
        ptr=p;
 
129
        goto loop;
132
130
      }
133
131
    }
134
132
    else
135
 
#endif /* USE_MB */
136
133
    {
137
134
      while (ptr + remove_length <= end &&
138
 
             !memcmp(end-remove_length, r_ptr, remove_length))
139
 
        end-=remove_length;
 
135
          !memcmp(end-remove_length, r_ptr, remove_length))
 
136
        end-=remove_length;
140
137
    }
141
138
  }
142
139
  if (end == res->ptr()+res->length())
175
172
  r_ptr= remove_str->ptr();
176
173
  while (ptr+remove_length <= end && !memcmp(ptr,r_ptr,remove_length))
177
174
    ptr+=remove_length;
178
 
#ifdef USE_MB
179
175
  if (use_mb(res->charset()))
180
176
  {
181
177
    char *p=ptr;
195
191
    ptr=p;
196
192
  }
197
193
  else
198
 
#endif /* USE_MB */
199
194
  {
200
195
    while (ptr + remove_length <= end &&
201
196
           !memcmp(end-remove_length,r_ptr,remove_length))
241
236
  args[0]->print(str, query_type);
242
237
  str->append(')');
243
238
}
 
239
 
 
240
} /* namespace drizzled */