~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/field/time.cc

  • Committer: Marisa Plumb
  • Date: 2010-12-04 02:38:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1984.
  • Revision ID: marisa.plumb@gmail.com-20101204023829-2khzxh30wxi256db
updates to a few sql docs 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++ c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems
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
 
 
21
 
#include <config.h>
22
 
#include <boost/lexical_cast.hpp>
23
 
#include <drizzled/field/time.h>
24
 
#include <drizzled/error.h>
25
 
#include <drizzled/tztime.h>
26
 
#include <drizzled/table.h>
27
 
#include <drizzled/session.h>
28
 
 
29
 
#include <math.h>
30
 
 
31
 
#include <sstream>
32
 
 
33
 
#include <drizzled/temporal.h>
34
 
 
35
 
namespace drizzled
36
 
{
37
 
 
38
 
namespace field
39
 
{
40
 
 
41
 
/**
42
 
  time_t type
43
 
 
44
 
  ** In string context: HH:MM:SS
45
 
  ** In number context: HHMMSS
46
 
 
47
 
 */
48
 
  Time::Time(unsigned char *ptr_arg,
49
 
             uint32_t,
50
 
             unsigned char *null_ptr_arg,
51
 
             unsigned char null_bit_arg,
52
 
             const char *field_name_arg) :
53
 
    Field_str(ptr_arg,
54
 
              DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
55
 
              null_ptr_arg,
56
 
              null_bit_arg,
57
 
              field_name_arg,
58
 
              &my_charset_bin)
59
 
{
60
 
}
61
 
 
62
 
Time::Time(bool maybe_null_arg,
63
 
           const char *field_name_arg) :
64
 
  Field_str((unsigned char*) NULL,
65
 
            DateTime::MAX_STRING_LENGTH - 1 /* no \0 */,
66
 
            maybe_null_arg ? (unsigned char*) "": 0,
67
 
            0,
68
 
            field_name_arg,
69
 
            &my_charset_bin)
70
 
{
71
 
}
72
 
 
73
 
int Time::store(const char *from,
74
 
                uint32_t len,
75
 
                const CHARSET_INFO * const )
76
 
{
77
 
  drizzled::Time temporal;
78
 
 
79
 
  ASSERT_COLUMN_MARKED_FOR_WRITE;
80
 
 
81
 
  if (not temporal.from_string(from, (size_t) len))
82
 
  {
83
 
    std::string tmp(boost::lexical_cast<std::string>(from));
84
 
    my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
85
 
    return 1;
86
 
  }
87
 
 
88
 
  pack_time(temporal);
89
 
 
90
 
  return 0;
91
 
}
92
 
 
93
 
int Time::store(double from)
94
 
95
 
  ASSERT_COLUMN_MARKED_FOR_WRITE;
96
 
 
97
 
  do
98
 
  {
99
 
    int64_t tmp;
100
 
 
101
 
    if (from > (double)TIME_MAX_VALUE)
102
 
    { 
103
 
      tmp= TIME_MAX_VALUE;
104
 
      break;
105
 
    }
106
 
    else if (from < (double) - TIME_MAX_VALUE)
107
 
    { 
108
 
      tmp= -TIME_MAX_VALUE;
109
 
      break;
110
 
    }
111
 
    else
112
 
    { 
113
 
      tmp=(long) floor(fabs(from));                 // Remove fractions
114
 
 
115
 
      if (from < 0)
116
 
        tmp= -tmp;
117
 
 
118
 
      if (tmp % 100 > 59 || tmp/100 % 100 > 59)
119
 
      { 
120
 
        break;
121
 
      }
122
 
    }
123
 
 
124
 
    return store(tmp, false);
125
 
 
126
 
  } while (0);
127
 
 
128
 
  std::string tmp(boost::lexical_cast<std::string>(from));
129
 
  my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
130
 
 
131
 
  return 1;
132
 
}
133
 
 
134
 
int Time::store(int64_t from, bool)
135
 
{
136
 
  ASSERT_COLUMN_MARKED_FOR_WRITE;
137
 
 
138
 
  /* 
139
 
   * Try to create a DateTime from the supplied integer.  Throw an error
140
 
   * if unable to create a valid DateTime.  
141
 
   */
142
 
  drizzled::Time temporal;
143
 
  if (not temporal.from_time_t(from))
144
 
  {
145
 
    /* Convert the integer to a string using boost::lexical_cast */
146
 
    std::string tmp(boost::lexical_cast<std::string>(from));
147
 
    my_error(ER_INVALID_TIME_VALUE, MYF(0), tmp.c_str());
148
 
    return 2;
149
 
  }
150
 
 
151
 
  pack_time(temporal);
152
 
 
153
 
  return 0;
154
 
}
155
 
 
156
 
void Time::pack_time(drizzled::Time &temporal)
157
 
{
158
 
  int32_t tmp;
159
 
  temporal.to_int32_t(&tmp);
160
 
  tmp= htonl(tmp);
161
 
  memcpy(ptr, &tmp, sizeof(int32_t));
162
 
}
163
 
 
164
 
void Time::unpack_time(drizzled::Time &temporal) const
165
 
{
166
 
  int32_t tmp;
167
 
 
168
 
  memcpy(&tmp, ptr, sizeof(int32_t));
169
 
  tmp= htonl(tmp);
170
 
 
171
 
  temporal.from_int32_t(tmp);
172
 
}
173
 
 
174
 
void Time::unpack_time(int32_t &destination, const unsigned char *source) const
175
 
{
176
 
  memcpy(&destination, source, sizeof(int32_t));
177
 
  destination= htonl(destination);
178
 
}
179
 
 
180
 
double Time::val_real(void) const
181
 
{
182
 
  return (double) Time::val_int();
183
 
}
184
 
 
185
 
int64_t Time::val_int(void) const
186
 
{
187
 
  ASSERT_COLUMN_MARKED_FOR_READ;
188
 
 
189
 
  drizzled::Time temporal;
190
 
  unpack_time(temporal);
191
 
 
192
 
  /* We must convert into a "timestamp-formatted integer" ... */
193
 
  uint64_t result;
194
 
  temporal.to_uint64_t(result);
195
 
  return result;
196
 
}
197
 
 
198
 
String *Time::val_str(String *val_buffer, String *) const
199
 
{
200
 
  char *to;
201
 
  int to_len= field_length + 1;
202
 
 
203
 
  val_buffer->alloc(to_len);
204
 
  to= (char *) val_buffer->ptr();
205
 
 
206
 
  val_buffer->set_charset(&my_charset_bin);     /* Safety */
207
 
 
208
 
  drizzled::Time temporal;
209
 
  unpack_time(temporal);
210
 
 
211
 
  int rlen;
212
 
  rlen= temporal.to_string(to, to_len);
213
 
  assert(rlen < to_len);
214
 
 
215
 
  val_buffer->length(rlen);
216
 
  return val_buffer;
217
 
}
218
 
 
219
 
bool Time::get_date(type::Time &ltime, uint32_t) const
220
 
{
221
 
  ltime.reset();
222
 
 
223
 
  drizzled::Time temporal;
224
 
  unpack_time(temporal);
225
 
 
226
 
  ltime.time_type= type::DRIZZLE_TIMESTAMP_DATETIME;
227
 
  ltime.year= temporal.years();
228
 
  ltime.month= temporal.months();
229
 
  ltime.day= temporal.days();
230
 
  ltime.hour= temporal.hours();
231
 
  ltime.minute= temporal.minutes();
232
 
  ltime.second= temporal.seconds();
233
 
 
234
 
  return 0;
235
 
}
236
 
 
237
 
bool Time::get_time(type::Time &ltime) const
238
 
{
239
 
  return Time::get_date(ltime, 0);
240
 
}
241
 
 
242
 
int Time::cmp(const unsigned char *a_ptr, const unsigned char *b_ptr)
243
 
{
244
 
  int32_t a,b;
245
 
 
246
 
  unpack_time(a, a_ptr);
247
 
  unpack_time(b, b_ptr);
248
 
 
249
 
  return (a < b) ? -1 : (a > b) ? 1 : 0;
250
 
}
251
 
 
252
 
 
253
 
void Time::sort_string(unsigned char *to,uint32_t )
254
 
{
255
 
#ifdef WORDS_BIGENDIAN
256
 
  if (!getTable() || !getTable()->getShare()->db_low_byte_first)
257
 
  {
258
 
    to[0] = ptr[0];
259
 
    to[1] = ptr[1];
260
 
    to[2] = ptr[2];
261
 
    to[3] = ptr[3];
262
 
  }
263
 
  else
264
 
#endif
265
 
  {
266
 
    to[0] = ptr[3];
267
 
    to[1] = ptr[2];
268
 
    to[2] = ptr[1];
269
 
    to[3] = ptr[0];
270
 
  }
271
 
}
272
 
 
273
 
void Time::sql_type(String &res) const
274
 
{
275
 
  res.set_ascii(STRING_WITH_LEN("timestamp"));
276
 
}
277
 
 
278
 
long Time::get_timestamp(bool *null_value) const
279
 
{
280
 
  if ((*null_value= is_null()))
281
 
    return 0;
282
 
 
283
 
  uint64_t tmp;
284
 
  return unpack_num(tmp);
285
 
}
286
 
 
287
 
size_t Time::max_string_length()
288
 
{
289
 
  return sizeof(int64_t);
290
 
}
291
 
 
292
 
} /* namespace field */
293
 
} /* namespace drizzled */