~drizzle-trunk/drizzle/development

« back to all changes in this revision

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

  • Committer: Brian Aker
  • Date: 2008-07-28 18:01:38 UTC
  • Revision ID: brian@tangent.org-20080728180138-q2pxlq0qiapvqsdn
Remove YEAR field type

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 CSTDINT_H
22
 
#include "drizzled/function/time/timestamp_diff.h"
23
 
#include "drizzled/time_functions.h"
24
 
 
25
 
int64_t Item_func_timestamp_diff::val_int()
26
 
{
27
 
  DRIZZLE_TIME ltime1, ltime2;
28
 
  int64_t seconds;
29
 
  long microseconds;
30
 
  long months= 0;
31
 
  int neg= 1;
32
 
 
33
 
  null_value= 0;
34
 
  if (args[0]->get_date(&ltime1, TIME_NO_ZERO_DATE) ||
35
 
      args[1]->get_date(&ltime2, TIME_NO_ZERO_DATE))
36
 
    goto null_date;
37
 
 
38
 
  if (calc_time_diff(&ltime2,&ltime1, 1,
39
 
                     &seconds, &microseconds))
40
 
    neg= -1;
41
 
 
42
 
  if (int_type == INTERVAL_YEAR ||
43
 
      int_type == INTERVAL_QUARTER ||
44
 
      int_type == INTERVAL_MONTH)
45
 
  {
46
 
    uint32_t year_beg, year_end, month_beg, month_end, day_beg, day_end;
47
 
    uint32_t years= 0;
48
 
    uint32_t second_beg, second_end, microsecond_beg, microsecond_end;
49
 
 
50
 
    if (neg == -1)
51
 
    {
52
 
      year_beg= ltime2.year;
53
 
      year_end= ltime1.year;
54
 
      month_beg= ltime2.month;
55
 
      month_end= ltime1.month;
56
 
      day_beg= ltime2.day;
57
 
      day_end= ltime1.day;
58
 
      second_beg= ltime2.hour * 3600 + ltime2.minute * 60 + ltime2.second;
59
 
      second_end= ltime1.hour * 3600 + ltime1.minute * 60 + ltime1.second;
60
 
      microsecond_beg= ltime2.second_part;
61
 
      microsecond_end= ltime1.second_part;
62
 
    }
63
 
    else
64
 
    {
65
 
      year_beg= ltime1.year;
66
 
      year_end= ltime2.year;
67
 
      month_beg= ltime1.month;
68
 
      month_end= ltime2.month;
69
 
      day_beg= ltime1.day;
70
 
      day_end= ltime2.day;
71
 
      second_beg= ltime1.hour * 3600 + ltime1.minute * 60 + ltime1.second;
72
 
      second_end= ltime2.hour * 3600 + ltime2.minute * 60 + ltime2.second;
73
 
      microsecond_beg= ltime1.second_part;
74
 
      microsecond_end= ltime2.second_part;
75
 
    }
76
 
 
77
 
    /* calc years */
78
 
    years= year_end - year_beg;
79
 
    if (month_end < month_beg || (month_end == month_beg && day_end < day_beg))
80
 
      years-= 1;
81
 
 
82
 
    /* calc months */
83
 
    months= 12*years;
84
 
    if (month_end < month_beg || (month_end == month_beg && day_end < day_beg))
85
 
      months+= 12 - (month_beg - month_end);
86
 
    else
87
 
      months+= (month_end - month_beg);
88
 
 
89
 
    if (day_end < day_beg)
90
 
      months-= 1;
91
 
    else if ((day_end == day_beg) &&
92
 
             ((second_end < second_beg) ||
93
 
              (second_end == second_beg && microsecond_end < microsecond_beg)))
94
 
      months-= 1;
95
 
  }
96
 
 
97
 
  switch (int_type) {
98
 
  case INTERVAL_YEAR:
99
 
    return months/12*neg;
100
 
  case INTERVAL_QUARTER:
101
 
    return months/3*neg;
102
 
  case INTERVAL_MONTH:
103
 
    return months*neg;
104
 
  case INTERVAL_WEEK:
105
 
    return seconds/86400L/7L*neg;
106
 
  case INTERVAL_DAY:
107
 
    return seconds/86400L*neg;
108
 
  case INTERVAL_HOUR:
109
 
    return seconds/3600L*neg;
110
 
  case INTERVAL_MINUTE:
111
 
    return seconds/60L*neg;
112
 
  case INTERVAL_SECOND:
113
 
    return seconds*neg;
114
 
  case INTERVAL_MICROSECOND:
115
 
    /*
116
 
      In MySQL difference between any two valid datetime values
117
 
      in microseconds fits into int64_t.
118
 
    */
119
 
    return (seconds*1000000L+microseconds)*neg;
120
 
  default:
121
 
    break;
122
 
  }
123
 
 
124
 
null_date:
125
 
  null_value=1;
126
 
  return 0;
127
 
}
128
 
 
129
 
 
130
 
void Item_func_timestamp_diff::print(String *str, enum_query_type query_type)
131
 
{
132
 
  str->append(func_name());
133
 
  str->append('(');
134
 
 
135
 
  switch (int_type) {
136
 
  case INTERVAL_YEAR:
137
 
    str->append(STRING_WITH_LEN("YEAR"));
138
 
    break;
139
 
  case INTERVAL_QUARTER:
140
 
    str->append(STRING_WITH_LEN("QUARTER"));
141
 
    break;
142
 
  case INTERVAL_MONTH:
143
 
    str->append(STRING_WITH_LEN("MONTH"));
144
 
    break;
145
 
  case INTERVAL_WEEK:
146
 
    str->append(STRING_WITH_LEN("WEEK"));
147
 
    break;
148
 
  case INTERVAL_DAY:
149
 
    str->append(STRING_WITH_LEN("DAY"));
150
 
    break;
151
 
  case INTERVAL_HOUR:
152
 
    str->append(STRING_WITH_LEN("HOUR"));
153
 
    break;
154
 
  case INTERVAL_MINUTE:
155
 
    str->append(STRING_WITH_LEN("MINUTE"));
156
 
    break;
157
 
  case INTERVAL_SECOND:
158
 
    str->append(STRING_WITH_LEN("SECOND"));
159
 
    break;
160
 
  case INTERVAL_MICROSECOND:
161
 
    str->append(STRING_WITH_LEN("SECOND_FRAC"));
162
 
    break;
163
 
  default:
164
 
    break;
165
 
  }
166
 
 
167
 
  for (uint32_t i=0 ; i < 2 ; i++)
168
 
  {
169
 
    str->append(',');
170
 
    args[i]->print(str, query_type);
171
 
  }
172
 
  str->append(')');
173
 
}