~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/long.h

  • Committer: Monty Taylor
  • Date: 2008-09-15 00:46:33 UTC
  • mfrom: (383.1.55 client-split)
  • Revision ID: monty@inaugust.com-20080915004633-fmjw27fi41cxs35w
Merged from client-split.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* - mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
1
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
4
 *  Copyright (C) 2008 MySQL
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#ifndef DRIZZLED_FIELD_LONG_H
22
 
#define DRIZZLED_FIELD_LONG_H
23
 
 
24
 
#include <drizzled/field/num.h>
25
 
 
26
 
namespace drizzled
27
 
{
 
21
#ifndef DRIZZLE_SERVER_FIELD_LONG
 
22
#define DRIZZLE_SERVER_FIELD_LONG
28
23
 
29
24
class Field_long :public Field_num {
30
25
public:
31
 
 
32
 
  using Field::val_int;
33
 
  using Field::val_str;
34
 
  using Field::cmp;
35
 
  using Field::pack;
36
 
  using Field::store;
37
 
  using Field::unpack;
38
 
 
39
 
  Field_long(unsigned char *ptr_arg, uint32_t len_arg, unsigned char *null_ptr_arg,
40
 
             unsigned char null_bit_arg,
 
26
  Field_long(uchar *ptr_arg, uint32_t len_arg, uchar *null_ptr_arg,
 
27
             uchar null_bit_arg,
41
28
             enum utype unireg_check_arg, const char *field_name_arg,
42
29
             bool zero_arg, bool unsigned_arg)
43
30
    :Field_num(ptr_arg, len_arg, null_ptr_arg, null_bit_arg,
46
33
    {}
47
34
  Field_long(uint32_t len_arg,bool maybe_null_arg, const char *field_name_arg,
48
35
             bool unsigned_arg)
49
 
    :Field_num((unsigned char*) 0, len_arg, maybe_null_arg ? (unsigned char*) "": 0,0,
 
36
    :Field_num((uchar*) 0, len_arg, maybe_null_arg ? (uchar*) "": 0,0,
50
37
               NONE, field_name_arg,0,0,unsigned_arg)
51
38
    {}
52
39
  enum Item_result result_type () const { return INT_RESULT; }
53
40
  enum_field_types type() const { return DRIZZLE_TYPE_LONG;}
54
41
  enum ha_base_keytype key_type() const
55
42
    { return unsigned_flag ? HA_KEYTYPE_ULONG_INT : HA_KEYTYPE_LONG_INT; }
56
 
  int store(const char *to,uint32_t length, const CHARSET_INFO * const charset);
 
43
  int store(const char *to,uint length, const CHARSET_INFO * const charset);
57
44
  int store(double nr);
58
45
  int store(int64_t nr, bool unsigned_val);
59
46
  int reset(void) { ptr[0]=ptr[1]=ptr[2]=ptr[3]=0; return 0; }
60
47
  double val_real(void);
61
48
  int64_t val_int(void);
 
49
  bool send_binary(Protocol *protocol);
62
50
  String *val_str(String*,String *);
63
 
  int cmp(const unsigned char *,const unsigned char *);
64
 
  void sort_string(unsigned char *buff,uint32_t length);
 
51
  int cmp(const uchar *,const uchar *);
 
52
  void sort_string(uchar *buff,uint length);
65
53
  uint32_t pack_length() const { return 4; }
66
54
  void sql_type(String &str) const;
67
55
  uint32_t max_display_length() { return MY_INT32_NUM_DECIMAL_DIGITS; }
68
 
  virtual unsigned char *pack(unsigned char* to, const unsigned char *from,
69
 
                      uint32_t max_length,
70
 
                      bool low_byte_first);
71
 
 
72
 
  virtual const unsigned char *unpack(unsigned char* to, const unsigned char *from,
73
 
                              uint32_t param_data,
74
 
                              bool low_byte_first);
 
56
  virtual uchar *pack(uchar* to, const uchar *from,
 
57
                      uint max_length __attribute__((unused)),
 
58
                      bool low_byte_first __attribute__((unused)))
 
59
  {
 
60
    int32_t val;
 
61
#ifdef WORDS_BIGENDIAN
 
62
    if (table->s->db_low_byte_first)
 
63
      val = sint4korr(from);
 
64
    else
 
65
#endif
 
66
      longget(val, from);
 
67
 
 
68
#ifdef WORDS_BIGENDIAN
 
69
    if (low_byte_first)
 
70
      int4store(to, val);
 
71
    else
 
72
#endif
 
73
      longstore(to, val);
 
74
    return to + sizeof(val);
 
75
  }
 
76
 
 
77
  virtual const uchar *unpack(uchar* to, const uchar *from,
 
78
                              uint param_data __attribute__((unused)),
 
79
                              bool low_byte_first __attribute__((unused)))
 
80
  {
 
81
    int32_t val;
 
82
#ifdef WORDS_BIGENDIAN
 
83
    if (low_byte_first)
 
84
      val = sint4korr(from);
 
85
    else
 
86
#endif
 
87
      longget(val, from);
 
88
 
 
89
#ifdef WORDS_BIGENDIAN
 
90
    if (table->s->db_low_byte_first)
 
91
      int4store(to, val);
 
92
    else
 
93
#endif
 
94
      longstore(to, val);
 
95
    return from + sizeof(val);
 
96
  }
75
97
};
76
98
 
77
 
} /* namespace drizzled */
78
 
 
79
 
#endif /* DRIZZLED_FIELD_LONG_H */
 
99
#endif
80
100