~drizzle-trunk/drizzle/development

642.1.11 by Lee
move functions from item.cc/item.h to item directory
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
1999.6.1 by kalebral at gmail
update Copyright strings to a more common format to help with creating the master debian copyright file
4
 *  Copyright (C) 2008 Sun Microsystems, Inc.
642.1.11 by Lee
move functions from item.cc/item.h to item directory
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
2173.2.1 by Monty Taylor
Fixes incorrect usage of include
20
#include <config.h>
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
21
2154.2.4 by Brian Aker
This fixes 716459
22
#include <drizzled/field.h>
642.1.11 by Lee
move functions from item.cc/item.h to item directory
23
#include <drizzled/item/cache.h>
2154.2.4 by Brian Aker
This fixes 716459
24
#include <drizzled/item/cache_decimal.h>
642.1.11 by Lee
move functions from item.cc/item.h to item directory
25
#include <drizzled/item/cache_int.h>
26
#include <drizzled/item/cache_real.h>
2154.2.4 by Brian Aker
This fixes 716459
27
#include <drizzled/item/cache_row.h>
642.1.11 by Lee
move functions from item.cc/item.h to item directory
28
#include <drizzled/item/cache_str.h>
2154.2.4 by Brian Aker
This fixes 716459
29
#include <drizzled/lex_string.h>
642.1.11 by Lee
move functions from item.cc/item.h to item directory
30
2318.7.17 by Olaf van der Spek
Refactor Items
31
namespace drizzled {
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
32
642.1.11 by Lee
move functions from item.cc/item.h to item directory
33
Item_cache* Item_cache::get_cache(const Item *item)
34
{
2318.7.17 by Olaf van der Spek
Refactor Items
35
  switch (item->result_type()) 
36
  {
642.1.11 by Lee
move functions from item.cc/item.h to item directory
37
  case INT_RESULT:
38
    return new Item_cache_int();
2008 by Brian Aker
Formatting + remove default from switch/case.
39
642.1.11 by Lee
move functions from item.cc/item.h to item directory
40
  case REAL_RESULT:
41
    return new Item_cache_real();
2008 by Brian Aker
Formatting + remove default from switch/case.
42
642.1.11 by Lee
move functions from item.cc/item.h to item directory
43
  case DECIMAL_RESULT:
44
    return new Item_cache_decimal();
2008 by Brian Aker
Formatting + remove default from switch/case.
45
642.1.11 by Lee
move functions from item.cc/item.h to item directory
46
  case STRING_RESULT:
47
    return new Item_cache_str(item);
2008 by Brian Aker
Formatting + remove default from switch/case.
48
642.1.11 by Lee
move functions from item.cc/item.h to item directory
49
  case ROW_RESULT:
50
    return new Item_cache_row();
51
  }
2008 by Brian Aker
Formatting + remove default from switch/case.
52
2318.7.17 by Olaf van der Spek
Refactor Items
53
  assert(false);
2008 by Brian Aker
Formatting + remove default from switch/case.
54
  abort();
642.1.11 by Lee
move functions from item.cc/item.h to item directory
55
}
56
57
2215.2.1 by Stewart Smith
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.
58
void Item_cache::print(String *str)
642.1.11 by Lee
move functions from item.cc/item.h to item directory
59
{
60
  str->append(STRING_WITH_LEN("<cache>("));
61
  if (example)
2215.2.1 by Stewart Smith
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.
62
    example->print(str);
642.1.11 by Lee
move functions from item.cc/item.h to item directory
63
  else
2215.2.1 by Stewart Smith
remove enum_query_type which was effectively unused. It was set to one value once, compared to it once (i.e. always true) and passed around everywhere doing nothing.
64
    Item::print(str);
642.1.11 by Lee
move functions from item.cc/item.h to item directory
65
  str->append(')');
66
}
67
68
bool Item_cache::eq_def(Field *field)
69
{
2318.7.17 by Olaf van der Spek
Refactor Items
70
  return cached_field ? cached_field->eq_def(field) : false;
642.1.11 by Lee
move functions from item.cc/item.h to item directory
71
}
72
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
73
} /* namespace drizzled */