~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/enum.h

  • Committer: Monty Taylor
  • Date: 2009-03-16 16:56:48 UTC
  • mto: This revision was merged to the branch mainline in revision 938.
  • Revision ID: mordred@inaugust.com-20090316165648-0dsce73jne0qikk0
Addd -Wshadow to PROTOSKIP warnings and turned -Wstrict-aliasing off. Jumped the gun...

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_FIELD_ENUM_H
22
 
#define DRIZZLED_FIELD_ENUM_H
 
21
#ifndef DRIZZLE_SERVER_FIELD_ENUM
 
22
#define DRIZZLE_SERVER_FIELD_ENUM
23
23
 
24
24
#include <drizzled/field/str.h>
25
25
 
26
 
namespace drizzled
27
 
{
28
 
 
29
 
class Field_enum :public Field_str
30
 
{
 
26
class Field_enum :public Field_str {
 
27
protected:
 
28
  uint32_t packlength;
31
29
public:
32
30
 
33
31
  using Field::store;
35
33
  using Field::val_str;
36
34
  using Field::cmp;
37
35
 
38
 
  static const int max_supported_elements = 0x10000;
39
 
 
40
 
  /** Internal storage for the string values of the ENUM */
41
36
  TYPELIB *typelib;
42
 
  Field_enum(unsigned char *ptr_arg,
43
 
             uint32_t len_arg,
44
 
             unsigned char *null_ptr_arg,
 
37
  Field_enum(unsigned char *ptr_arg, uint32_t len_arg, unsigned char *null_ptr_arg,
45
38
             unsigned char null_bit_arg,
46
 
             const char *field_name_arg,
 
39
             enum utype unireg_check_arg, const char *field_name_arg,
 
40
             uint32_t packlength_arg,
47
41
             TYPELIB *typelib_arg,
48
42
             const CHARSET_INFO * const charset_arg)
49
 
    :Field_str(ptr_arg,
50
 
               len_arg,
51
 
               null_ptr_arg,
52
 
               null_bit_arg,
53
 
                     field_name_arg,
54
 
               charset_arg),
55
 
    typelib(typelib_arg)
 
43
    :Field_str(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
 
44
               unireg_check_arg, field_name_arg, charset_arg),
 
45
    packlength(packlength_arg),typelib(typelib_arg)
56
46
  {
57
 
    flags|= ENUM_FLAG;
 
47
      flags|=ENUM_FLAG;
58
48
  }
59
 
  Field *new_field(memory::Root *root, Table *new_table, bool keep_type);
60
 
  enum ha_base_keytype key_type() const { return HA_KEYTYPE_ULONG_INT; }
61
 
  int  store(const char *to, uint32_t length, const CHARSET_INFO * const);
 
49
  Field *new_field(MEM_ROOT *root, Table *new_table, bool keep_type);
 
50
  enum_field_types type() const { return DRIZZLE_TYPE_ENUM; }
 
51
  enum Item_result cmp_type () const { return INT_RESULT; }
 
52
  enum Item_result cast_to_int_type () const { return INT_RESULT; }
 
53
  enum ha_base_keytype key_type() const;
 
54
  int  store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
62
55
  int  store(double nr);
63
56
  int  store(int64_t nr, bool unsigned_val);
64
 
  double val_real(void) const;
65
 
  int64_t val_int(void) const;
66
 
  String *val_str(String*, String *) const;
67
 
  int cmp(const unsigned char *, const unsigned char *);
68
 
  void sort_string(unsigned char *buff, uint32_t length);
 
57
  double val_real(void);
 
58
  int64_t val_int(void);
 
59
  String *val_str(String*,String *);
 
60
  int cmp(const unsigned char *,const unsigned char *);
 
61
  void sort_string(unsigned char *buff,uint32_t length);
 
62
  uint32_t pack_length() const { return (uint32_t) packlength; }
69
63
  void store_type(uint64_t value);
70
64
  void sql_type(String &str) const;
 
65
  uint32_t size_of() const { return sizeof(*this); }
 
66
  enum_field_types real_type() const { return DRIZZLE_TYPE_ENUM; }
 
67
  uint32_t pack_length_from_metadata(uint32_t field_metadata)
 
68
  { return (field_metadata & 0x00ff); }
 
69
  uint32_t row_pack_length() { return pack_length(); }
 
70
  virtual bool zero_pack() const { return 0; }
 
71
  bool optimize_range(uint32_t, uint32_t)
 
72
  { return 0; }
71
73
  bool eq_def(Field *field);
72
 
  enum_field_types type() const
73
 
  {
74
 
    return DRIZZLE_TYPE_ENUM;
75
 
  }
76
 
  enum Item_result cmp_type () const
77
 
  {
78
 
    return INT_RESULT;
79
 
  }
80
 
  enum Item_result cast_to_int_type () const
81
 
  {
82
 
    return INT_RESULT;
83
 
  }
84
 
  uint32_t pack_length() const { return 4; }
85
 
  uint32_t size_of() const
86
 
  {
87
 
    return sizeof(*this);
88
 
  }
89
 
  enum_field_types real_type() const
90
 
  {
91
 
    return DRIZZLE_TYPE_ENUM;
92
 
  }
93
 
  virtual bool zero_pack() const
94
 
  {
95
 
    return false;
96
 
  }
97
 
  bool optimize_range(uint32_t, uint32_t)
98
 
  {
99
 
    return false;
100
 
  }
101
 
  bool has_charset(void) const
102
 
  {
103
 
    return true;
104
 
  }
 
74
  bool has_charset(void) const { return true; }
105
75
  /* enum and set are sorted as integers */
106
76
  const CHARSET_INFO *sort_charset(void) const { return &my_charset_bin; }
 
77
private:
 
78
  int do_save_field_metadata(unsigned char *first_byte);
107
79
};
108
80
 
109
 
} /* namespace drizzled */
110
 
 
111
 
#endif /* DRIZZLED_FIELD_ENUM_H */
 
81
#endif