~drizzle-trunk/drizzle/development

1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
483.1.6 by Lee
code clean up for Field_num
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 *
4
 *  Copyright (C) 2008 MySQL
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; either version 2 of the License, or
9
 *  (at your option) any later version.
10
 *
11
 *  This program is distributed in the hope that it will be useful,
12
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 *  GNU General Public License for more details.
15
 *
16
 *  You should have received a copy of the GNU General Public License
17
 *  along with this program; if not, write to the Free Software
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 */
20
1122.2.10 by Monty Taylor
Fixed all of the include guards.
21
#ifndef DRIZZLED_FIELD_NUM_H
22
#define DRIZZLED_FIELD_NUM_H
483.1.6 by Lee
code clean up for Field_num
23
1237.9.4 by Padraig O'Sullivan
Removed the inclusion of drizzled/field.h in the server_includes header file.
24
#include "drizzled/field.h"
25
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
26
namespace drizzled
27
{
28
1237.9.4 by Padraig O'Sullivan
Removed the inclusion of drizzled/field.h in the server_includes header file.
29
class Field_num :public Field 
30
{
483.1.6 by Lee
code clean up for Field_num
31
public:
32
  const uint8_t dec;
33
  bool decimal_precision;       // Purify cannot handle bit fields & only for decimal type
34
  bool unsigned_flag;   // Purify cannot handle bit fields
35
  Field_num(unsigned char *ptr_arg,uint32_t len_arg, unsigned char *null_ptr_arg,
36
            unsigned char null_bit_arg, utype unireg_check_arg,
37
            const char *field_name_arg,
38
            uint8_t dec_arg, bool zero_arg, bool unsigned_arg);
39
  Item_result result_type () const { return REAL_RESULT; }
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
40
  friend class CreateField;
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
41
  void make_field(SendField *);
483.1.6 by Lee
code clean up for Field_num
42
  uint32_t decimals() const { return (uint32_t) dec; }
43
  uint32_t size_of() const { return sizeof(*this); }
44
  bool eq_def(Field *field);
45
  int store_decimal(const my_decimal *);
46
  my_decimal *val_decimal(my_decimal *);
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
47
  uint32_t is_equal(CreateField *new_field);
483.1.6 by Lee
code clean up for Field_num
48
  int check_int(const CHARSET_INFO * const cs, const char *str, int length,
49
                const char *int_end, int error);
50
  bool get_int(const CHARSET_INFO * const cs, const char *from, uint32_t len,
51
               int64_t *rnd, uint64_t unsigned_max,
52
               int64_t signed_min, int64_t signed_max);
53
};
54
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
55
} /* namespace drizzled */
483.1.6 by Lee
code clean up for Field_num
56
1122.2.10 by Monty Taylor
Fixed all of the include guards.
57
#endif /* DRIZZLED_FIELD_NUM_H */