236.1.23
by Monty Taylor
Cleaned header headers. |
1 |
/* - mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
|
2 |
* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
|
|
3 |
*
|
|
4 |
* Copyright (C) 2008 MySQL
|
|
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 |
*/
|
|
1
by brian
clean slate |
20 |
|
21 |
/*
|
|
22 |
This is a private header of sql-common library, containing
|
|
23 |
declarations for my_time.c
|
|
24 |
*/
|
|
25 |
||
236.1.23
by Monty Taylor
Cleaned header headers. |
26 |
#ifndef _libdrizzle_my_time_h_
|
27 |
#define _libdrizzle_my_time_h_
|
|
28 |
||
243.1.11
by Jay Pipes
* Added include guards in a couple places, and removed unecessary |
29 |
#include <drizzled/global.h> |
77.1.39
by Monty Taylor
More mysql->drizzle renaming. |
30 |
#include "drizzle_time.h" |
1
by brian
clean slate |
31 |
|
398.1.9
by Monty Taylor
Cleaned up stuff out of global.h. |
32 |
#ifdef __cplusplus
|
33 |
extern "C" { |
|
34 |
#endif
|
|
1
by brian
clean slate |
35 |
|
151
by Brian Aker
Ulonglong to uint64_t |
36 |
extern uint64_t log_10_int[20]; |
481
by Brian Aker
Remove all of uchar. |
37 |
extern unsigned char days_in_month[]; |
1
by brian
clean slate |
38 |
|
39 |
/* Time handling defaults */
|
|
40 |
#define TIMESTAMP_MAX_YEAR 2038
|
|
41 |
#define TIMESTAMP_MIN_YEAR (1900 + YY_PART_YEAR - 1)
|
|
163
by Brian Aker
Merge Monty's code. |
42 |
#define TIMESTAMP_MAX_VALUE INT32_MAX
|
1
by brian
clean slate |
43 |
#define TIMESTAMP_MIN_VALUE 1
|
44 |
||
45 |
/* two-digit years < this are 20..; >= this are 19.. */
|
|
46 |
#define YY_PART_YEAR 70
|
|
47 |
||
48 |
/* Flags to str_to_datetime */
|
|
49 |
#define TIME_FUZZY_DATE 1
|
|
50 |
#define TIME_DATETIME_ONLY 2
|
|
51 |
/* Must be same as MODE_NO_ZERO_IN_DATE */
|
|
52 |
#define TIME_NO_ZERO_IN_DATE (65536L*2*2*2*2*2*2*2)
|
|
53 |
/* Must be same as MODE_NO_ZERO_DATE */
|
|
54 |
#define TIME_NO_ZERO_DATE (TIME_NO_ZERO_IN_DATE*2)
|
|
55 |
#define TIME_INVALID_DATES (TIME_NO_ZERO_DATE*2)
|
|
56 |
||
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
57 |
#define DRIZZLE_TIME_WARN_TRUNCATED 1
|
58 |
#define DRIZZLE_TIME_WARN_OUT_OF_RANGE 2
|
|
1
by brian
clean slate |
59 |
|
60 |
/* Limits for the TIME data type */
|
|
61 |
#define TIME_MAX_HOUR 838
|
|
62 |
#define TIME_MAX_MINUTE 59
|
|
63 |
#define TIME_MAX_SECOND 59
|
|
64 |
#define TIME_MAX_VALUE (TIME_MAX_HOUR*10000 + TIME_MAX_MINUTE*100 + \
|
|
65 |
TIME_MAX_SECOND)
|
|
66 |
#define TIME_MAX_VALUE_SECONDS (TIME_MAX_HOUR * 3600L + \
|
|
67 |
TIME_MAX_MINUTE * 60L + TIME_MAX_SECOND)
|
|
68 |
||
236.1.26
by Monty Taylor
my_bool cleanup in libdrizzle time stuff. |
69 |
bool check_date(const DRIZZLE_TIME *ltime, bool not_zero_date, |
294
by Brian Aker
libdrizzle has ulong removed. |
70 |
uint32_t flags, int *was_cut); |
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
71 |
enum enum_drizzle_timestamp_type |
482
by Brian Aker
Remove uint. |
72 |
str_to_datetime(const char *str, uint32_t length, DRIZZLE_TIME *l_time, |
73 |
uint32_t flags, int *was_cut); |
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
74 |
int64_t number_to_datetime(int64_t nr, DRIZZLE_TIME *time_res, |
482
by Brian Aker
Remove uint. |
75 |
uint32_t flags, int *was_cut); |
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
76 |
uint64_t TIME_to_uint64_t_datetime(const DRIZZLE_TIME *); |
77 |
uint64_t TIME_to_uint64_t_date(const DRIZZLE_TIME *); |
|
78 |
uint64_t TIME_to_uint64_t_time(const DRIZZLE_TIME *); |
|
79 |
uint64_t TIME_to_uint64_t(const DRIZZLE_TIME *); |
|
80 |
||
81 |
||
482
by Brian Aker
Remove uint. |
82 |
bool str_to_time(const char *str,uint32_t length, DRIZZLE_TIME *l_time, |
236.1.26
by Monty Taylor
my_bool cleanup in libdrizzle time stuff. |
83 |
int *warning); |
1
by brian
clean slate |
84 |
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
85 |
int check_time_range(DRIZZLE_TIME *my_time, int *warning); |
1
by brian
clean slate |
86 |
|
482
by Brian Aker
Remove uint. |
87 |
long calc_daynr(uint32_t year,uint32_t month,uint32_t day); |
88 |
uint32_t calc_days_in_year(uint32_t year); |
|
89 |
uint32_t year_2000_handling(uint32_t year); |
|
1
by brian
clean slate |
90 |
|
91 |
void init_time(void); |
|
92 |
||
93 |
||
94 |
/*
|
|
95 |
Function to check sanity of a TIMESTAMP value
|
|
96 |
||
97 |
DESCRIPTION
|
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
98 |
Check if a given DRIZZLE_TIME value fits in TIMESTAMP range.
|
1
by brian
clean slate |
99 |
This function doesn't make precise check, but rather a rough
|
100 |
estimate.
|
|
101 |
||
102 |
RETURN VALUES
|
|
163
by Brian Aker
Merge Monty's code. |
103 |
false The value seems sane
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
104 |
true The DRIZZLE_TIME value is definitely out of range
|
1
by brian
clean slate |
105 |
*/
|
106 |
||
236.1.26
by Monty Taylor
my_bool cleanup in libdrizzle time stuff. |
107 |
static inline bool validate_timestamp_range(const DRIZZLE_TIME *t) |
1
by brian
clean slate |
108 |
{
|
109 |
if ((t->year > TIMESTAMP_MAX_YEAR || t->year < TIMESTAMP_MIN_YEAR) || |
|
110 |
(t->year == TIMESTAMP_MAX_YEAR && (t->month > 1 || t->day > 19)) || |
|
111 |
(t->year == TIMESTAMP_MIN_YEAR && (t->month < 12 || t->day < 31))) |
|
163
by Brian Aker
Merge Monty's code. |
112 |
return false; |
1
by brian
clean slate |
113 |
|
163
by Brian Aker
Merge Monty's code. |
114 |
return true; |
1
by brian
clean slate |
115 |
}
|
116 |
||
722.1.8
by Monty Taylor
Merged from Toru - removal of my_time_t. |
117 |
time_t
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
118 |
my_system_gmt_sec(const DRIZZLE_TIME *t, long *my_timezone, |
93
by Brian Aker
Convert tztime.cc to bool from my_bool. |
119 |
bool *in_dst_time_gap); |
1
by brian
clean slate |
120 |
|
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
121 |
void set_zero_time(DRIZZLE_TIME *tm, enum enum_drizzle_timestamp_type time_type); |
1
by brian
clean slate |
122 |
|
123 |
/*
|
|
124 |
Required buffer length for my_time_to_str, my_date_to_str,
|
|
125 |
my_datetime_to_str and TIME_to_string functions. Note, that the
|
|
126 |
caller is still responsible to check that given TIME structure
|
|
127 |
has values in valid ranges, otherwise size of the buffer could
|
|
128 |
be not enough. We also rely on the fact that even wrong values
|
|
129 |
sent using binary protocol fit in this buffer.
|
|
130 |
*/
|
|
131 |
#define MAX_DATE_STRING_REP_LENGTH 30
|
|
132 |
||
236.1.24
by Monty Taylor
Renamed MYSQL_TIME to DRIZZLE_TIME. |
133 |
int my_time_to_str(const DRIZZLE_TIME *l_time, char *to); |
134 |
int my_date_to_str(const DRIZZLE_TIME *l_time, char *to); |
|
135 |
int my_datetime_to_str(const DRIZZLE_TIME *l_time, char *to); |
|
136 |
int my_TIME_to_str(const DRIZZLE_TIME *l_time, char *to); |
|
1
by brian
clean slate |
137 |
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
138 |
/*
|
1
by brian
clean slate |
139 |
Available interval types used in any statement.
|
140 |
||
141 |
'interval_type' must be sorted so that simple intervals comes first,
|
|
142 |
ie year, quarter, month, week, day, hour, etc. The order based on
|
|
143 |
interval size is also important and the intervals should be kept in a
|
|
144 |
large to smaller order. (get_interval_value() depends on this)
|
|
660.1.3
by Eric Herman
removed trailing whitespace with simple script: |
145 |
|
146 |
Note: If you change the order of elements in this enum you should fix
|
|
147 |
order of elements in 'interval_type_to_name' and 'interval_names'
|
|
148 |
arrays
|
|
149 |
||
1
by brian
clean slate |
150 |
See also interval_type_to_name, get_interval_value, interval_names
|
151 |
*/
|
|
152 |
||
153 |
enum interval_type |
|
154 |
{
|
|
155 |
INTERVAL_YEAR, INTERVAL_QUARTER, INTERVAL_MONTH, INTERVAL_WEEK, INTERVAL_DAY, |
|
156 |
INTERVAL_HOUR, INTERVAL_MINUTE, INTERVAL_SECOND, INTERVAL_MICROSECOND, |
|
157 |
INTERVAL_YEAR_MONTH, INTERVAL_DAY_HOUR, INTERVAL_DAY_MINUTE, |
|
158 |
INTERVAL_DAY_SECOND, INTERVAL_HOUR_MINUTE, INTERVAL_HOUR_SECOND, |
|
159 |
INTERVAL_MINUTE_SECOND, INTERVAL_DAY_MICROSECOND, INTERVAL_HOUR_MICROSECOND, |
|
160 |
INTERVAL_MINUTE_MICROSECOND, INTERVAL_SECOND_MICROSECOND, INTERVAL_LAST |
|
161 |
};
|
|
162 |
||
398.1.9
by Monty Taylor
Cleaned up stuff out of global.h. |
163 |
#ifdef __cplusplus
|
164 |
}
|
|
165 |
#endif
|
|
1
by brian
clean slate |
166 |
|
236.1.23
by Monty Taylor
Cleaned header headers. |
167 |
#endif /* _libdrizzle_my_time_h_ */ |