~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/time/second.cc

  • Committer: brian
  • Date: 2008-06-25 05:29:13 UTC
  • Revision ID: brian@localhost.localdomain-20080625052913-6upwo0jsrl4lnapl
clean slate

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; 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
 
 */
19
 
 
20
 
#include "config.h"
21
 
#include "drizzled/temporal.h"
22
 
#include "drizzled/error.h"
23
 
#include "drizzled/function/time/second.h"
24
 
 
25
 
namespace drizzled
26
 
{
27
 
 
28
 
int64_t Item_func_second::val_int()
29
 
{
30
 
  assert(fixed);
31
 
 
32
 
  if (args[0]->is_null())
33
 
  {
34
 
    /* For NULL argument, we return a NULL result */
35
 
    null_value= true;
36
 
    return 0;
37
 
  }
38
 
 
39
 
  /* 
40
 
   * Because of the ridiculous way in which MySQL handles
41
 
   * TIME values (it does implicit integer -> string conversions
42
 
   * but only for DATETIME, not TIME values) we must first 
43
 
   * try a conversion into a TIME from a string.  If this
44
 
   * fails, we fall back on a DATETIME conversion.  This is
45
 
   * necessary because of the fact that DateTime::from_string()
46
 
   * looks first for DATETIME, then DATE regex matches.  6 consecutive
47
 
   * numbers, say 231130, will match the DATE regex YYMMDD
48
 
   * with no TIME part, but MySQL actually implicitly treats
49
 
   * parameters to SECOND(), HOUR(), and MINUTE() as TIME-only
50
 
   * values and matches 231130 as HHmmSS!
51
 
   *
52
 
   * Oh, and Brian Aker MADE me do this. :) --JRP
53
 
   */
54
 
  Time temporal_time;
55
 
  
56
 
  char time_buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
57
 
  String tmp_time(time_buff,sizeof(time_buff), &my_charset_utf8_bin);
58
 
  String *time_res= args[0]->val_str(&tmp_time);
59
 
  if (! temporal_time.from_string(time_res->c_ptr(), time_res->length()))
60
 
  {
61
 
    /* 
62
 
     * OK, we failed to match the first argument as a string
63
 
     * representing a time value, so we grab the first argument 
64
 
     * as a DateTime object and try that for a match...
65
 
     */
66
 
    DateTime temporal_datetime;
67
 
    Item_result arg0_result_type= args[0]->result_type();
68
 
    
69
 
    switch (arg0_result_type)
70
 
    {
71
 
      case DECIMAL_RESULT: 
72
 
        /* 
73
 
         * For doubles supplied, interpret the arg as a string, 
74
 
         * so intentionally fall-through here...
75
 
         * This allows us to accept double parameters like 
76
 
         * 19971231235959.01 and interpret it the way MySQL does:
77
 
         * as a TIMESTAMP-like thing with a microsecond component.
78
 
         * Ugh, but need to keep backwards-compat.
79
 
         */
80
 
      case STRING_RESULT:
81
 
        {
82
 
          char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
83
 
          String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
84
 
          String *res= args[0]->val_str(&tmp);
85
 
          if (! temporal_datetime.from_string(res->c_ptr(), res->length()))
86
 
          {
87
 
            /* 
88
 
            * Could not interpret the function argument as a temporal value, 
89
 
            * so throw an error and return 0
90
 
            */
91
 
            my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
92
 
            return 0;
93
 
          }
94
 
        }
95
 
        break;
96
 
      case INT_RESULT:
97
 
        if (temporal_datetime.from_int64_t(args[0]->val_int()))
98
 
          break;
99
 
        /* Intentionally fall-through on invalid conversion from integer */
100
 
      default:
101
 
        {
102
 
          /* 
103
 
          * Could not interpret the function argument as a temporal value, 
104
 
          * so throw an error and return 0
105
 
          */
106
 
          null_value= true;
107
 
          char buff[DRIZZLE_MAX_LENGTH_DATETIME_AS_STRING];
108
 
          String tmp(buff,sizeof(buff), &my_charset_utf8_bin);
109
 
          String *res;
110
 
 
111
 
          res= args[0]->val_str(&tmp);
112
 
 
113
 
          my_error(ER_INVALID_DATETIME_VALUE, MYF(0), res->c_ptr());
114
 
          return 0;
115
 
        }
116
 
    }
117
 
    return (int64_t) temporal_datetime.seconds();
118
 
  }
119
 
  return (int64_t) temporal_time.seconds();
120
 
}
121
 
 
122
 
} /* namespace drizzled */