~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.h

  • Committer: Monty Taylor
  • Date: 2011-02-13 17:24:18 UTC
  • mfrom: (2159.1.1 remove-lint)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110213172418-vd210j88hiwk8jih
Removed the lint stuff.

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
 
 
21
 
20
22
#ifndef DRIZZLED_FUNCTION_FUNC_H
21
23
#define DRIZZLED_FUNCTION_FUNC_H
22
24
 
23
25
/// TODO: Rename this file - func.h is stupid.
24
26
 
 
27
#include <drizzled/charset_info.h>
 
28
#include <drizzled/current_session.h>
25
29
#include <drizzled/item.h>
 
30
#include <drizzled/item/bin_string.h>
 
31
#include <drizzled/lex_string.h>
26
32
#include <drizzled/sql_list.h>
27
 
#include <drizzled/item/bin_string.h>
28
 
#include "drizzled/current_session.h"
 
33
#include <drizzled/type/decimal.h>
 
34
 
 
35
#include "drizzled/visibility.h"
29
36
 
30
37
namespace drizzled
31
38
{
32
39
 
33
 
class Item_func :public Item_result_field
 
40
class DRIZZLED_API Item_func :
 
41
  public Item_result_field
34
42
{
35
43
  Session &_session;
36
44
 
67
75
 
68
76
  Item_func(void):
69
77
    _session(*current_session),
70
 
    allowed_arg_cols(1), arg_count(0)
 
78
    allowed_arg_cols(1), arg_count(0),
 
79
    const_item_cache(false)
71
80
  {
72
81
    with_sum_func= 0;
73
82
    collation.set(DERIVATION_SYSCONST);
75
84
 
76
85
  Item_func(Item *a):
77
86
    _session(*current_session),
78
 
    allowed_arg_cols(1), arg_count(1)
 
87
    allowed_arg_cols(1), arg_count(1),
 
88
    const_item_cache(false)
79
89
  {
80
90
    args= tmp_arg;
81
91
    args[0]= a;
85
95
  
86
96
  Item_func(Item *a,Item *b):
87
97
    _session(*current_session),
88
 
    allowed_arg_cols(1), arg_count(2)
 
98
    allowed_arg_cols(1), arg_count(2),
 
99
    const_item_cache(false)
89
100
  {
90
101
    args= tmp_arg;
91
102
    args[0]= a; args[1]= b;
95
106
  
96
107
  Item_func(Item *a,Item *b,Item *c):
97
108
    _session(*current_session),
98
 
    allowed_arg_cols(1)
 
109
    allowed_arg_cols(1),
 
110
    const_item_cache(false)
99
111
  {
100
112
    arg_count= 0;
101
113
    if ((args= (Item**) memory::sql_alloc(sizeof(Item*)*3)))
109
121
  
110
122
  Item_func(Item *a,Item *b,Item *c,Item *d):
111
123
    _session(*current_session),
112
 
    allowed_arg_cols(1)
 
124
    allowed_arg_cols(1),
 
125
    const_item_cache(false)
113
126
  {
114
127
    arg_count= 0;
115
128
    if ((args= (Item**) memory::sql_alloc(sizeof(Item*)*4)))
124
137
  
125
138
  Item_func(Item *a,Item *b,Item *c,Item *d,Item* e):
126
139
    _session(*current_session),
127
 
    allowed_arg_cols(1)
 
140
    allowed_arg_cols(1),
 
141
    const_item_cache(false)
128
142
  {
129
143
    arg_count= 5;
130
144
    if ((args= (Item**) memory::sql_alloc(sizeof(Item*)*5)))
160
174
    {Sum}Functype and Item_func::functype()/Item_sum::sum_func()
161
175
    instead.
162
176
  */
163
 
  virtual const char *func_name() const { return NULL; };
 
177
  virtual const char *func_name() const { return NULL; }
164
178
  virtual bool const_item() const { return const_item_cache; }
165
179
  Item **arguments() const { return args; }
166
180
  void set_arguments(List<Item> &list);
183
197
  void count_real_length();
184
198
  void count_decimal_length();
185
199
 
186
 
  bool get_arg0_date(DRIZZLE_TIME *ltime, uint32_t fuzzy_date);
187
 
  bool get_arg0_time(DRIZZLE_TIME *ltime);
 
200
  bool get_arg0_date(type::Time &ltime, uint32_t fuzzy_date);
 
201
  bool get_arg0_time(type::Time &ltime);
188
202
 
189
203
  bool is_null();
190
204
 
 
205
  virtual bool deterministic() const
 
206
  {
 
207
    return false;
 
208
  }
 
209
 
191
210
  void signal_divide_by_null();
192
211
 
193
212
  virtual Field *tmp_table_field() { return result_field; }
195
214
 
196
215
  Item *get_tmp_table_item(Session *session);
197
216
 
198
 
  my_decimal *val_decimal(my_decimal *);
 
217
  type::Decimal *val_decimal(type::Decimal *);
199
218
 
200
219
  bool agg_arg_collations(DTCollation &c, Item **items, uint32_t nitems,
201
220
                          uint32_t flags);