~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/boolean.h

  • Committer: Olaf van der Spek
  • Date: 2011-08-13 15:08:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2407.
  • Revision ID: olafvdspek@gmail.com-20110813150814-x12xd0c230a9bgtb
Refactor

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) 2010 Brian Aker
 
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
#pragma once
 
21
 
 
22
#include <drizzled/item/basic_constant.h>
 
23
 
 
24
namespace drizzled {
 
25
namespace item {
 
26
 
 
27
class Boolean : public Item_basic_constant
 
28
{
 
29
  bool value;
 
30
 
 
31
public:
 
32
  Boolean(const char *str_arg, bool arg) :
 
33
    Item_basic_constant(),
 
34
    value(arg)
 
35
  {
 
36
    max_length= value ? 4 : 5;
 
37
    fixed= true;
 
38
    name= str_arg;
 
39
  }
 
40
 
 
41
  Boolean(bool arg) :
 
42
    value(arg)
 
43
  {
 
44
    max_length= value ? 4 : 5;
 
45
    fixed= true;
 
46
    name= value ? "TRUE" : "FALSE";
 
47
  }
 
48
 
 
49
  enum Type type() const { return BOOLEAN_ITEM; }
 
50
 
 
51
  Item_result result_type() const
 
52
  {
 
53
    return INT_RESULT;
 
54
  }
 
55
 
 
56
  virtual bool val_bool()
 
57
  {
 
58
    return value;
 
59
  }
 
60
 
 
61
  double val_real()
 
62
  {
 
63
    return value ? 1 : 0;
 
64
  }
 
65
 
 
66
  int64_t val_int() 
 
67
  {
 
68
    return value ? 1 : 0;
 
69
  }
 
70
 
 
71
  drizzled::String* val_str(drizzled::String *value_buffer)
 
72
  {
 
73
    value_buffer->realloc(5);
 
74
 
 
75
    if (value)
 
76
    {
 
77
      value_buffer->copy("TRUE", 4, default_charset());
 
78
    }
 
79
    else
 
80
    {
 
81
      value_buffer->copy("FALSE", 5, default_charset());
 
82
    }
 
83
 
 
84
    return value_buffer;
 
85
  }
 
86
 
 
87
  type::Decimal* val_decimal(type::Decimal *dec)
 
88
  {
 
89
    (void)dec;
 
90
    return 0;
 
91
  }
 
92
 
 
93
};
 
94
 
 
95
} /* namespace item */
 
96
} /* namespace drizzled */
 
97
 
 
98
#include <drizzled/item/true.h>
 
99
#include <drizzled/item/false.h>
 
100