~drizzle-trunk/drizzle/development

390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
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.
390.1.2 by Monty Taylor
Fixed copyright headers in drizzled/
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
 */
1 by brian
clean slate
19
20
/*
21
  Because of the function new_field() all field classes that have static
22
  variables must declare the size_of() member function.
23
*/
24
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
25
#ifndef DRIZZLED_FIELD_H
26
#define DRIZZLED_FIELD_H
27
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
28
#include "drizzled/sql_error.h"
1410.3.1 by Djellel E. Difallah
merge my_decimal and decimal
29
#include "drizzled/decimal.h"
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
30
#include "drizzled/key_map.h"
31
#include "drizzled/sql_list.h"
32
#include "drizzled/structs.h"
1241.9.61 by Monty Taylor
No more mystrings in drizzled/
33
#include "drizzled/charset_info.h"
1315.2.14 by Stewart Smith
move Item_result out to its own header file and out of common.h
34
#include "drizzled/item_result.h"
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
35
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
36
#include <string>
1052.2.5 by Nathan Williams
Changed container from list to vector for CreateField::interval_list. There is never inserts into the middle of the container, only push_back. Per jaypipes suggestion.
37
#include <vector>
1 by brian
clean slate
38
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
39
namespace drizzled
40
{
41
1 by brian
clean slate
42
#define DATETIME_DEC                     6
173.1.9 by Toru Maesaka
ripped out DOUBLE and moved to field/
43
#define DOUBLE_TO_STRING_CONVERSION_BUFFER_SIZE FLOATING_POINT_BUFFER
1091 by Brian Aker
Collection of patches from new-cleanup (includes asserts for field in debug)
44
45
#ifdef DEBUG
1662.1.3 by Brian Aker
Fix for debug compile.
46
#define ASSERT_COLUMN_MARKED_FOR_READ assert(!getTable() || (getTable()->read_set == NULL || isReadSet()))
47
#define ASSERT_COLUMN_MARKED_FOR_WRITE assert(!getTable() || (getTable()->write_set == NULL || isWriteSet()))
1091 by Brian Aker
Collection of patches from new-cleanup (includes asserts for field in debug)
48
#else
1843.6.2 by Brian Aker
Add back in init(). Grr.... this should not be required.
49
#define ASSERT_COLUMN_MARKED_FOR_READ assert(getTable())
50
#define ASSERT_COLUMN_MARKED_FOR_WRITE assert(getTable())
1091 by Brian Aker
Collection of patches from new-cleanup (includes asserts for field in debug)
51
#endif
173.1.9 by Toru Maesaka
ripped out DOUBLE and moved to field/
52
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
53
typedef struct st_typelib TYPELIB;
54
205 by Brian Aker
uint32 -> uin32_t
55
const uint32_t max_field_size= (uint32_t) 4294967295U;
1 by brian
clean slate
56
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
57
class SendField;
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
58
class CreateField;
1000.1.3 by Brian Aker
Renamed TABLE_SHARE to TableShare
59
class TableShare;
798.2.29 by Brian Aker
Detangle more of the session object
60
class Field;
1539.1.6 by Brian Aker
Update for Join structure changes.
61
struct CacheField;
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
62
1 by brian
clean slate
63
int field_conv(Field *to,Field *from);
64
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
65
/**
66
 * Class representing a Field in a Table
67
 *
68
 * @details
69
 *
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
70
 * The value stored in the Field object is stored in the
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
71
 * unsigned char pointer member variable called ptr.  The
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
72
 * val_xxx() methods retrieve this raw byte value and
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
73
 * convert the byte into the appropriate output (int, decimal, etc).
74
 *
75
 * The store_xxx() methods take various input and convert
76
 * the input into the raw bytes stored in the ptr member variable.
77
 */
1 by brian
clean slate
78
class Field
79
{
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
80
  /* Prevent use of these */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
81
  Field(const Field&);
1 by brian
clean slate
82
  void operator=(Field &);
1992.5.1 by Brian Aker
Additional cerr output bits for a few classes (Item, Field,...)
83
1 by brian
clean slate
84
public:
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
85
  unsigned char *ptr; /**< Position to field in record. Stores raw field value */
86
  unsigned char *null_ptr; /**< Byte where null_bit is */
87
88
  /**
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
89
   * Pointer to the Table object containing this Field
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
90
   *
91
   * @note You can use table->in_use as replacement for current_session member
92
   * only inside of val_*() and store() members (e.g. you can't use it in cons)
93
   */
1660.1.3 by Brian Aker
Encapsulate Table in field
94
private:
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
95
  Table *table;
1660.1.3 by Brian Aker
Encapsulate Table in field
96
public:
1643.3.10 by Brian Aker
Column support, clean up of IS/DD for NULL type.
97
  Table *getTable()
98
  {
99
    assert(table);
100
    return table;
101
  }
102
1660.1.3 by Brian Aker
Encapsulate Table in field
103
  Table *getTable() const
104
  {
105
    assert(table);
106
    return table;
107
  }
108
109
  void setTable(Table *table_arg)
110
  {
111
    table= table_arg;
112
  }
113
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
114
  Table *orig_table; /**< Pointer to the original Table. @TODO What is "the original table"? */
115
  const char *field_name; /**< Name of the field */
116
  LEX_STRING comment; /**< A comment about the field */
117
118
  /** The field is part of the following keys */
119
  key_map	key_start;
120
  key_map part_of_key;
121
  key_map part_of_key_not_clustered;
122
  key_map part_of_sortkey;
123
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
124
  /*
1259.5.4 by Stewart Smith
better reflect reality in why we have TIMESTAMP types around.
125
    We use three additional unireg types for TIMESTAMP for hysterical
126
    raisins and limitations in the MySQL FRM file format.
127
128
    A good TODO is to clean this up as we can support just about
129
    anything in the table proto message now.
1 by brian
clean slate
130
  */
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
131
  enum utype
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
132
  {
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
133
    NONE,
134
    NEXT_NUMBER,
135
    TIMESTAMP_OLD_FIELD,
136
    TIMESTAMP_DN_FIELD,
137
    TIMESTAMP_UN_FIELD,
138
    TIMESTAMP_DNUN_FIELD
139
  };
1 by brian
clean slate
140
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
141
  utype	unireg_check;
142
  uint32_t field_length; /**< Length of this field in bytes */
143
  uint32_t flags;
2017.1.2 by Brian Aker
Fix for 693309.
144
145
  bool isUnsigned() const
146
  {
147
    return flags & UNSIGNED_FLAG;
148
  }
149
1999.4.2 by Brian Aker
Encapsulate the field's position.
150
private:
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
151
  uint16_t field_index; /**< Index of this Field in Table::fields array */
1999.4.1 by Brian Aker
First pass through, removing the need for us track the position in this
152
1999.4.2 by Brian Aker
Encapsulate the field's position.
153
public:
154
1999.4.1 by Brian Aker
First pass through, removing the need for us track the position in this
155
  uint16_t position() const
156
  {
157
    return field_index;
158
  }
159
160
  void setPosition(uint32_t arg)
161
  {
162
    field_index= arg;
163
  }
164
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
165
  unsigned char null_bit; /**< Bit used to test null bit */
1 by brian
clean slate
166
  /**
167
     If true, this field was created in create_tmp_field_from_item from a NULL
168
     value. This means that the type of the field is just a guess, and the type
169
     may be freely coerced to another type.
170
171
     @see create_tmp_field_from_item
172
     @see Item_type_holder::get_real_type
173
   */
174
  bool is_created_from_null_item;
175
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
176
  static void *operator new(size_t size);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
177
  static void *operator new(size_t size, memory::Root *mem_root);
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
178
  static void operator delete(void *, size_t)
1241.9.51 by Monty Taylor
More mysys stuff out of headers.
179
  { }
1816.2.4 by Monty Taylor
Cleaned up a bunch more warnings.
180
  static void operator delete(void *, memory::Root *)
181
  { }
1055.2.4 by Jay Pipes
Style, indentation, and doxygen/documentation cleanup on Field class. Removal of dead methods in Field such as do_last_null_byte(), last_null_byte() and anonymous enum with LAST_NULL_BYTE_UNDEF...
182
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
183
  Field(unsigned char *ptr_arg,
184
        uint32_t length_arg,
185
        unsigned char *null_ptr_arg,
186
        unsigned char null_bit_arg,
187
        utype unireg_check_arg,
1 by brian
clean slate
188
        const char *field_name_arg);
189
  virtual ~Field() {}
1976.6.1 by Brian Aker
This is a fix for bug lp:686197
190
191
  bool hasDefault() const
192
  {
193
    return not (flags & NO_DEFAULT_VALUE_FLAG);
194
  }
195
1 by brian
clean slate
196
  /* Store functions returns 1 on overflow and -1 on fatal error */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
197
  virtual int store(const char *to,
198
                    uint32_t length,
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
199
                    const CHARSET_INFO * const cs)=0;
200
  virtual int store(double nr)=0;
201
  virtual int store(int64_t nr, bool unsigned_val)=0;
202
  virtual int store_decimal(const my_decimal *d)=0;
1996.2.1 by Brian Aker
uuid type code.
203
  int store_and_check(enum_check_fields check_level,
204
                      const char *to,
205
                      uint32_t length,
206
                      const CHARSET_INFO * const cs);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
207
  /**
208
    This is called when storing a date in a string.
209
210
    @note
211
      Needs to be changed if/when we want to support different time formats.
212
  */
213
  virtual int store_time(DRIZZLE_TIME *ltime, enum enum_drizzle_timestamp_type t_type);
1996.2.1 by Brian Aker
uuid type code.
214
  virtual double val_real()=0;
215
  virtual int64_t val_int()=0;
1 by brian
clean slate
216
  virtual my_decimal *val_decimal(my_decimal *);
1996.2.1 by Brian Aker
uuid type code.
217
  String *val_str_internal(String *str)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
218
  {
219
    return val_str(str, str);
220
  }
1 by brian
clean slate
221
  /*
222
     val_str(buf1, buf2) gets two buffers and should use them as follows:
223
     if it needs a temp buffer to convert result to string - use buf1
224
       example Field_tiny::val_str()
225
     if the value exists as a string already - use buf2
241 by Brian Aker
First pass of CHAR removal.
226
       example Field_varstring::val_str() (???)
1 by brian
clean slate
227
     consequently, buf2 may be created as 'String buf;' - no memory
228
     will be allocated for it. buf1 will be allocated to hold a
229
     value if it's too small. Using allocated buffer for buf2 may result in
230
     an unnecessary free (and later, may be an alloc).
231
     This trickery is used to decrease a number of malloc calls.
232
  */
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
233
  virtual String *val_str(String*, String *)=0;
1 by brian
clean slate
234
  /*
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
235
   str_needs_quotes() returns true if the value returned by val_str() needs
1 by brian
clean slate
236
   to be quoted when used in constructing an SQL query.
237
  */
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
238
  virtual bool str_needs_quotes() { return false; }
1 by brian
clean slate
239
  virtual Item_result result_type () const=0;
240
  virtual Item_result cmp_type () const { return result_type(); }
241
  virtual Item_result cast_to_int_type () const { return result_type(); }
2023.2.4 by Brian Aker
Merge in cast() for BOOLEAN.
242
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
243
  /**
244
     Check whether a field type can be partially indexed by a key.
245
246
     This is a static method, rather than a virtual function, because we need
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
247
     to check the type of a non-Field in alter_table().
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
248
249
     @param type  field type
250
251
     @retval
252
       true  Type can have a prefixed key
253
     @retval
254
       false Type can not have a prefixed key
255
  */
1 by brian
clean slate
256
  static bool type_can_have_key_part(enum_field_types);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
257
  /**
258
    Return type of which can carry value of both given types in UNION result.
259
260
    @param a  type for merging
261
    @param b  type for merging
262
263
    @retval
264
      type of field
265
  */
1 by brian
clean slate
266
  static enum_field_types field_type_merge(enum_field_types, enum_field_types);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
267
268
  /**
269
     Detect Item_result by given field type of UNION merge result.
270
271
     @param field_type  given field type
272
273
     @return
274
       Item_result (type of internal MySQL expression result)
275
  */
1 by brian
clean slate
276
  static Item_result result_merge_type(enum_field_types);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
277
278
  virtual bool eq(Field *field);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
279
  /**
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
280
   * Returns true if the fields are equally defined
281
   *
282
   * @retval
283
   *  true  This Field is equally defined to supplied Field
284
   * @retval
285
   *  false This Field is NOT equally defined to supplied Field
286
   */
1 by brian
clean slate
287
  virtual bool eq_def(Field *field);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
288
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
289
  /**
290
   * Returns size (in bytes) used to store field data in memory
291
   * (i.e. it returns the maximum size of the field in a row of the table,
292
   * which is located in RAM).
293
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
294
  virtual uint32_t pack_length() const;
1 by brian
clean slate
295
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
296
  /**
297
   * Returns size (in bytes) used to store field data on
298
   * storage (i.e. it returns the maximal size of the field in a row of the
299
   * table, which is located on disk).
300
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
301
  virtual uint32_t pack_length_in_rec() const;
1 by brian
clean slate
302
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
303
  /**
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
304
   * Return the "real size" of the data in memory.
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
305
   * For varstrings, this does _not_ include the length bytes.
306
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
307
  virtual uint32_t data_length();
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
308
  /**
309
   * Returns the number of bytes actually used to store the data
310
   * of the field. So for a varstring it includes both lenght byte(s) and
311
   * string data, and anything after data_length() bytes are unused.
312
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
313
  virtual uint32_t used_length();
314
  virtual uint32_t sort_length() const;
1 by brian
clean slate
315
316
  /**
317
     Get the maximum size of the data in packed format.
318
319
     @return Maximum data length of the field when packed using the
320
     Field::pack() function.
321
   */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
322
  virtual uint32_t max_data_length() const;
323
  virtual int reset(void);
324
  virtual void reset_fields();
325
  virtual void set_default();
326
  virtual bool binary() const;
327
  virtual bool zero_pack() const;
328
  virtual enum ha_base_keytype key_type() const;
329
  virtual uint32_t key_length() const;
1 by brian
clean slate
330
  virtual enum_field_types type() const =0;
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
331
  virtual enum_field_types real_type() const;
1996.2.1 by Brian Aker
uuid type code.
332
  virtual int cmp_max(const unsigned char *a, const unsigned char *b, uint32_t max_len);
481 by Brian Aker
Remove all of uchar.
333
  virtual int cmp(const unsigned char *,const unsigned char *)=0;
1996.2.1 by Brian Aker
uuid type code.
334
  int cmp_internal(const unsigned char *str) { return cmp(ptr,str); }
481 by Brian Aker
Remove all of uchar.
335
  virtual int cmp_binary(const unsigned char *a,const unsigned char *b,
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
336
                         uint32_t max_length=UINT32_MAX);
337
  virtual int cmp_offset(uint32_t row_offset);
338
  virtual int cmp_binary_offset(uint32_t row_offset);
339
  virtual int key_cmp(const unsigned char *a,const unsigned char *b);
340
  virtual int key_cmp(const unsigned char *str, uint32_t length);
341
  virtual uint32_t decimals() const;
342
1 by brian
clean slate
343
  /*
344
    Caller beware: sql_type can change str.Ptr, so check
345
    ptr() to see if it changed if you are using your own buffer
346
    in str and restore it with set() if needed
347
  */
348
  virtual void sql_type(String &str) const =0;
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
349
350
  // For new field
351
  virtual uint32_t size_of() const =0;
352
1122.2.12 by Monty Taylor
Removed the silly my_ptrdiff_t typedef.
353
  bool is_null(ptrdiff_t row_offset= 0);
354
  bool is_real_null(ptrdiff_t row_offset= 0);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
355
  bool is_null_in_record(const unsigned char *record);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
356
  bool is_null_in_record_with_offset(ptrdiff_t offset);
357
  void set_null(ptrdiff_t row_offset= 0);
358
  void set_notnull(ptrdiff_t row_offset= 0);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
359
  bool maybe_null(void);
360
  bool real_maybe_null(void);
1 by brian
clean slate
361
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
362
  virtual void make_field(SendField *);
481 by Brian Aker
Remove all of uchar.
363
  virtual void sort_string(unsigned char *buff,uint32_t length)=0;
438.1.13 by Brian Aker
uint cleanup.
364
  virtual bool optimize_range(uint32_t idx, uint32_t part);
1055.2.9 by Jay Pipes
Removes dead get_blob_type_from_length() function. We only have one type of BLOB now...
365
  /**
366
   * Returns true for fields which, when compared with constant
367
   * items, can be casted to int64_t. In this case we will at 'fix_fields'
368
   * stage cast the constant items to int64_ts and at the execution stage
369
   * use field->val_int() for comparison.  Used to optimize clauses like
370
   * 'a_column BETWEEN date_const AND date_const'.
371
   */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
372
  virtual bool can_be_compared_as_int64_t() const
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
373
  {
374
    return false;
375
  }
1 by brian
clean slate
376
  virtual void free() {}
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
377
  virtual Field *new_field(memory::Root *root,
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
378
                           Table *new_table,
1 by brian
clean slate
379
                           bool keep_type);
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
380
  virtual Field *new_key_field(memory::Root *root, Table *new_table,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
381
                               unsigned char *new_ptr,
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
382
                               unsigned char *new_null_ptr,
438.1.13 by Brian Aker
uint cleanup.
383
                               uint32_t new_null_bit);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
384
  /** This is used to generate a field in Table from TableShare */
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
385
  Field *clone(memory::Root *mem_root, Table *new_table);
1996.2.1 by Brian Aker
uuid type code.
386
  void move_field(unsigned char *ptr_arg,unsigned char *null_ptr_arg,unsigned char null_bit_arg)
1 by brian
clean slate
387
  {
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
388
    ptr= ptr_arg;
389
    null_ptr= null_ptr_arg;
390
    null_bit= null_bit_arg;
1 by brian
clean slate
391
  }
1996.2.1 by Brian Aker
uuid type code.
392
  void move_field(unsigned char *ptr_arg) { ptr=ptr_arg; }
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
393
  virtual void move_field_offset(ptrdiff_t ptr_diff)
1 by brian
clean slate
394
  {
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
395
    ptr= ADD_TO_PTR(ptr,ptr_diff, unsigned char*);
1 by brian
clean slate
396
    if (null_ptr)
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
397
      null_ptr= ADD_TO_PTR(null_ptr,ptr_diff,unsigned char*);
1 by brian
clean slate
398
  }
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
399
  virtual void get_image(unsigned char *buff, uint32_t length, const CHARSET_INFO * const)
400
  {
401
    memcpy(buff,ptr,length);
402
  }
403
  virtual void get_image(std::basic_string<unsigned char> &buff, uint32_t length, const CHARSET_INFO * const)
404
  {
405
    buff.append(ptr,length);
406
  }
407
  virtual void set_image(const unsigned char *buff,uint32_t length, const CHARSET_INFO * const)
408
  {
409
    memcpy(ptr,buff,length);
410
  }
1 by brian
clean slate
411
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
412
  /**
413
   * Copy a field part into an output buffer.
414
   *
415
   * @details
416
   *
417
   * This function makes a copy of field part of size equal to or
418
   * less than "length" parameter value.
419
   * For fields of string types (VARCHAR, TEXT) the rest of buffer
420
   * is padded by zero byte.
421
   *
422
   * @param output buffer
423
   * @param output buffer size
424
   *
425
   * @note
426
   *
427
   * For variable length character fields (i.e. UTF-8) the "length"
428
   * parameter means a number of output buffer bytes as if all field
429
   * characters have maximal possible size (mbmaxlen). In the other words,
430
   * "length" parameter is a number of characters multiplied by
431
   * field_charset->mbmaxlen.
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
432
   *
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
433
   * @retval
434
   *   Number of copied bytes (excluding padded zero bytes -- see above).
435
   */
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
436
  virtual uint32_t get_key_image(unsigned char *buff, uint32_t length)
1 by brian
clean slate
437
  {
438
    get_image(buff, length, &my_charset_bin);
439
    return length;
440
  }
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
441
  virtual uint32_t get_key_image(std::basic_string<unsigned char> &buff, uint32_t length)
656.1.1 by Monty Taylor
OOOh doggie. Got rid of my_alloca.
442
  {
443
    get_image(buff, length, &my_charset_bin);
444
    return length;
445
  }
481 by Brian Aker
Remove all of uchar.
446
  virtual void set_key_image(const unsigned char *buff,uint32_t length)
1055.2.5 by Jay Pipes
Removal of dead Field::image_type and st_key_part::image_type member variables. Legacy from geometry MyISAM types...
447
  {
448
    set_image(buff,length, &my_charset_bin);
449
  }
1996.2.1 by Brian Aker
uuid type code.
450
  int64_t val_int_offset(uint32_t row_offset)
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
451
  {
452
    ptr+=row_offset;
453
    int64_t tmp=val_int();
454
    ptr-=row_offset;
455
    return tmp;
456
  }
457
1996.2.1 by Brian Aker
uuid type code.
458
  int64_t val_int_internal(const unsigned char *new_ptr)
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
459
  {
460
    unsigned char *old_ptr= ptr;
461
    int64_t return_value;
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
462
    ptr= const_cast<unsigned char*>(new_ptr);
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
463
    return_value= val_int();
464
    ptr= old_ptr;
465
    return return_value;
466
  }
1996.2.1 by Brian Aker
uuid type code.
467
468
  String *val_str_internal(String *str, const unsigned char *new_ptr)
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
469
  {
470
    unsigned char *old_ptr= ptr;
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
471
    ptr= const_cast<unsigned char*>(new_ptr);
1996.2.1 by Brian Aker
uuid type code.
472
    val_str_internal(str);
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
473
    ptr= old_ptr;
474
    return str;
475
  }
476
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
477
  /**
478
    Pack the field into a format suitable for storage and transfer.
479
480
    To implement packing functionality, only the virtual function
481
    should be overridden. The other functions are just convenience
482
    functions and hence should not be overridden.
483
484
    The value of <code>low_byte_first</code> is dependent on how the
485
    packed data is going to be used: for local use, e.g., temporary
486
    store on disk or in memory, use the native format since that is
487
    faster. For data that is going to be transfered to other machines
488
    (e.g., when writing data to the binary log), data should always be
489
    stored in little-endian format.
490
491
    @note The default method for packing fields just copy the raw bytes
492
    of the record into the destination, but never more than
493
    <code>max_length</code> characters.
494
495
    @param to
496
    Pointer to memory area where representation of field should be put.
497
498
    @param from
499
    Pointer to memory area where record representation of field is
500
    stored.
501
502
    @param max_length
503
    Maximum length of the field, as given in the column definition. For
504
    example, for <code>CHAR(1000)</code>, the <code>max_length</code>
505
    is 1000. This information is sometimes needed to decide how to pack
506
    the data.
507
508
    @param low_byte_first
509
    @c true if integers should be stored little-endian, @c false if
510
    native format should be used. Note that for little-endian machines,
511
    the value of this flag is a moot point since the native format is
512
    little-endian.
513
  */
779.3.16 by Monty Taylor
Some Sun warning fixes.
514
  virtual unsigned char *pack(unsigned char *to,
515
                              const unsigned char *from,
516
                              uint32_t max_length,
517
                              bool low_byte_first);
518
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
519
  unsigned char *pack(unsigned char *to, const unsigned char *from);
1 by brian
clean slate
520
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
521
  /**
522
    Unpack a field from row data.
523
524
    This method is used to unpack a field from a master whose size of
525
    the field is less than that of the slave.
526
527
    The <code>param_data</code> parameter is a two-byte integer (stored
528
    in the least significant 16 bits of the unsigned integer) usually
529
    consisting of two parts: the real type in the most significant byte
530
    and a original pack length in the least significant byte.
531
532
    The exact layout of the <code>param_data</code> field is given by
533
    the <code>Table_map_log_event::save_field_metadata()</code>.
534
535
    This is the default method for unpacking a field. It just copies
536
    the memory block in byte order (of original pack length bytes or
537
    length of field, whichever is smaller).
538
539
    @param   to         Destination of the data
540
    @param   from       Source of the data
541
    @param   param_data Real type and original pack length of the field
542
                        data
543
544
    @param low_byte_first
545
    If this flag is @c true, all composite entities (e.g., lengths)
546
    should be unpacked in little-endian format; otherwise, the entities
547
    are unpacked in native order.
548
549
    @return  New pointer into memory based on from + length of the data
550
  */
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
551
  virtual const unsigned char *unpack(unsigned char* to,
552
                                      const unsigned char *from,
553
                                      uint32_t param_data,
554
                                      bool low_byte_first);
1 by brian
clean slate
555
  /**
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
556
     @overload Field::unpack(unsigned char*, const unsigned char*,
557
                             uint32_t, bool)
1 by brian
clean slate
558
  */
779.3.18 by Monty Taylor
Cleaned up warnings up through innodb.
559
  const unsigned char *unpack(unsigned char* to,
560
                              const unsigned char *from);
1 by brian
clean slate
561
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
562
  virtual unsigned char *pack_key(unsigned char* to,
563
                                  const unsigned char *from,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
564
                                  uint32_t max_length,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
565
                                  bool low_byte_first)
1 by brian
clean slate
566
  {
567
    return pack(to, from, max_length, low_byte_first);
568
  }
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
569
  virtual const unsigned char *unpack_key(unsigned char* to,
570
                                          const unsigned char *from,
571
                                          uint32_t max_length,
572
                                          bool low_byte_first)
1 by brian
clean slate
573
  {
574
    return unpack(to, from, max_length, low_byte_first);
575
  }
438.1.13 by Brian Aker
uint cleanup.
576
  virtual uint32_t max_packed_col_length(uint32_t max_length)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
577
  {
578
    return max_length;
579
  }
1 by brian
clean slate
580
1996.2.1 by Brian Aker
uuid type code.
581
  uint32_t offset(const unsigned char *record)
1 by brian
clean slate
582
  {
438.1.13 by Brian Aker
uint cleanup.
583
    return (uint32_t) (ptr - record);
1 by brian
clean slate
584
  }
585
  void copy_from_tmp(int offset);
1539.1.6 by Brian Aker
Update for Join structure changes.
586
  uint32_t fill_cache_field(CacheField *copy);
438.1.13 by Brian Aker
uint cleanup.
587
  virtual bool get_date(DRIZZLE_TIME *ltime,uint32_t fuzzydate);
236.1.24 by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME.
588
  virtual bool get_time(DRIZZLE_TIME *ltime);
264.2.6 by Andrey Hristov
Constify the usage of CHARSET_INFO almost to the last place in the code.
589
  virtual const CHARSET_INFO *charset(void) const { return &my_charset_bin; }
590
  virtual const CHARSET_INFO *sort_charset(void) const { return charset(); }
51.1.58 by Jay Pipes
Replace/remove DBUG and standardize TRUE/FALSE. Remove ASSERT_COLUMN_XXX macros, that work will be done on another
591
  virtual bool has_charset(void) const { return false; }
644 by Brian Aker
Clean up warnings for Solaris.
592
  virtual void set_charset(const CHARSET_INFO * const)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
593
  {}
1 by brian
clean slate
594
  virtual enum Derivation derivation(void) const
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
595
  {
596
    return DERIVATION_IMPLICIT;
597
  }
644 by Brian Aker
Clean up warnings for Solaris.
598
  virtual void set_derivation(enum Derivation)
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
599
  {}
600
  /**
601
    Produce warning or note about data saved into field.
602
603
    @param level            - level of message (Note/Warning/Error)
604
    @param code             - error code of message to be produced
605
    @param cuted_increment  - whenever we should increase cut fields count or not
606
607
    @note
608
      This function won't produce warning and increase cut fields counter
609
      if count_cuted_fields == CHECK_FIELD_IGNORE for current thread.
610
611
      if count_cuted_fields == CHECK_FIELD_IGNORE then we ignore notes.
612
      This allows us to avoid notes in optimisation, like convert_constant_item().
613
614
    @retval
615
      1 if count_cuted_fields == CHECK_FIELD_IGNORE and error level is not NOTE
616
    @retval
617
      0 otherwise
618
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
619
  bool set_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
620
                   unsigned int code,
1 by brian
clean slate
621
                   int cuted_increment);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
622
  /**
623
    Produce warning or note about datetime string data saved into field.
624
625
    @param level            level of message (Note/Warning/Error)
626
    @param code             error code of message to be produced
627
    @param str              string value which we tried to save
628
    @param str_length       length of string which we tried to save
629
    @param ts_type          type of datetime value (datetime/date/time)
630
    @param cuted_increment  whenever we should increase cut fields count or not
631
632
    @note
633
      This function will always produce some warning but won't increase cut
634
      fields counter if count_cuted_fields ==FIELD_CHECK_IGNORE for current
635
      thread.
636
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
637
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
638
                            uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
639
                            const char *str,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
640
                            uint32_t str_len,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
641
                            enum enum_drizzle_timestamp_type ts_type,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
642
                            int cuted_increment);
643
  /**
644
    Produce warning or note about integer datetime value saved into field.
645
646
    @param level            level of message (Note/Warning/Error)
647
    @param code             error code of message to be produced
648
    @param nr               numeric value which we tried to save
649
    @param ts_type          type of datetime value (datetime/date/time)
650
    @param cuted_increment  whenever we should increase cut fields count or not
651
652
    @note
653
      This function will always produce some warning but won't increase cut
654
      fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
655
      thread.
656
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
657
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
658
                            uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
659
                            int64_t nr,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
660
                            enum enum_drizzle_timestamp_type ts_type,
661
                            int cuted_increment);
662
  /**
663
    Produce warning or note about double datetime data saved into field.
664
665
    @param level            level of message (Note/Warning/Error)
666
    @param code             error code of message to be produced
667
    @param nr               double value which we tried to save
668
    @param ts_type          type of datetime value (datetime/date/time)
669
670
    @note
671
      This function will always produce some warning but won't increase cut
672
      fields counter if count_cuted_fields == FIELD_CHECK_IGNORE for current
673
      thread.
674
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
675
  void set_datetime_warning(DRIZZLE_ERROR::enum_warning_level,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
676
                            const uint32_t code,
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
677
                            double nr,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
678
                            enum enum_drizzle_timestamp_type ts_type);
1996.2.1 by Brian Aker
uuid type code.
679
  bool check_overflow(int op_result)
1 by brian
clean slate
680
  {
681
    return (op_result == E_DEC_OVERFLOW);
682
  }
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
683
  /**
684
    Process decimal library return codes and issue warnings for overflow and
685
    truncation.
686
687
    @param op_result  decimal library return code (E_DEC_* see include/decimal.h)
688
689
    @retval
690
      E_DEC_OVERFLOW   there was overflow
691
      E_DEC_TRUNCATED  there was truncation
692
    @retval
693
      0  no error or there was some other error except overflow or truncation
694
  */
1 by brian
clean slate
695
  int warn_if_overflow(int op_result);
584.1.13 by Monty Taylor
Split out a little more code. Removed table_list.h from common_includes.
696
  void init(Table *table_arg);
1 by brian
clean slate
697
698
  /* maximum possible display length */
205 by Brian Aker
uint32 -> uin32_t
699
  virtual uint32_t max_display_length()= 0;
1 by brian
clean slate
700
1052.2.3 by Nathan Williams
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.
701
  virtual uint32_t is_equal(CreateField *new_field);
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
702
  /**
703
    Conversion from decimal to int64_t with checking overflow and
704
    setting correct value (min/max) in case of overflow.
705
706
    @param val             value which have to be converted
707
    @param unsigned_flag   type of integer in which we convert val
708
    @param err             variable to pass error code
709
710
    @return
711
      value converted from val
712
  */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
713
  int64_t convert_decimal2int64_t(const my_decimal *val,
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
714
                                  bool unsigned_flag,
715
                                  int *err);
1 by brian
clean slate
716
  /* The max. number of characters */
1996.2.1 by Brian Aker
uuid type code.
717
  uint32_t char_length() const
1 by brian
clean slate
718
  {
719
    return field_length / charset()->mbmaxlen;
720
  }
721
1996.2.1 by Brian Aker
uuid type code.
722
  enum column_format_type column_format() const
1 by brian
clean slate
723
  {
724
    return (enum column_format_type)
725
      ((flags >> COLUMN_FORMAT_FLAGS) & COLUMN_FORMAT_MASK);
726
  }
727
728
  /* Hash value */
290 by Brian Aker
Update for ulong change over.
729
  virtual void hash(uint32_t *nr, uint32_t *nr2);
520.1.21 by Brian Aker
THD -> Session rename
730
  friend bool reopen_table(Session *,Table *,bool);
1052.2.7 by Nathan Williams
Merged trunk and resolved conflicts.
731
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
732
  friend class CopyField;
1 by brian
clean slate
733
  friend class Item_avg_field;
734
  friend class Item_std_field;
735
  friend class Item_sum_num;
736
  friend class Item_sum_sum;
737
  friend class Item_sum_str;
738
  friend class Item_sum_count;
739
  friend class Item_sum_avg;
740
  friend class Item_sum_std;
741
  friend class Item_sum_min;
742
  friend class Item_sum_max;
743
  friend class Item_func_group_concat;
744
1003.1.9 by Brian Aker
Patches for Jay (aka name changes)
745
  bool isReadSet();
746
  bool isWriteSet();
1089.1.3 by Brian Aker
Fix protobuf to release memory. Add in assert() for wrong column usage. Fix
747
  void setReadSet(bool arg= true);
748
  void setWriteSet(bool arg= true);
1999.4.5 by Brian Aker
Get all of the endian stuff out of the classes.
749
750
protected:
751
2016.1.2 by Brian Aker
Fix for Solaris
752
  void pack_num(uint64_t arg, unsigned char *destination= NULL);
753
  uint64_t unpack_num(uint64_t &destination, const unsigned char *arg= NULL) const;
1 by brian
clean slate
754
};
755
1992.5.1 by Brian Aker
Additional cerr output bits for a few classes (Item, Field,...)
756
std::ostream& operator<<(std::ostream& output, const Field &field);
757
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
758
} /* namespace drizzled */
759
760
/** @TODO Why is this in the middle of the file???*/
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
761
#include "drizzled/create_field.h"
762
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
763
namespace drizzled
764
{
765
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
766
/**
767
 * A class for sending field information to a client.
768
 *
769
 * @details
770
 *
771
 * Send_field is basically a stripped-down POD class for
772
 * representing basic information about a field...
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
773
 */
1241.3.2 by Trond Norbye
Cleanup: use c++ style casting
774
class SendField
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
775
{
776
public:
1 by brian
clean slate
777
  const char *db_name;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
778
  const char *table_name;
779
  const char *org_table_name;
780
  const char *col_name;
781
  const char *org_col_name;
290 by Brian Aker
Update for ulong change over.
782
  uint32_t length;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
783
  uint32_t charsetnr;
784
  uint32_t flags;
785
  uint32_t decimals;
1 by brian
clean slate
786
  enum_field_types type;
1052.2.4 by Nathan Williams
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.
787
  SendField() {}
1 by brian
clean slate
788
};
789
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
790
/**
791
 * A class for quick copying data to fields
792
 */
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
793
class CopyField :public memory::SqlAlloc
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
794
{
1 by brian
clean slate
795
  /**
796
    Convenience definition of a copy function returned by
797
    get_copy_func.
798
  */
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
799
  typedef void Copy_func(CopyField*);
1 by brian
clean slate
800
  Copy_func *get_copy_func(Field *to, Field *from);
801
public:
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
802
  unsigned char *from_ptr;
803
  unsigned char *to_ptr;
804
  unsigned char *from_null_ptr;
805
  unsigned char *to_null_ptr;
274 by Brian Aker
my_bool conversion in Table
806
  bool *null_row;
1055.2.8 by Jay Pipes
Breaks Create_field definition out into its own header file. More documentation and style cleanups around Create_field.
807
  uint32_t from_bit;
808
  uint32_t to_bit;
809
  uint32_t from_length;
810
  uint32_t to_length;
811
  Field *from_field;
812
  Field *to_field;
1 by brian
clean slate
813
  String tmp;					// For items
814
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
815
  CopyField() {}
816
  ~CopyField() {}
660.1.3 by Eric Herman
removed trailing whitespace with simple script:
817
  void set(Field *to,Field *from,bool save);	// Field to field
481 by Brian Aker
Remove all of uchar.
818
  void set(unsigned char *to,Field *from);		// Field to string
1052.2.2 by Nathan Williams
No actual code changes. Changed Copy_field to CopyField, to reflect the coding standards.
819
  void (*do_copy)(CopyField *);
820
  void (*do_copy2)(CopyField *);		// Used to handle null values
1 by brian
clean slate
821
};
822
438.1.13 by Brian Aker
uint cleanup.
823
uint32_t pack_length_to_packflag(uint32_t type);
205 by Brian Aker
uint32 -> uin32_t
824
uint32_t calc_pack_length(enum_field_types type,uint32_t length);
1 by brian
clean slate
825
int set_field_to_null(Field *field);
826
int set_field_to_null_with_conversions(Field *field, bool no_conversions);
827
1055.2.7 by Jay Pipes
More documentation cleanup for Field class
828
/**
829
 * Tests if the given string contains important data:
830
 * not spaces for character string, or any data for binary string.
831
 *
832
 * @param pointer to the character set to use
833
 * @param String to test
834
 * @param String end
835
 *
836
 * @retval
837
 *  false - If string does not have important data
838
 * @retval
839
 *  true  - If string has some important data
840
 */
1055.2.6 by Jay Pipes
Style cleanup in field.cc and move documentation into Field class in header file.
841
bool test_if_important_data(const CHARSET_INFO * const cs,
842
                            const char *str,
843
                            const char *strend);
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
844
1280.1.10 by Monty Taylor
Put everything in drizzled into drizzled namespace.
845
} /* namespace drizzled */
846
520.8.2 by Monty Taylor
Moved sql_parse.h and sql_error.h out of common_includes.
847
#endif /* DRIZZLED_FIELD_H */