~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/str/right.cc

  • Committer: Monty Taylor
  • Date: 2008-11-07 04:45:58 UTC
  • mfrom: (574.3.4 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 579.
  • Revision ID: monty@inaugust.com-20081107044558-2me2c70ksfr3qs9i
Merged from Lee (and from trunk by proxy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
3
 *
 
4
 *  Copyright (C) 2008 Sun Microsystems
 
5
 *
 
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.
 
9
 *
 
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.
 
14
 *
 
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
 
18
 */
 
19
 
 
20
#include <drizzled/server_includes.h>
 
21
#include CSTDINT_H
 
22
#include <drizzled/functions/str/right.h>
 
23
 
 
24
String *Item_func_right::val_str(String *str)
 
25
{
 
26
  assert(fixed == 1);
 
27
  String *res= args[0]->val_str(str);
 
28
  /* must be int64_t to avoid truncation */
 
29
  int64_t length= args[1]->val_int();
 
30
 
 
31
  if ((null_value=(args[0]->null_value || args[1]->null_value)))
 
32
    return 0; /* purecov: inspected */
 
33
 
 
34
  /* if "unsigned_flag" is set, we have a *huge* positive number. */
 
35
  if ((length <= 0) && (!args[1]->unsigned_flag))
 
36
    return &my_empty_string; /* purecov: inspected */
 
37
 
 
38
  if (res->length() <= (uint64_t) length)
 
39
    return res; /* purecov: inspected */
 
40
 
 
41
  uint32_t start=res->numchars();
 
42
  if (start <= (uint) length)
 
43
    return res;
 
44
  start=res->charpos(start - (uint) length);
 
45
  tmp_value.set(*res,start,res->length()-start);
 
46
  return &tmp_value;
 
47
}
 
48
 
 
49
void Item_func_right::fix_length_and_dec()
 
50
{
 
51
  collation.set(args[0]->collation);
 
52
  left_right_max_length();
 
53
}
 
54