drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1 | /* |
| 2 | ** 2003 October 31 |
| 3 | ** |
| 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
| 6 | ** |
| 7 | ** May you do good and not evil. |
| 8 | ** May you find forgiveness for yourself and forgive others. |
| 9 | ** May you share freely, never taking more than you give. |
| 10 | ** |
| 11 | ************************************************************************* |
| 12 | ** This file contains the C functions that implement date and time |
| 13 | ** functions for SQLite. |
| 14 | ** |
| 15 | ** There is only one exported symbol in this file - the function |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 16 | ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 17 | ** All other code has file scope. |
| 18 | ** |
drh | 86a11b8 | 2014-11-07 13:24:29 +0000 | [diff] [blame] | 19 | ** SQLite processes all times and dates as julian day numbers. The |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 20 | ** dates and times are stored as the number of days since noon |
| 21 | ** in Greenwich on November 24, 4714 B.C. according to the Gregorian |
drh | 7f986a6 | 2006-09-25 18:05:04 +0000 | [diff] [blame] | 22 | ** calendar system. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 23 | ** |
| 24 | ** 1970-01-01 00:00:00 is JD 2440587.5 |
| 25 | ** 2000-01-01 00:00:00 is JD 2451544.5 |
| 26 | ** |
peter.d.reid | 60ec914 | 2014-09-06 16:39:46 +0000 | [diff] [blame] | 27 | ** This implementation requires years to be expressed as a 4-digit number |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 28 | ** which means that only dates between 0000-01-01 and 9999-12-31 can |
| 29 | ** be represented, even though julian day numbers allow a much wider |
| 30 | ** range of dates. |
| 31 | ** |
| 32 | ** The Gregorian calendar system is used for all dates and times, |
| 33 | ** even those that predate the Gregorian calendar. Historians usually |
drh | 86a11b8 | 2014-11-07 13:24:29 +0000 | [diff] [blame] | 34 | ** use the julian calendar for dates prior to 1582-10-15 and for some |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 35 | ** dates afterwards, depending on locale. Beware of this difference. |
| 36 | ** |
| 37 | ** The conversion algorithms are implemented based on descriptions |
| 38 | ** in the following text: |
| 39 | ** |
| 40 | ** Jean Meeus |
| 41 | ** Astronomical Algorithms, 2nd Edition, 1998 |
| 42 | ** ISBM 0-943396-61-1 |
| 43 | ** Willmann-Bell, Inc |
| 44 | ** Richmond, Virginia (USA) |
| 45 | */ |
dougcurrie | ae53418 | 2003-12-24 01:41:19 +0000 | [diff] [blame] | 46 | #include "sqliteInt.h" |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 47 | #include <stdlib.h> |
| 48 | #include <assert.h> |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 49 | #include <time.h> |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 50 | |
drh | 4bc0585 | 2004-02-10 13:19:35 +0000 | [diff] [blame] | 51 | #ifndef SQLITE_OMIT_DATETIME_FUNCS |
| 52 | |
mistachkin | 0cedb96 | 2016-04-11 22:45:45 +0000 | [diff] [blame] | 53 | /* |
mistachkin | 8366ddf | 2016-04-12 16:11:52 +0000 | [diff] [blame] | 54 | ** The MSVC CRT on Windows CE may not have a localtime() function. |
| 55 | ** So declare a substitute. The substitute function itself is |
| 56 | ** defined in "os_win.c". |
mistachkin | 0cedb96 | 2016-04-11 22:45:45 +0000 | [diff] [blame] | 57 | */ |
| 58 | #if !defined(SQLITE_OMIT_LOCALTIME) && defined(_WIN32_WCE) && \ |
| 59 | (!defined(SQLITE_MSVC_LOCALTIME_API) || !SQLITE_MSVC_LOCALTIME_API) |
| 60 | struct tm *__cdecl localtime(const time_t *); |
| 61 | #endif |
shane | b8109ad | 2008-05-27 19:49:21 +0000 | [diff] [blame] | 62 | |
| 63 | /* |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 64 | ** A structure for holding a single date and time. |
| 65 | */ |
| 66 | typedef struct DateTime DateTime; |
| 67 | struct DateTime { |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 68 | sqlite3_int64 iJD; /* The julian day number times 86400000 */ |
| 69 | int Y, M, D; /* Year, month, and day */ |
| 70 | int h, m; /* Hour and minutes */ |
| 71 | int tz; /* Timezone offset in minutes */ |
| 72 | double s; /* Seconds */ |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 73 | char validYMD; /* True (1) if Y,M,D are valid */ |
| 74 | char validHMS; /* True (1) if h,m,s are valid */ |
| 75 | char validJD; /* True (1) if iJD is valid */ |
| 76 | char validTZ; /* True (1) if tz is valid */ |
drh | caeca51 | 2015-12-23 10:54:48 +0000 | [diff] [blame] | 77 | char tzSet; /* Timezone was set explicitly */ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | |
| 81 | /* |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 82 | ** Convert zDate into one or more integers according to the conversion |
| 83 | ** specifier zFormat. |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 84 | ** |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 85 | ** zFormat[] contains 4 characters for each integer converted, except for |
| 86 | ** the last integer which is specified by three characters. The meaning |
| 87 | ** of a four-character format specifiers ABCD is: |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 88 | ** |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 89 | ** A: number of digits to convert. Always "2" or "4". |
| 90 | ** B: minimum value. Always "0" or "1". |
| 91 | ** C: maximum value, decoded as: |
| 92 | ** a: 12 |
| 93 | ** b: 14 |
| 94 | ** c: 24 |
| 95 | ** d: 31 |
| 96 | ** e: 59 |
| 97 | ** f: 9999 |
| 98 | ** D: the separator character, or \000 to indicate this is the |
| 99 | ** last number to convert. |
| 100 | ** |
| 101 | ** Example: To translate an ISO-8601 date YYYY-MM-DD, the format would |
| 102 | ** be "40f-21a-20c". The "40f-" indicates the 4-digit year followed by "-". |
| 103 | ** The "21a-" indicates the 2-digit month followed by "-". The "20c" indicates |
| 104 | ** the 2-digit day which is the last integer in the set. |
| 105 | ** |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 106 | ** The function returns the number of successful conversions. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 107 | */ |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 108 | static int getDigits(const char *zDate, const char *zFormat, ...){ |
| 109 | /* The aMx[] array translates the 3rd character of each format |
| 110 | ** spec into a max size: a b c d e f */ |
| 111 | static const u16 aMx[] = { 12, 14, 24, 31, 59, 9999 }; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 112 | va_list ap; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 113 | int cnt = 0; |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 114 | char nextC; |
| 115 | va_start(ap, zFormat); |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 116 | do{ |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 117 | char N = zFormat[0] - '0'; |
| 118 | char min = zFormat[1] - '0'; |
| 119 | int val = 0; |
| 120 | u16 max; |
| 121 | |
| 122 | assert( zFormat[2]>='a' && zFormat[2]<='f' ); |
| 123 | max = aMx[zFormat[2] - 'a']; |
| 124 | nextC = zFormat[3]; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 125 | val = 0; |
| 126 | while( N-- ){ |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 127 | if( !sqlite3Isdigit(*zDate) ){ |
drh | 029b44b | 2006-01-15 00:13:15 +0000 | [diff] [blame] | 128 | goto end_getDigits; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 129 | } |
| 130 | val = val*10 + *zDate - '0'; |
| 131 | zDate++; |
| 132 | } |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 133 | if( val<(int)min || val>(int)max || (nextC!=0 && nextC!=*zDate) ){ |
drh | 029b44b | 2006-01-15 00:13:15 +0000 | [diff] [blame] | 134 | goto end_getDigits; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 135 | } |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 136 | *va_arg(ap,int*) = val; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 137 | zDate++; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 138 | cnt++; |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 139 | zFormat += 4; |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 140 | }while( nextC ); |
drh | 029b44b | 2006-01-15 00:13:15 +0000 | [diff] [blame] | 141 | end_getDigits: |
drh | 15b9a15 | 2006-01-31 20:49:13 +0000 | [diff] [blame] | 142 | va_end(ap); |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 143 | return cnt; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | /* |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 147 | ** Parse a timezone extension on the end of a date-time. |
| 148 | ** The extension is of the form: |
| 149 | ** |
| 150 | ** (+/-)HH:MM |
| 151 | ** |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 152 | ** Or the "zulu" notation: |
| 153 | ** |
| 154 | ** Z |
| 155 | ** |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 156 | ** If the parse is successful, write the number of minutes |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 157 | ** of change in p->tz and return 0. If a parser error occurs, |
| 158 | ** return non-zero. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 159 | ** |
| 160 | ** A missing specifier is not considered an error. |
| 161 | */ |
| 162 | static int parseTimezone(const char *zDate, DateTime *p){ |
| 163 | int sgn = 0; |
| 164 | int nHr, nMn; |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 165 | int c; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 166 | while( sqlite3Isspace(*zDate) ){ zDate++; } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 167 | p->tz = 0; |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 168 | c = *zDate; |
| 169 | if( c=='-' ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 170 | sgn = -1; |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 171 | }else if( c=='+' ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 172 | sgn = +1; |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 173 | }else if( c=='Z' || c=='z' ){ |
| 174 | zDate++; |
| 175 | goto zulu_time; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 176 | }else{ |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 177 | return c!=0; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 178 | } |
| 179 | zDate++; |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 180 | if( getDigits(zDate, "20b:20e", &nHr, &nMn)!=2 ){ |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 181 | return 1; |
| 182 | } |
| 183 | zDate += 5; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 184 | p->tz = sgn*(nMn + nHr*60); |
drh | 1cfdc90 | 2008-02-21 20:40:43 +0000 | [diff] [blame] | 185 | zulu_time: |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 186 | while( sqlite3Isspace(*zDate) ){ zDate++; } |
drh | caeca51 | 2015-12-23 10:54:48 +0000 | [diff] [blame] | 187 | p->tzSet = 1; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 188 | return *zDate!=0; |
| 189 | } |
| 190 | |
| 191 | /* |
| 192 | ** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF. |
| 193 | ** The HH, MM, and SS must each be exactly 2 digits. The |
| 194 | ** fractional seconds FFFF can be one or more digits. |
| 195 | ** |
| 196 | ** Return 1 if there is a parsing error and 0 on success. |
| 197 | */ |
| 198 | static int parseHhMmSs(const char *zDate, DateTime *p){ |
| 199 | int h, m, s; |
| 200 | double ms = 0.0; |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 201 | if( getDigits(zDate, "20c:20e", &h, &m)!=2 ){ |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 202 | return 1; |
| 203 | } |
| 204 | zDate += 5; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 205 | if( *zDate==':' ){ |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 206 | zDate++; |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 207 | if( getDigits(zDate, "20e", &s)!=1 ){ |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 208 | return 1; |
| 209 | } |
| 210 | zDate += 2; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 211 | if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 212 | double rScale = 1.0; |
| 213 | zDate++; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 214 | while( sqlite3Isdigit(*zDate) ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 215 | ms = ms*10.0 + *zDate - '0'; |
| 216 | rScale *= 10.0; |
| 217 | zDate++; |
| 218 | } |
| 219 | ms /= rScale; |
| 220 | } |
| 221 | }else{ |
| 222 | s = 0; |
| 223 | } |
| 224 | p->validJD = 0; |
| 225 | p->validHMS = 1; |
| 226 | p->h = h; |
| 227 | p->m = m; |
| 228 | p->s = s + ms; |
| 229 | if( parseTimezone(zDate, p) ) return 1; |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 230 | p->validTZ = (p->tz!=0)?1:0; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 231 | return 0; |
| 232 | } |
| 233 | |
| 234 | /* |
| 235 | ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume |
| 236 | ** that the YYYY-MM-DD is according to the Gregorian calendar. |
| 237 | ** |
| 238 | ** Reference: Meeus page 61 |
| 239 | */ |
| 240 | static void computeJD(DateTime *p){ |
| 241 | int Y, M, D, A, B, X1, X2; |
| 242 | |
| 243 | if( p->validJD ) return; |
| 244 | if( p->validYMD ){ |
| 245 | Y = p->Y; |
| 246 | M = p->M; |
| 247 | D = p->D; |
| 248 | }else{ |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 249 | Y = 2000; /* If no YMD specified, assume 2000-Jan-01 */ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 250 | M = 1; |
| 251 | D = 1; |
| 252 | } |
| 253 | if( M<=2 ){ |
| 254 | Y--; |
| 255 | M += 12; |
| 256 | } |
| 257 | A = Y/100; |
| 258 | B = 2 - A + (A/4); |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 259 | X1 = 36525*(Y+4716)/100; |
| 260 | X2 = 306001*(M+1)/10000; |
| 261 | p->iJD = (sqlite3_int64)((X1 + X2 + D + B - 1524.5 ) * 86400000); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 262 | p->validJD = 1; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 263 | if( p->validHMS ){ |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 264 | p->iJD += p->h*3600000 + p->m*60000 + (sqlite3_int64)(p->s*1000); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 265 | if( p->validTZ ){ |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 266 | p->iJD -= p->tz*60000; |
drh | f11c34d | 2006-09-08 12:27:36 +0000 | [diff] [blame] | 267 | p->validYMD = 0; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 268 | p->validHMS = 0; |
| 269 | p->validTZ = 0; |
| 270 | } |
| 271 | } |
| 272 | } |
| 273 | |
| 274 | /* |
| 275 | ** Parse dates of the form |
| 276 | ** |
| 277 | ** YYYY-MM-DD HH:MM:SS.FFF |
| 278 | ** YYYY-MM-DD HH:MM:SS |
| 279 | ** YYYY-MM-DD HH:MM |
| 280 | ** YYYY-MM-DD |
| 281 | ** |
| 282 | ** Write the result into the DateTime structure and return 0 |
| 283 | ** on success and 1 if the input string is not a well-formed |
| 284 | ** date. |
| 285 | */ |
| 286 | static int parseYyyyMmDd(const char *zDate, DateTime *p){ |
drh | 8eb2cce | 2004-02-21 03:28:18 +0000 | [diff] [blame] | 287 | int Y, M, D, neg; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 288 | |
drh | 8eb2cce | 2004-02-21 03:28:18 +0000 | [diff] [blame] | 289 | if( zDate[0]=='-' ){ |
| 290 | zDate++; |
| 291 | neg = 1; |
| 292 | }else{ |
| 293 | neg = 0; |
| 294 | } |
drh | 3349620 | 2016-01-14 19:32:46 +0000 | [diff] [blame] | 295 | if( getDigits(zDate, "40f-21a-21d", &Y, &M, &D)!=3 ){ |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 296 | return 1; |
| 297 | } |
| 298 | zDate += 10; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 299 | while( sqlite3Isspace(*zDate) || 'T'==*(u8*)zDate ){ zDate++; } |
drh | eb9a9e8 | 2004-02-22 17:49:32 +0000 | [diff] [blame] | 300 | if( parseHhMmSs(zDate, p)==0 ){ |
| 301 | /* We got the time */ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 302 | }else if( *zDate==0 ){ |
| 303 | p->validHMS = 0; |
| 304 | }else{ |
| 305 | return 1; |
| 306 | } |
| 307 | p->validJD = 0; |
| 308 | p->validYMD = 1; |
drh | 8eb2cce | 2004-02-21 03:28:18 +0000 | [diff] [blame] | 309 | p->Y = neg ? -Y : Y; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 310 | p->M = M; |
| 311 | p->D = D; |
| 312 | if( p->validTZ ){ |
| 313 | computeJD(p); |
| 314 | } |
| 315 | return 0; |
| 316 | } |
| 317 | |
| 318 | /* |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 319 | ** Set the time to the current time reported by the VFS. |
| 320 | ** |
| 321 | ** Return the number of errors. |
drh | 3af5d68 | 2008-06-12 13:50:00 +0000 | [diff] [blame] | 322 | */ |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 323 | static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){ |
drh | 95a7b3e | 2013-09-16 12:57:19 +0000 | [diff] [blame] | 324 | p->iJD = sqlite3StmtCurrentTime(context); |
| 325 | if( p->iJD>0 ){ |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 326 | p->validJD = 1; |
| 327 | return 0; |
| 328 | }else{ |
| 329 | return 1; |
| 330 | } |
drh | 3af5d68 | 2008-06-12 13:50:00 +0000 | [diff] [blame] | 331 | } |
| 332 | |
| 333 | /* |
drh | 86a11b8 | 2014-11-07 13:24:29 +0000 | [diff] [blame] | 334 | ** Attempt to parse the given string into a julian day number. Return |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 335 | ** the number of errors. |
| 336 | ** |
| 337 | ** The following are acceptable forms for the input string: |
| 338 | ** |
| 339 | ** YYYY-MM-DD HH:MM:SS.FFF +/-HH:MM |
| 340 | ** DDDD.DD |
| 341 | ** now |
| 342 | ** |
| 343 | ** In the first form, the +/-HH:MM is always optional. The fractional |
| 344 | ** seconds extension (the ".FFF") is optional. The seconds portion |
| 345 | ** (":SS.FFF") is option. The year and date can be omitted as long |
| 346 | ** as there is a time string. The time string can be omitted as long |
| 347 | ** as there is a year and date. |
| 348 | */ |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 349 | static int parseDateOrTime( |
| 350 | sqlite3_context *context, |
| 351 | const char *zDate, |
| 352 | DateTime *p |
| 353 | ){ |
drh | 9339da1 | 2010-09-30 00:50:49 +0000 | [diff] [blame] | 354 | double r; |
drh | 8eb2cce | 2004-02-21 03:28:18 +0000 | [diff] [blame] | 355 | if( parseYyyyMmDd(zDate,p)==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 356 | return 0; |
drh | 8eb2cce | 2004-02-21 03:28:18 +0000 | [diff] [blame] | 357 | }else if( parseHhMmSs(zDate, p)==0 ){ |
| 358 | return 0; |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 359 | }else if( sqlite3StrICmp(zDate,"now")==0){ |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 360 | return setDateTimeToCurrent(context, p); |
drh | 9339da1 | 2010-09-30 00:50:49 +0000 | [diff] [blame] | 361 | }else if( sqlite3AtoF(zDate, &r, sqlite3Strlen30(zDate), SQLITE_UTF8) ){ |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 362 | p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 363 | p->validJD = 1; |
| 364 | return 0; |
| 365 | } |
| 366 | return 1; |
| 367 | } |
| 368 | |
| 369 | /* |
| 370 | ** Compute the Year, Month, and Day from the julian day number. |
| 371 | */ |
| 372 | static void computeYMD(DateTime *p){ |
| 373 | int Z, A, B, C, D, E, X1; |
| 374 | if( p->validYMD ) return; |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 375 | if( !p->validJD ){ |
| 376 | p->Y = 2000; |
| 377 | p->M = 1; |
| 378 | p->D = 1; |
| 379 | }else{ |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 380 | Z = (int)((p->iJD + 43200000)/86400000); |
| 381 | A = (int)((Z - 1867216.25)/36524.25); |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 382 | A = Z + 1 + A - (A/4); |
| 383 | B = A + 1524; |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 384 | C = (int)((B - 122.1)/365.25); |
drh | 618ee61 | 2015-07-15 18:04:48 +0000 | [diff] [blame] | 385 | D = (36525*(C&32767))/100; |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 386 | E = (int)((B-D)/30.6001); |
| 387 | X1 = (int)(30.6001*E); |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 388 | p->D = B - D - X1; |
| 389 | p->M = E<14 ? E-1 : E-13; |
| 390 | p->Y = p->M>2 ? C - 4716 : C - 4715; |
| 391 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 392 | p->validYMD = 1; |
| 393 | } |
| 394 | |
| 395 | /* |
| 396 | ** Compute the Hour, Minute, and Seconds from the julian day number. |
| 397 | */ |
| 398 | static void computeHMS(DateTime *p){ |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 399 | int s; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 400 | if( p->validHMS ) return; |
drh | f11c34d | 2006-09-08 12:27:36 +0000 | [diff] [blame] | 401 | computeJD(p); |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 402 | s = (int)((p->iJD + 43200000) % 86400000); |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 403 | p->s = s/1000.0; |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 404 | s = (int)p->s; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 405 | p->s -= s; |
| 406 | p->h = s/3600; |
| 407 | s -= p->h*3600; |
| 408 | p->m = s/60; |
| 409 | p->s += s - p->m*60; |
| 410 | p->validHMS = 1; |
| 411 | } |
| 412 | |
| 413 | /* |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 414 | ** Compute both YMD and HMS |
| 415 | */ |
| 416 | static void computeYMD_HMS(DateTime *p){ |
| 417 | computeYMD(p); |
| 418 | computeHMS(p); |
| 419 | } |
| 420 | |
| 421 | /* |
| 422 | ** Clear the YMD and HMS and the TZ |
| 423 | */ |
| 424 | static void clearYMD_HMS_TZ(DateTime *p){ |
| 425 | p->validYMD = 0; |
| 426 | p->validHMS = 0; |
| 427 | p->validTZ = 0; |
| 428 | } |
| 429 | |
mistachkin | 6cc16fc | 2016-01-23 01:54:15 +0000 | [diff] [blame] | 430 | #ifndef SQLITE_OMIT_LOCALTIME |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 431 | /* |
| 432 | ** On recent Windows platforms, the localtime_s() function is available |
| 433 | ** as part of the "Secure CRT". It is essentially equivalent to |
| 434 | ** localtime_r() available under most POSIX platforms, except that the |
| 435 | ** order of the parameters is reversed. |
| 436 | ** |
| 437 | ** See http://msdn.microsoft.com/en-us/library/a442x3ye(VS.80).aspx. |
| 438 | ** |
| 439 | ** If the user has not indicated to use localtime_r() or localtime_s() |
| 440 | ** already, check for an MSVC build environment that provides |
| 441 | ** localtime_s(). |
| 442 | */ |
drh | 0ede9eb | 2015-01-10 16:49:23 +0000 | [diff] [blame] | 443 | #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S \ |
| 444 | && defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE) |
| 445 | #undef HAVE_LOCALTIME_S |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 446 | #define HAVE_LOCALTIME_S 1 |
| 447 | #endif |
| 448 | |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 449 | /* |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 450 | ** The following routine implements the rough equivalent of localtime_r() |
| 451 | ** using whatever operating-system specific localtime facility that |
| 452 | ** is available. This routine returns 0 on success and |
| 453 | ** non-zero on any kind of error. |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 454 | ** |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 455 | ** If the sqlite3GlobalConfig.bLocaltimeFault variable is true then this |
| 456 | ** routine will always fail. |
drh | e4bf4f0 | 2013-10-11 20:14:37 +0000 | [diff] [blame] | 457 | ** |
| 458 | ** EVIDENCE-OF: R-62172-00036 In this implementation, the standard C |
| 459 | ** library function localtime_r() is used to assist in the calculation of |
| 460 | ** local time. |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 461 | */ |
drh | 1f93a08 | 2011-06-21 15:54:24 +0000 | [diff] [blame] | 462 | static int osLocaltime(time_t *t, struct tm *pTm){ |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 463 | int rc; |
drh | 0ede9eb | 2015-01-10 16:49:23 +0000 | [diff] [blame] | 464 | #if !HAVE_LOCALTIME_R && !HAVE_LOCALTIME_S |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 465 | struct tm *pX; |
drh | df3aa16 | 2011-06-24 11:29:51 +0000 | [diff] [blame] | 466 | #if SQLITE_THREADSAFE>0 |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 467 | sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER); |
drh | df3aa16 | 2011-06-24 11:29:51 +0000 | [diff] [blame] | 468 | #endif |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 469 | sqlite3_mutex_enter(mutex); |
| 470 | pX = localtime(t); |
| 471 | #ifndef SQLITE_OMIT_BUILTIN_TEST |
| 472 | if( sqlite3GlobalConfig.bLocaltimeFault ) pX = 0; |
| 473 | #endif |
| 474 | if( pX ) *pTm = *pX; |
| 475 | sqlite3_mutex_leave(mutex); |
| 476 | rc = pX==0; |
| 477 | #else |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 478 | #ifndef SQLITE_OMIT_BUILTIN_TEST |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 479 | if( sqlite3GlobalConfig.bLocaltimeFault ) return 1; |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 480 | #endif |
drh | 0ede9eb | 2015-01-10 16:49:23 +0000 | [diff] [blame] | 481 | #if HAVE_LOCALTIME_R |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 482 | rc = localtime_r(t, pTm)==0; |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 483 | #else |
drh | a924aca | 2011-06-21 15:01:25 +0000 | [diff] [blame] | 484 | rc = localtime_s(pTm, t); |
| 485 | #endif /* HAVE_LOCALTIME_R */ |
| 486 | #endif /* HAVE_LOCALTIME_R || HAVE_LOCALTIME_S */ |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 487 | return rc; |
| 488 | } |
| 489 | #endif /* SQLITE_OMIT_LOCALTIME */ |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 490 | |
| 491 | |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 492 | #ifndef SQLITE_OMIT_LOCALTIME |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 493 | /* |
| 494 | ** Compute the difference (in milliseconds) between localtime and UTC |
| 495 | ** (a.k.a. GMT) for the time value p where p is in UTC. If no error occurs, |
| 496 | ** return this value and set *pRc to SQLITE_OK. |
| 497 | ** |
| 498 | ** Or, if an error does occur, set *pRc to SQLITE_ERROR. The returned value |
| 499 | ** is undefined in this case. |
| 500 | */ |
| 501 | static sqlite3_int64 localtimeOffset( |
| 502 | DateTime *p, /* Date at which to calculate offset */ |
| 503 | sqlite3_context *pCtx, /* Write error here if one occurs */ |
| 504 | int *pRc /* OUT: Error code. SQLITE_OK or ERROR */ |
| 505 | ){ |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 506 | DateTime x, y; |
| 507 | time_t t; |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 508 | struct tm sLocal; |
| 509 | |
dan | 0d37f58 | 2011-06-21 15:38:05 +0000 | [diff] [blame] | 510 | /* Initialize the contents of sLocal to avoid a compiler warning. */ |
| 511 | memset(&sLocal, 0, sizeof(sLocal)); |
| 512 | |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 513 | x = *p; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 514 | computeYMD_HMS(&x); |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 515 | if( x.Y<1971 || x.Y>=2038 ){ |
drh | e4bf4f0 | 2013-10-11 20:14:37 +0000 | [diff] [blame] | 516 | /* EVIDENCE-OF: R-55269-29598 The localtime_r() C function normally only |
| 517 | ** works for years between 1970 and 2037. For dates outside this range, |
| 518 | ** SQLite attempts to map the year into an equivalent year within this |
| 519 | ** range, do the calculation, then map the year back. |
| 520 | */ |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 521 | x.Y = 2000; |
| 522 | x.M = 1; |
| 523 | x.D = 1; |
| 524 | x.h = 0; |
| 525 | x.m = 0; |
| 526 | x.s = 0.0; |
| 527 | } else { |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 528 | int s = (int)(x.s + 0.5); |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 529 | x.s = s; |
| 530 | } |
| 531 | x.tz = 0; |
| 532 | x.validJD = 0; |
| 533 | computeJD(&x); |
shane | 11bb41f | 2009-09-10 20:23:30 +0000 | [diff] [blame] | 534 | t = (time_t)(x.iJD/1000 - 21086676*(i64)10000); |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 535 | if( osLocaltime(&t, &sLocal) ){ |
| 536 | sqlite3_result_error(pCtx, "local time unavailable", -1); |
| 537 | *pRc = SQLITE_ERROR; |
| 538 | return 0; |
drh | 8759576 | 2006-09-08 12:49:43 +0000 | [diff] [blame] | 539 | } |
drh | 8720aeb | 2011-06-21 14:35:30 +0000 | [diff] [blame] | 540 | y.Y = sLocal.tm_year + 1900; |
| 541 | y.M = sLocal.tm_mon + 1; |
| 542 | y.D = sLocal.tm_mday; |
| 543 | y.h = sLocal.tm_hour; |
| 544 | y.m = sLocal.tm_min; |
| 545 | y.s = sLocal.tm_sec; |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 546 | y.validYMD = 1; |
| 547 | y.validHMS = 1; |
| 548 | y.validJD = 0; |
| 549 | y.validTZ = 0; |
| 550 | computeJD(&y); |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 551 | *pRc = SQLITE_OK; |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 552 | return y.iJD - x.iJD; |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 553 | } |
drh | 66147c9 | 2008-06-12 12:51:37 +0000 | [diff] [blame] | 554 | #endif /* SQLITE_OMIT_LOCALTIME */ |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 555 | |
| 556 | /* |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 557 | ** Process a modifier to a date-time stamp. The modifiers are |
| 558 | ** as follows: |
| 559 | ** |
| 560 | ** NNN days |
| 561 | ** NNN hours |
| 562 | ** NNN minutes |
| 563 | ** NNN.NNNN seconds |
| 564 | ** NNN months |
| 565 | ** NNN years |
| 566 | ** start of month |
| 567 | ** start of year |
| 568 | ** start of week |
| 569 | ** start of day |
| 570 | ** weekday N |
| 571 | ** unixepoch |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 572 | ** localtime |
| 573 | ** utc |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 574 | ** |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 575 | ** Return 0 on success and 1 if there is any kind of error. If the error |
| 576 | ** is in a system call (i.e. localtime()), then an error message is written |
| 577 | ** to context pCtx. If the error is an unrecognized modifier, no error is |
| 578 | ** written to pCtx. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 579 | */ |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 580 | static int parseModifier(sqlite3_context *pCtx, const char *zMod, DateTime *p){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 581 | int rc = 1; |
| 582 | int n; |
| 583 | double r; |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 584 | char *z, zBuf[30]; |
| 585 | z = zBuf; |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 586 | for(n=0; n<ArraySize(zBuf)-1 && zMod[n]; n++){ |
drh | 1bd10f8 | 2008-12-10 21:19:56 +0000 | [diff] [blame] | 587 | z[n] = (char)sqlite3UpperToLower[(u8)zMod[n]]; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 588 | } |
| 589 | z[n] = 0; |
| 590 | switch( z[0] ){ |
drh | 66147c9 | 2008-06-12 12:51:37 +0000 | [diff] [blame] | 591 | #ifndef SQLITE_OMIT_LOCALTIME |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 592 | case 'l': { |
| 593 | /* localtime |
| 594 | ** |
| 595 | ** Assuming the current time value is UTC (a.k.a. GMT), shift it to |
| 596 | ** show local time. |
| 597 | */ |
| 598 | if( strcmp(z, "localtime")==0 ){ |
| 599 | computeJD(p); |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 600 | p->iJD += localtimeOffset(p, pCtx, &rc); |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 601 | clearYMD_HMS_TZ(p); |
drh | 7091cb0 | 2003-12-23 16:22:18 +0000 | [diff] [blame] | 602 | } |
| 603 | break; |
| 604 | } |
drh | 66147c9 | 2008-06-12 12:51:37 +0000 | [diff] [blame] | 605 | #endif |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 606 | case 'u': { |
| 607 | /* |
| 608 | ** unixepoch |
| 609 | ** |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 610 | ** Treat the current value of p->iJD as the number of |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 611 | ** seconds since 1970. Convert to a real julian day number. |
| 612 | */ |
| 613 | if( strcmp(z, "unixepoch")==0 && p->validJD ){ |
drh | 7fee360 | 2009-04-16 12:58:03 +0000 | [diff] [blame] | 614 | p->iJD = (p->iJD + 43200)/86400 + 21086676*(i64)10000000; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 615 | clearYMD_HMS_TZ(p); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 616 | rc = 0; |
drh | 66cccd9 | 2008-07-25 16:39:24 +0000 | [diff] [blame] | 617 | } |
| 618 | #ifndef SQLITE_OMIT_LOCALTIME |
| 619 | else if( strcmp(z, "utc")==0 ){ |
drh | caeca51 | 2015-12-23 10:54:48 +0000 | [diff] [blame] | 620 | if( p->tzSet==0 ){ |
| 621 | sqlite3_int64 c1; |
| 622 | computeJD(p); |
| 623 | c1 = localtimeOffset(p, pCtx, &rc); |
| 624 | if( rc==SQLITE_OK ){ |
| 625 | p->iJD -= c1; |
| 626 | clearYMD_HMS_TZ(p); |
| 627 | p->iJD += c1 - localtimeOffset(p, pCtx, &rc); |
| 628 | } |
| 629 | p->tzSet = 1; |
| 630 | }else{ |
| 631 | rc = SQLITE_OK; |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 632 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 633 | } |
drh | 66cccd9 | 2008-07-25 16:39:24 +0000 | [diff] [blame] | 634 | #endif |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 635 | break; |
| 636 | } |
| 637 | case 'w': { |
| 638 | /* |
| 639 | ** weekday N |
| 640 | ** |
drh | 181fc99 | 2004-08-17 10:42:54 +0000 | [diff] [blame] | 641 | ** Move the date to the same time on the next occurrence of |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 642 | ** weekday N where 0==Sunday, 1==Monday, and so forth. If the |
drh | c5dd9fa | 2004-01-07 03:29:16 +0000 | [diff] [blame] | 643 | ** date is already on the appropriate weekday, this is a no-op. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 644 | */ |
drh | 9339da1 | 2010-09-30 00:50:49 +0000 | [diff] [blame] | 645 | if( strncmp(z, "weekday ", 8)==0 |
| 646 | && sqlite3AtoF(&z[8], &r, sqlite3Strlen30(&z[8]), SQLITE_UTF8) |
| 647 | && (n=(int)r)==r && n>=0 && r<7 ){ |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 648 | sqlite3_int64 Z; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 649 | computeYMD_HMS(p); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 650 | p->validTZ = 0; |
| 651 | p->validJD = 0; |
| 652 | computeJD(p); |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 653 | Z = ((p->iJD + 129600000)/86400000) % 7; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 654 | if( Z>n ) Z -= 7; |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 655 | p->iJD += (n - Z)*86400000; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 656 | clearYMD_HMS_TZ(p); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 657 | rc = 0; |
| 658 | } |
| 659 | break; |
| 660 | } |
| 661 | case 's': { |
| 662 | /* |
| 663 | ** start of TTTTT |
| 664 | ** |
| 665 | ** Move the date backwards to the beginning of the current day, |
| 666 | ** or month or year. |
| 667 | */ |
| 668 | if( strncmp(z, "start of ", 9)!=0 ) break; |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 669 | z += 9; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 670 | computeYMD(p); |
| 671 | p->validHMS = 1; |
| 672 | p->h = p->m = 0; |
| 673 | p->s = 0.0; |
| 674 | p->validTZ = 0; |
| 675 | p->validJD = 0; |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 676 | if( strcmp(z,"month")==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 677 | p->D = 1; |
| 678 | rc = 0; |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 679 | }else if( strcmp(z,"year")==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 680 | computeYMD(p); |
| 681 | p->M = 1; |
| 682 | p->D = 1; |
| 683 | rc = 0; |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 684 | }else if( strcmp(z,"day")==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 685 | rc = 0; |
| 686 | } |
| 687 | break; |
| 688 | } |
| 689 | case '+': |
| 690 | case '-': |
| 691 | case '0': |
| 692 | case '1': |
| 693 | case '2': |
| 694 | case '3': |
| 695 | case '4': |
| 696 | case '5': |
| 697 | case '6': |
| 698 | case '7': |
| 699 | case '8': |
| 700 | case '9': { |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 701 | double rRounder; |
drh | 9339da1 | 2010-09-30 00:50:49 +0000 | [diff] [blame] | 702 | for(n=1; z[n] && z[n]!=':' && !sqlite3Isspace(z[n]); n++){} |
| 703 | if( !sqlite3AtoF(z, &r, n, SQLITE_UTF8) ){ |
| 704 | rc = 1; |
| 705 | break; |
| 706 | } |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 707 | if( z[n]==':' ){ |
| 708 | /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the |
| 709 | ** specified number of hours, minutes, seconds, and fractional seconds |
| 710 | ** to the time. The ".FFF" may be omitted. The ":SS.FFF" may be |
| 711 | ** omitted. |
| 712 | */ |
| 713 | const char *z2 = z; |
| 714 | DateTime tx; |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 715 | sqlite3_int64 day; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 716 | if( !sqlite3Isdigit(*z2) ) z2++; |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 717 | memset(&tx, 0, sizeof(tx)); |
| 718 | if( parseHhMmSs(z2, &tx) ) break; |
| 719 | computeJD(&tx); |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 720 | tx.iJD -= 43200000; |
| 721 | day = tx.iJD/86400000; |
| 722 | tx.iJD -= day*86400000; |
| 723 | if( z[0]=='-' ) tx.iJD = -tx.iJD; |
drh | 0d131ab | 2004-02-29 01:08:17 +0000 | [diff] [blame] | 724 | computeJD(p); |
| 725 | clearYMD_HMS_TZ(p); |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 726 | p->iJD += tx.iJD; |
drh | 33a9ad2 | 2004-02-29 00:40:32 +0000 | [diff] [blame] | 727 | rc = 0; |
| 728 | break; |
| 729 | } |
drh | 4d5b836 | 2004-01-17 01:16:21 +0000 | [diff] [blame] | 730 | z += n; |
danielk1977 | 78ca0e7 | 2009-01-20 16:53:39 +0000 | [diff] [blame] | 731 | while( sqlite3Isspace(*z) ) z++; |
drh | ea67883 | 2008-12-10 19:26:22 +0000 | [diff] [blame] | 732 | n = sqlite3Strlen30(z); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 733 | if( n>10 || n<3 ) break; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 734 | if( z[n-1]=='s' ){ z[n-1] = 0; n--; } |
| 735 | computeJD(p); |
| 736 | rc = 0; |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 737 | rRounder = r<0 ? -0.5 : +0.5; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 738 | if( n==3 && strcmp(z,"day")==0 ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 739 | p->iJD += (sqlite3_int64)(r*86400000.0 + rRounder); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 740 | }else if( n==4 && strcmp(z,"hour")==0 ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 741 | p->iJD += (sqlite3_int64)(r*(86400000.0/24.0) + rRounder); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 742 | }else if( n==6 && strcmp(z,"minute")==0 ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 743 | p->iJD += (sqlite3_int64)(r*(86400000.0/(24.0*60.0)) + rRounder); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 744 | }else if( n==6 && strcmp(z,"second")==0 ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 745 | p->iJD += (sqlite3_int64)(r*(86400000.0/(24.0*60.0*60.0)) + rRounder); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 746 | }else if( n==5 && strcmp(z,"month")==0 ){ |
| 747 | int x, y; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 748 | computeYMD_HMS(p); |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 749 | p->M += (int)r; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 750 | x = p->M>0 ? (p->M-1)/12 : (p->M-12)/12; |
| 751 | p->Y += x; |
| 752 | p->M -= x*12; |
| 753 | p->validJD = 0; |
| 754 | computeJD(p); |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 755 | y = (int)r; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 756 | if( y!=r ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 757 | p->iJD += (sqlite3_int64)((r - y)*30.0*86400000.0 + rRounder); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 758 | } |
| 759 | }else if( n==4 && strcmp(z,"year")==0 ){ |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 760 | int y = (int)r; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 761 | computeYMD_HMS(p); |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 762 | p->Y += y; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 763 | p->validJD = 0; |
| 764 | computeJD(p); |
drh | c531a22 | 2009-01-30 17:27:44 +0000 | [diff] [blame] | 765 | if( y!=r ){ |
| 766 | p->iJD += (sqlite3_int64)((r - y)*365.0*86400000.0 + rRounder); |
| 767 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 768 | }else{ |
| 769 | rc = 1; |
| 770 | } |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 771 | clearYMD_HMS_TZ(p); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 772 | break; |
| 773 | } |
| 774 | default: { |
| 775 | break; |
| 776 | } |
| 777 | } |
| 778 | return rc; |
| 779 | } |
| 780 | |
| 781 | /* |
| 782 | ** Process time function arguments. argv[0] is a date-time stamp. |
| 783 | ** argv[1] and following are modifiers. Parse them all and write |
| 784 | ** the resulting time into the DateTime structure p. Return 0 |
| 785 | ** on success and 1 if there are any errors. |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 786 | ** |
| 787 | ** If there are zero parameters (if even argv[0] is undefined) |
| 788 | ** then assume a default value of "now" for argv[0]. |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 789 | */ |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 790 | static int isDate( |
| 791 | sqlite3_context *context, |
| 792 | int argc, |
| 793 | sqlite3_value **argv, |
| 794 | DateTime *p |
| 795 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 796 | int i; |
drh | 7a521cf | 2007-04-25 18:23:52 +0000 | [diff] [blame] | 797 | const unsigned char *z; |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 798 | int eType; |
drh | 3af5d68 | 2008-06-12 13:50:00 +0000 | [diff] [blame] | 799 | memset(p, 0, sizeof(*p)); |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 800 | if( argc==0 ){ |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 801 | return setDateTimeToCurrent(context, p); |
| 802 | } |
| 803 | if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 804 | || eType==SQLITE_INTEGER ){ |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 805 | p->iJD = (sqlite3_int64)(sqlite3_value_double(argv[0])*86400000.0 + 0.5); |
drh | 3af5d68 | 2008-06-12 13:50:00 +0000 | [diff] [blame] | 806 | p->validJD = 1; |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 807 | }else{ |
| 808 | z = sqlite3_value_text(argv[0]); |
drh | 3af5d68 | 2008-06-12 13:50:00 +0000 | [diff] [blame] | 809 | if( !z || parseDateOrTime(context, (char*)z, p) ){ |
| 810 | return 1; |
| 811 | } |
drh | 7a521cf | 2007-04-25 18:23:52 +0000 | [diff] [blame] | 812 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 813 | for(i=1; i<argc; i++){ |
dan | c17d696 | 2011-06-21 12:47:30 +0000 | [diff] [blame] | 814 | z = sqlite3_value_text(argv[i]); |
| 815 | if( z==0 || parseModifier(context, (char*)z, p) ) return 1; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 816 | } |
| 817 | return 0; |
| 818 | } |
| 819 | |
| 820 | |
| 821 | /* |
| 822 | ** The following routines implement the various date and time functions |
| 823 | ** of SQLite. |
| 824 | */ |
| 825 | |
| 826 | /* |
| 827 | ** julianday( TIMESTRING, MOD, MOD, ...) |
| 828 | ** |
| 829 | ** Return the julian day number of the date specified in the arguments |
| 830 | */ |
drh | f9b596e | 2004-05-26 16:54:42 +0000 | [diff] [blame] | 831 | static void juliandayFunc( |
| 832 | sqlite3_context *context, |
| 833 | int argc, |
| 834 | sqlite3_value **argv |
| 835 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 836 | DateTime x; |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 837 | if( isDate(context, argc, argv, &x)==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 838 | computeJD(&x); |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 839 | sqlite3_result_double(context, x.iJD/86400000.0); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 840 | } |
| 841 | } |
| 842 | |
| 843 | /* |
| 844 | ** datetime( TIMESTRING, MOD, MOD, ...) |
| 845 | ** |
| 846 | ** Return YYYY-MM-DD HH:MM:SS |
| 847 | */ |
drh | f9b596e | 2004-05-26 16:54:42 +0000 | [diff] [blame] | 848 | static void datetimeFunc( |
| 849 | sqlite3_context *context, |
| 850 | int argc, |
| 851 | sqlite3_value **argv |
| 852 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 853 | DateTime x; |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 854 | if( isDate(context, argc, argv, &x)==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 855 | char zBuf[100]; |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 856 | computeYMD_HMS(&x); |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 857 | sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d %02d:%02d:%02d", |
| 858 | x.Y, x.M, x.D, x.h, x.m, (int)(x.s)); |
danielk1977 | d812336 | 2004-06-12 09:25:12 +0000 | [diff] [blame] | 859 | sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 860 | } |
| 861 | } |
| 862 | |
| 863 | /* |
| 864 | ** time( TIMESTRING, MOD, MOD, ...) |
| 865 | ** |
| 866 | ** Return HH:MM:SS |
| 867 | */ |
drh | f9b596e | 2004-05-26 16:54:42 +0000 | [diff] [blame] | 868 | static void timeFunc( |
| 869 | sqlite3_context *context, |
| 870 | int argc, |
| 871 | sqlite3_value **argv |
| 872 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 873 | DateTime x; |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 874 | if( isDate(context, argc, argv, &x)==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 875 | char zBuf[100]; |
| 876 | computeHMS(&x); |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 877 | sqlite3_snprintf(sizeof(zBuf), zBuf, "%02d:%02d:%02d", x.h, x.m, (int)x.s); |
danielk1977 | d812336 | 2004-06-12 09:25:12 +0000 | [diff] [blame] | 878 | sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 879 | } |
| 880 | } |
| 881 | |
| 882 | /* |
| 883 | ** date( TIMESTRING, MOD, MOD, ...) |
| 884 | ** |
| 885 | ** Return YYYY-MM-DD |
| 886 | */ |
drh | f9b596e | 2004-05-26 16:54:42 +0000 | [diff] [blame] | 887 | static void dateFunc( |
| 888 | sqlite3_context *context, |
| 889 | int argc, |
| 890 | sqlite3_value **argv |
| 891 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 892 | DateTime x; |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 893 | if( isDate(context, argc, argv, &x)==0 ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 894 | char zBuf[100]; |
| 895 | computeYMD(&x); |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 896 | sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d", x.Y, x.M, x.D); |
danielk1977 | d812336 | 2004-06-12 09:25:12 +0000 | [diff] [blame] | 897 | sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 898 | } |
| 899 | } |
| 900 | |
| 901 | /* |
| 902 | ** strftime( FORMAT, TIMESTRING, MOD, MOD, ...) |
| 903 | ** |
| 904 | ** Return a string described by FORMAT. Conversions as follows: |
| 905 | ** |
| 906 | ** %d day of month |
| 907 | ** %f ** fractional seconds SS.SSS |
| 908 | ** %H hour 00-24 |
| 909 | ** %j day of year 000-366 |
drh | 86a11b8 | 2014-11-07 13:24:29 +0000 | [diff] [blame] | 910 | ** %J ** julian day number |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 911 | ** %m month 01-12 |
| 912 | ** %M minute 00-59 |
| 913 | ** %s seconds since 1970-01-01 |
| 914 | ** %S seconds 00-59 |
| 915 | ** %w day of week 0-6 sunday==0 |
| 916 | ** %W week of year 00-53 |
| 917 | ** %Y year 0000-9999 |
| 918 | ** %% % |
| 919 | */ |
drh | f9b596e | 2004-05-26 16:54:42 +0000 | [diff] [blame] | 920 | static void strftimeFunc( |
| 921 | sqlite3_context *context, |
| 922 | int argc, |
| 923 | sqlite3_value **argv |
| 924 | ){ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 925 | DateTime x; |
drh | a0206bc | 2007-05-08 15:15:02 +0000 | [diff] [blame] | 926 | u64 n; |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 927 | size_t i,j; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 928 | char *z; |
drh | 633e6d5 | 2008-07-28 19:34:53 +0000 | [diff] [blame] | 929 | sqlite3 *db; |
drh | 655814d | 2015-01-09 01:27:29 +0000 | [diff] [blame] | 930 | const char *zFmt; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 931 | char zBuf[100]; |
drh | 655814d | 2015-01-09 01:27:29 +0000 | [diff] [blame] | 932 | if( argc==0 ) return; |
| 933 | zFmt = (const char*)sqlite3_value_text(argv[0]); |
danielk1977 | fee2d25 | 2007-08-18 10:59:19 +0000 | [diff] [blame] | 934 | if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return; |
drh | 633e6d5 | 2008-07-28 19:34:53 +0000 | [diff] [blame] | 935 | db = sqlite3_context_db_handle(context); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 936 | for(i=0, n=1; zFmt[i]; i++, n++){ |
| 937 | if( zFmt[i]=='%' ){ |
| 938 | switch( zFmt[i+1] ){ |
| 939 | case 'd': |
| 940 | case 'H': |
| 941 | case 'm': |
| 942 | case 'M': |
| 943 | case 'S': |
| 944 | case 'W': |
| 945 | n++; |
| 946 | /* fall thru */ |
| 947 | case 'w': |
| 948 | case '%': |
| 949 | break; |
| 950 | case 'f': |
| 951 | n += 8; |
| 952 | break; |
| 953 | case 'j': |
| 954 | n += 3; |
| 955 | break; |
| 956 | case 'Y': |
| 957 | n += 8; |
| 958 | break; |
| 959 | case 's': |
| 960 | case 'J': |
| 961 | n += 50; |
| 962 | break; |
| 963 | default: |
| 964 | return; /* ERROR. return a NULL */ |
| 965 | } |
| 966 | i++; |
| 967 | } |
| 968 | } |
drh | 6711002 | 2009-01-28 02:55:28 +0000 | [diff] [blame] | 969 | testcase( n==sizeof(zBuf)-1 ); |
| 970 | testcase( n==sizeof(zBuf) ); |
| 971 | testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH]+1 ); |
| 972 | testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 973 | if( n<sizeof(zBuf) ){ |
| 974 | z = zBuf; |
danielk1977 | 00e1361 | 2008-11-17 19:18:54 +0000 | [diff] [blame] | 975 | }else if( n>(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ){ |
drh | a0206bc | 2007-05-08 15:15:02 +0000 | [diff] [blame] | 976 | sqlite3_result_error_toobig(context); |
| 977 | return; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 978 | }else{ |
drh | 575fad6 | 2016-02-05 13:38:36 +0000 | [diff] [blame] | 979 | z = sqlite3DbMallocRawNN(db, (int)n); |
drh | 3334e94 | 2008-01-17 20:26:46 +0000 | [diff] [blame] | 980 | if( z==0 ){ |
| 981 | sqlite3_result_error_nomem(context); |
| 982 | return; |
| 983 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 984 | } |
| 985 | computeJD(&x); |
drh | ba21256 | 2004-01-08 02:17:31 +0000 | [diff] [blame] | 986 | computeYMD_HMS(&x); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 987 | for(i=j=0; zFmt[i]; i++){ |
| 988 | if( zFmt[i]!='%' ){ |
| 989 | z[j++] = zFmt[i]; |
| 990 | }else{ |
| 991 | i++; |
| 992 | switch( zFmt[i] ){ |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 993 | case 'd': sqlite3_snprintf(3, &z[j],"%02d",x.D); j+=2; break; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 994 | case 'f': { |
drh | b1f1e6e | 2006-09-25 18:01:31 +0000 | [diff] [blame] | 995 | double s = x.s; |
| 996 | if( s>59.999 ) s = 59.999; |
drh | 2ecad3b | 2007-03-29 17:57:21 +0000 | [diff] [blame] | 997 | sqlite3_snprintf(7, &z[j],"%06.3f", s); |
drh | ea67883 | 2008-12-10 19:26:22 +0000 | [diff] [blame] | 998 | j += sqlite3Strlen30(&z[j]); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 999 | break; |
| 1000 | } |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1001 | case 'H': sqlite3_snprintf(3, &z[j],"%02d",x.h); j+=2; break; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1002 | case 'W': /* Fall thru */ |
| 1003 | case 'j': { |
danielk1977 | f011300 | 2006-01-24 12:09:17 +0000 | [diff] [blame] | 1004 | int nDay; /* Number of days since 1st day of year */ |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1005 | DateTime y = x; |
| 1006 | y.validJD = 0; |
| 1007 | y.M = 1; |
| 1008 | y.D = 1; |
| 1009 | computeJD(&y); |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 1010 | nDay = (int)((x.iJD-y.iJD+43200000)/86400000); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1011 | if( zFmt[i]=='W' ){ |
drh | 1020d49 | 2004-07-18 22:22:43 +0000 | [diff] [blame] | 1012 | int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */ |
shane | aef3af5 | 2008-12-09 04:59:00 +0000 | [diff] [blame] | 1013 | wd = (int)(((x.iJD+43200000)/86400000)%7); |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1014 | sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1015 | j += 2; |
| 1016 | }else{ |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1017 | sqlite3_snprintf(4, &z[j],"%03d",nDay+1); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1018 | j += 3; |
| 1019 | } |
| 1020 | break; |
| 1021 | } |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1022 | case 'J': { |
drh | 85f477a | 2008-06-12 16:35:38 +0000 | [diff] [blame] | 1023 | sqlite3_snprintf(20, &z[j],"%.16g",x.iJD/86400000.0); |
drh | ea67883 | 2008-12-10 19:26:22 +0000 | [diff] [blame] | 1024 | j+=sqlite3Strlen30(&z[j]); |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1025 | break; |
| 1026 | } |
| 1027 | case 'm': sqlite3_snprintf(3, &z[j],"%02d",x.M); j+=2; break; |
| 1028 | case 'M': sqlite3_snprintf(3, &z[j],"%02d",x.m); j+=2; break; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1029 | case 's': { |
drh | 6eb4152 | 2009-04-01 20:44:13 +0000 | [diff] [blame] | 1030 | sqlite3_snprintf(30,&z[j],"%lld", |
drh | 0775896 | 2009-04-03 12:04:36 +0000 | [diff] [blame] | 1031 | (i64)(x.iJD/1000 - 21086676*(i64)10000)); |
drh | ea67883 | 2008-12-10 19:26:22 +0000 | [diff] [blame] | 1032 | j += sqlite3Strlen30(&z[j]); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1033 | break; |
| 1034 | } |
drh | 5bb3eb9 | 2007-05-04 13:15:55 +0000 | [diff] [blame] | 1035 | case 'S': sqlite3_snprintf(3,&z[j],"%02d",(int)x.s); j+=2; break; |
drh | ea67883 | 2008-12-10 19:26:22 +0000 | [diff] [blame] | 1036 | case 'w': { |
| 1037 | z[j++] = (char)(((x.iJD+129600000)/86400000) % 7) + '0'; |
| 1038 | break; |
| 1039 | } |
| 1040 | case 'Y': { |
| 1041 | sqlite3_snprintf(5,&z[j],"%04d",x.Y); j+=sqlite3Strlen30(&z[j]); |
| 1042 | break; |
| 1043 | } |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 1044 | default: z[j++] = '%'; break; |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1045 | } |
| 1046 | } |
| 1047 | } |
| 1048 | z[j] = 0; |
drh | 3334e94 | 2008-01-17 20:26:46 +0000 | [diff] [blame] | 1049 | sqlite3_result_text(context, z, -1, |
drh | 633e6d5 | 2008-07-28 19:34:53 +0000 | [diff] [blame] | 1050 | z==zBuf ? SQLITE_TRANSIENT : SQLITE_DYNAMIC); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1051 | } |
| 1052 | |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1053 | /* |
| 1054 | ** current_time() |
| 1055 | ** |
| 1056 | ** This function returns the same value as time('now'). |
| 1057 | */ |
| 1058 | static void ctimeFunc( |
| 1059 | sqlite3_context *context, |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1060 | int NotUsed, |
| 1061 | sqlite3_value **NotUsed2 |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1062 | ){ |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1063 | UNUSED_PARAMETER2(NotUsed, NotUsed2); |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 1064 | timeFunc(context, 0, 0); |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1065 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1066 | |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1067 | /* |
| 1068 | ** current_date() |
| 1069 | ** |
| 1070 | ** This function returns the same value as date('now'). |
| 1071 | */ |
| 1072 | static void cdateFunc( |
| 1073 | sqlite3_context *context, |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1074 | int NotUsed, |
| 1075 | sqlite3_value **NotUsed2 |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1076 | ){ |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1077 | UNUSED_PARAMETER2(NotUsed, NotUsed2); |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 1078 | dateFunc(context, 0, 0); |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1079 | } |
| 1080 | |
| 1081 | /* |
| 1082 | ** current_timestamp() |
| 1083 | ** |
| 1084 | ** This function returns the same value as datetime('now'). |
| 1085 | */ |
| 1086 | static void ctimestampFunc( |
| 1087 | sqlite3_context *context, |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1088 | int NotUsed, |
| 1089 | sqlite3_value **NotUsed2 |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1090 | ){ |
danielk1977 | 62c14b3 | 2008-11-19 09:05:26 +0000 | [diff] [blame] | 1091 | UNUSED_PARAMETER2(NotUsed, NotUsed2); |
drh | 008e476 | 2008-01-17 22:27:53 +0000 | [diff] [blame] | 1092 | datetimeFunc(context, 0, 0); |
danielk1977 | 7977a17 | 2004-11-09 12:44:37 +0000 | [diff] [blame] | 1093 | } |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1094 | #endif /* !defined(SQLITE_OMIT_DATETIME_FUNCS) */ |
| 1095 | |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1096 | #ifdef SQLITE_OMIT_DATETIME_FUNCS |
| 1097 | /* |
| 1098 | ** If the library is compiled to omit the full-scale date and time |
| 1099 | ** handling (to get a smaller binary), the following minimal version |
| 1100 | ** of the functions current_time(), current_date() and current_timestamp() |
| 1101 | ** are included instead. This is to support column declarations that |
| 1102 | ** include "DEFAULT CURRENT_TIME" etc. |
| 1103 | ** |
danielk1977 | 2df9fab | 2004-11-11 01:50:30 +0000 | [diff] [blame] | 1104 | ** This function uses the C-library functions time(), gmtime() |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1105 | ** and strftime(). The format string to pass to strftime() is supplied |
| 1106 | ** as the user-data for the function. |
| 1107 | */ |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1108 | static void currentTimeFunc( |
| 1109 | sqlite3_context *context, |
| 1110 | int argc, |
| 1111 | sqlite3_value **argv |
| 1112 | ){ |
| 1113 | time_t t; |
| 1114 | char *zFormat = (char *)sqlite3_user_data(context); |
drh | fa4a4b9 | 2008-03-19 21:45:51 +0000 | [diff] [blame] | 1115 | sqlite3 *db; |
drh | b7e8ea2 | 2010-05-03 14:32:30 +0000 | [diff] [blame] | 1116 | sqlite3_int64 iT; |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 1117 | struct tm *pTm; |
| 1118 | struct tm sNow; |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1119 | char zBuf[20]; |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1120 | |
shane | fbd60f8 | 2009-02-04 03:59:25 +0000 | [diff] [blame] | 1121 | UNUSED_PARAMETER(argc); |
| 1122 | UNUSED_PARAMETER(argv); |
| 1123 | |
drh | 95a7b3e | 2013-09-16 12:57:19 +0000 | [diff] [blame] | 1124 | iT = sqlite3StmtCurrentTime(context); |
| 1125 | if( iT<=0 ) return; |
drh | d5e6e40 | 2010-05-03 19:17:01 +0000 | [diff] [blame] | 1126 | t = iT/1000 - 10000*(sqlite3_int64)21086676; |
drh | 0ede9eb | 2015-01-10 16:49:23 +0000 | [diff] [blame] | 1127 | #if HAVE_GMTIME_R |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 1128 | pTm = gmtime_r(&t, &sNow); |
drh | 8759576 | 2006-09-08 12:49:43 +0000 | [diff] [blame] | 1129 | #else |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 1130 | sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); |
| 1131 | pTm = gmtime(&t); |
| 1132 | if( pTm ) memcpy(&sNow, pTm, sizeof(sNow)); |
| 1133 | sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER)); |
drh | 8759576 | 2006-09-08 12:49:43 +0000 | [diff] [blame] | 1134 | #endif |
drh | 3170225 | 2011-10-12 23:13:43 +0000 | [diff] [blame] | 1135 | if( pTm ){ |
| 1136 | strftime(zBuf, 20, zFormat, &sNow); |
| 1137 | sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT); |
| 1138 | } |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1139 | } |
| 1140 | #endif |
| 1141 | |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1142 | /* |
| 1143 | ** This function registered all of the above C functions as SQL |
| 1144 | ** functions. This should be the only routine in this file with |
| 1145 | ** external linkage. |
| 1146 | */ |
drh | 777c538 | 2008-08-21 20:21:34 +0000 | [diff] [blame] | 1147 | void sqlite3RegisterDateTimeFunctions(void){ |
drh | 80738d9 | 2016-02-15 00:34:16 +0000 | [diff] [blame] | 1148 | static FuncDef aDateTimeFuncs[] = { |
drh | fd1f394 | 2004-07-20 00:39:14 +0000 | [diff] [blame] | 1149 | #ifndef SQLITE_OMIT_DATETIME_FUNCS |
drh | 1d85e40 | 2015-08-31 17:34:41 +0000 | [diff] [blame] | 1150 | DFUNCTION(julianday, -1, 0, 0, juliandayFunc ), |
| 1151 | DFUNCTION(date, -1, 0, 0, dateFunc ), |
| 1152 | DFUNCTION(time, -1, 0, 0, timeFunc ), |
| 1153 | DFUNCTION(datetime, -1, 0, 0, datetimeFunc ), |
| 1154 | DFUNCTION(strftime, -1, 0, 0, strftimeFunc ), |
| 1155 | DFUNCTION(current_time, 0, 0, 0, ctimeFunc ), |
| 1156 | DFUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc), |
| 1157 | DFUNCTION(current_date, 0, 0, 0, cdateFunc ), |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1158 | #else |
drh | 21717ed | 2008-10-13 15:35:08 +0000 | [diff] [blame] | 1159 | STR_FUNCTION(current_time, 0, "%H:%M:%S", 0, currentTimeFunc), |
drh | 2b1e690 | 2010-01-12 19:28:20 +0000 | [diff] [blame] | 1160 | STR_FUNCTION(current_date, 0, "%Y-%m-%d", 0, currentTimeFunc), |
| 1161 | STR_FUNCTION(current_timestamp, 0, "%Y-%m-%d %H:%M:%S", 0, currentTimeFunc), |
drh | 777c538 | 2008-08-21 20:21:34 +0000 | [diff] [blame] | 1162 | #endif |
danielk1977 | 752e679 | 2004-11-09 16:13:33 +0000 | [diff] [blame] | 1163 | }; |
drh | 80738d9 | 2016-02-15 00:34:16 +0000 | [diff] [blame] | 1164 | sqlite3InsertBuiltinFuncs(aDateTimeFuncs, ArraySize(aDateTimeFuncs)); |
drh | 7014aff | 2003-11-01 01:53:53 +0000 | [diff] [blame] | 1165 | } |