blob: 758dd7c89bca3937a90d706ea982ce3acf11d183 [file] [log] [blame]
drh7014aff2003-11-01 01:53:53 +00001/*
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
danielk19774adee202004-05-08 08:23:19 +000016** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
drh7014aff2003-11-01 01:53:53 +000017** All other code has file scope.
18**
drh7014aff2003-11-01 01:53:53 +000019** SQLite processes all times and dates as Julian Day numbers. The
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
drh7f986a62006-09-25 18:05:04 +000022** calendar system.
drh7014aff2003-11-01 01:53:53 +000023**
24** 1970-01-01 00:00:00 is JD 2440587.5
25** 2000-01-01 00:00:00 is JD 2451544.5
26**
27** This implemention requires years to be expressed as a 4-digit number
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
34** use the Julian calendar for dates prior to 1582-10-15 and for some
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*/
dougcurrieae534182003-12-24 01:41:19 +000046#include "sqliteInt.h"
drh7014aff2003-11-01 01:53:53 +000047#include <stdlib.h>
48#include <assert.h>
drh7091cb02003-12-23 16:22:18 +000049#include <time.h>
drh7014aff2003-11-01 01:53:53 +000050
drh4bc05852004-02-10 13:19:35 +000051#ifndef SQLITE_OMIT_DATETIME_FUNCS
52
shaneb8109ad2008-05-27 19:49:21 +000053
54/*
drh7014aff2003-11-01 01:53:53 +000055** A structure for holding a single date and time.
56*/
57typedef struct DateTime DateTime;
58struct DateTime {
drh85f477a2008-06-12 16:35:38 +000059 sqlite3_int64 iJD; /* The julian day number times 86400000 */
60 int Y, M, D; /* Year, month, and day */
61 int h, m; /* Hour and minutes */
62 int tz; /* Timezone offset in minutes */
63 double s; /* Seconds */
shaneaef3af52008-12-09 04:59:00 +000064 char validYMD; /* True (1) if Y,M,D are valid */
65 char validHMS; /* True (1) if h,m,s are valid */
66 char validJD; /* True (1) if iJD is valid */
67 char validTZ; /* True (1) if tz is valid */
drh7014aff2003-11-01 01:53:53 +000068};
69
70
71/*
drheb9a9e82004-02-22 17:49:32 +000072** Convert zDate into one or more integers. Additional arguments
73** come in groups of 5 as follows:
74**
75** N number of digits in the integer
76** min minimum allowed value of the integer
77** max maximum allowed value of the integer
78** nextC first character after the integer
79** pVal where to write the integers value.
80**
81** Conversions continue until one with nextC==0 is encountered.
82** The function returns the number of successful conversions.
drh7014aff2003-11-01 01:53:53 +000083*/
drheb9a9e82004-02-22 17:49:32 +000084static int getDigits(const char *zDate, ...){
85 va_list ap;
86 int val;
87 int N;
88 int min;
89 int max;
90 int nextC;
91 int *pVal;
92 int cnt = 0;
93 va_start(ap, zDate);
94 do{
95 N = va_arg(ap, int);
96 min = va_arg(ap, int);
97 max = va_arg(ap, int);
98 nextC = va_arg(ap, int);
99 pVal = va_arg(ap, int*);
100 val = 0;
101 while( N-- ){
danielk197778ca0e72009-01-20 16:53:39 +0000102 if( !sqlite3Isdigit(*zDate) ){
drh029b44b2006-01-15 00:13:15 +0000103 goto end_getDigits;
drheb9a9e82004-02-22 17:49:32 +0000104 }
105 val = val*10 + *zDate - '0';
106 zDate++;
107 }
108 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
drh029b44b2006-01-15 00:13:15 +0000109 goto end_getDigits;
drheb9a9e82004-02-22 17:49:32 +0000110 }
111 *pVal = val;
drh7014aff2003-11-01 01:53:53 +0000112 zDate++;
drheb9a9e82004-02-22 17:49:32 +0000113 cnt++;
114 }while( nextC );
drh029b44b2006-01-15 00:13:15 +0000115end_getDigits:
drh15b9a152006-01-31 20:49:13 +0000116 va_end(ap);
drheb9a9e82004-02-22 17:49:32 +0000117 return cnt;
drh7014aff2003-11-01 01:53:53 +0000118}
119
120/*
drh7014aff2003-11-01 01:53:53 +0000121** Parse a timezone extension on the end of a date-time.
122** The extension is of the form:
123**
124** (+/-)HH:MM
125**
drh1cfdc902008-02-21 20:40:43 +0000126** Or the "zulu" notation:
127**
128** Z
129**
drh7014aff2003-11-01 01:53:53 +0000130** If the parse is successful, write the number of minutes
drh1cfdc902008-02-21 20:40:43 +0000131** of change in p->tz and return 0. If a parser error occurs,
132** return non-zero.
drh7014aff2003-11-01 01:53:53 +0000133**
134** A missing specifier is not considered an error.
135*/
136static int parseTimezone(const char *zDate, DateTime *p){
137 int sgn = 0;
138 int nHr, nMn;
drh1cfdc902008-02-21 20:40:43 +0000139 int c;
danielk197778ca0e72009-01-20 16:53:39 +0000140 while( sqlite3Isspace(*zDate) ){ zDate++; }
drh7014aff2003-11-01 01:53:53 +0000141 p->tz = 0;
drh1cfdc902008-02-21 20:40:43 +0000142 c = *zDate;
143 if( c=='-' ){
drh7014aff2003-11-01 01:53:53 +0000144 sgn = -1;
drh1cfdc902008-02-21 20:40:43 +0000145 }else if( c=='+' ){
drh7014aff2003-11-01 01:53:53 +0000146 sgn = +1;
drh1cfdc902008-02-21 20:40:43 +0000147 }else if( c=='Z' || c=='z' ){
148 zDate++;
149 goto zulu_time;
drh7014aff2003-11-01 01:53:53 +0000150 }else{
drh1cfdc902008-02-21 20:40:43 +0000151 return c!=0;
drh7014aff2003-11-01 01:53:53 +0000152 }
153 zDate++;
drheb9a9e82004-02-22 17:49:32 +0000154 if( getDigits(zDate, 2, 0, 14, ':', &nHr, 2, 0, 59, 0, &nMn)!=2 ){
155 return 1;
156 }
157 zDate += 5;
drh7014aff2003-11-01 01:53:53 +0000158 p->tz = sgn*(nMn + nHr*60);
drh1cfdc902008-02-21 20:40:43 +0000159zulu_time:
danielk197778ca0e72009-01-20 16:53:39 +0000160 while( sqlite3Isspace(*zDate) ){ zDate++; }
drh7014aff2003-11-01 01:53:53 +0000161 return *zDate!=0;
162}
163
164/*
165** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF.
166** The HH, MM, and SS must each be exactly 2 digits. The
167** fractional seconds FFFF can be one or more digits.
168**
169** Return 1 if there is a parsing error and 0 on success.
170*/
171static int parseHhMmSs(const char *zDate, DateTime *p){
172 int h, m, s;
173 double ms = 0.0;
drheb9a9e82004-02-22 17:49:32 +0000174 if( getDigits(zDate, 2, 0, 24, ':', &h, 2, 0, 59, 0, &m)!=2 ){
175 return 1;
176 }
177 zDate += 5;
drh7014aff2003-11-01 01:53:53 +0000178 if( *zDate==':' ){
drheb9a9e82004-02-22 17:49:32 +0000179 zDate++;
180 if( getDigits(zDate, 2, 0, 59, 0, &s)!=1 ){
181 return 1;
182 }
183 zDate += 2;
danielk197778ca0e72009-01-20 16:53:39 +0000184 if( *zDate=='.' && sqlite3Isdigit(zDate[1]) ){
drh7014aff2003-11-01 01:53:53 +0000185 double rScale = 1.0;
186 zDate++;
danielk197778ca0e72009-01-20 16:53:39 +0000187 while( sqlite3Isdigit(*zDate) ){
drh7014aff2003-11-01 01:53:53 +0000188 ms = ms*10.0 + *zDate - '0';
189 rScale *= 10.0;
190 zDate++;
191 }
192 ms /= rScale;
193 }
194 }else{
195 s = 0;
196 }
197 p->validJD = 0;
198 p->validHMS = 1;
199 p->h = h;
200 p->m = m;
201 p->s = s + ms;
202 if( parseTimezone(zDate, p) ) return 1;
shaneaef3af52008-12-09 04:59:00 +0000203 p->validTZ = (p->tz!=0)?1:0;
drh7014aff2003-11-01 01:53:53 +0000204 return 0;
205}
206
207/*
208** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume
209** that the YYYY-MM-DD is according to the Gregorian calendar.
210**
211** Reference: Meeus page 61
212*/
213static void computeJD(DateTime *p){
214 int Y, M, D, A, B, X1, X2;
215
216 if( p->validJD ) return;
217 if( p->validYMD ){
218 Y = p->Y;
219 M = p->M;
220 D = p->D;
221 }else{
drhba212562004-01-08 02:17:31 +0000222 Y = 2000; /* If no YMD specified, assume 2000-Jan-01 */
drh7014aff2003-11-01 01:53:53 +0000223 M = 1;
224 D = 1;
225 }
226 if( M<=2 ){
227 Y--;
228 M += 12;
229 }
230 A = Y/100;
231 B = 2 - A + (A/4);
shaneaef3af52008-12-09 04:59:00 +0000232 X1 = 36525*(Y+4716)/100;
233 X2 = 306001*(M+1)/10000;
234 p->iJD = (sqlite3_int64)((X1 + X2 + D + B - 1524.5 ) * 86400000);
drh7014aff2003-11-01 01:53:53 +0000235 p->validJD = 1;
drh7014aff2003-11-01 01:53:53 +0000236 if( p->validHMS ){
shaneaef3af52008-12-09 04:59:00 +0000237 p->iJD += p->h*3600000 + p->m*60000 + (sqlite3_int64)(p->s*1000);
drh7014aff2003-11-01 01:53:53 +0000238 if( p->validTZ ){
drh85f477a2008-06-12 16:35:38 +0000239 p->iJD -= p->tz*60000;
drhf11c34d2006-09-08 12:27:36 +0000240 p->validYMD = 0;
drh7014aff2003-11-01 01:53:53 +0000241 p->validHMS = 0;
242 p->validTZ = 0;
243 }
244 }
245}
246
247/*
248** Parse dates of the form
249**
250** YYYY-MM-DD HH:MM:SS.FFF
251** YYYY-MM-DD HH:MM:SS
252** YYYY-MM-DD HH:MM
253** YYYY-MM-DD
254**
255** Write the result into the DateTime structure and return 0
256** on success and 1 if the input string is not a well-formed
257** date.
258*/
259static int parseYyyyMmDd(const char *zDate, DateTime *p){
drh8eb2cce2004-02-21 03:28:18 +0000260 int Y, M, D, neg;
drh7014aff2003-11-01 01:53:53 +0000261
drh8eb2cce2004-02-21 03:28:18 +0000262 if( zDate[0]=='-' ){
263 zDate++;
264 neg = 1;
265 }else{
266 neg = 0;
267 }
drheb9a9e82004-02-22 17:49:32 +0000268 if( getDigits(zDate,4,0,9999,'-',&Y,2,1,12,'-',&M,2,1,31,0,&D)!=3 ){
269 return 1;
270 }
271 zDate += 10;
danielk197778ca0e72009-01-20 16:53:39 +0000272 while( sqlite3Isspace(*zDate) || 'T'==*(u8*)zDate ){ zDate++; }
drheb9a9e82004-02-22 17:49:32 +0000273 if( parseHhMmSs(zDate, p)==0 ){
274 /* We got the time */
drh7014aff2003-11-01 01:53:53 +0000275 }else if( *zDate==0 ){
276 p->validHMS = 0;
277 }else{
278 return 1;
279 }
280 p->validJD = 0;
281 p->validYMD = 1;
drh8eb2cce2004-02-21 03:28:18 +0000282 p->Y = neg ? -Y : Y;
drh7014aff2003-11-01 01:53:53 +0000283 p->M = M;
284 p->D = D;
285 if( p->validTZ ){
286 computeJD(p);
287 }
288 return 0;
289}
290
291/*
drh31702252011-10-12 23:13:43 +0000292** Set the time to the current time reported by the VFS.
293**
294** Return the number of errors.
drh3af5d682008-06-12 13:50:00 +0000295*/
drh31702252011-10-12 23:13:43 +0000296static int setDateTimeToCurrent(sqlite3_context *context, DateTime *p){
drh3af5d682008-06-12 13:50:00 +0000297 sqlite3 *db = sqlite3_context_db_handle(context);
drh31702252011-10-12 23:13:43 +0000298 if( sqlite3OsCurrentTimeInt64(db->pVfs, &p->iJD)==SQLITE_OK ){
299 p->validJD = 1;
300 return 0;
301 }else{
302 return 1;
303 }
drh3af5d682008-06-12 13:50:00 +0000304}
305
306/*
drh7014aff2003-11-01 01:53:53 +0000307** Attempt to parse the given string into a Julian Day Number. Return
308** the number of errors.
309**
310** The following are acceptable forms for the input string:
311**
312** YYYY-MM-DD HH:MM:SS.FFF +/-HH:MM
313** DDDD.DD
314** now
315**
316** In the first form, the +/-HH:MM is always optional. The fractional
317** seconds extension (the ".FFF") is optional. The seconds portion
318** (":SS.FFF") is option. The year and date can be omitted as long
319** as there is a time string. The time string can be omitted as long
320** as there is a year and date.
321*/
danielk1977fee2d252007-08-18 10:59:19 +0000322static int parseDateOrTime(
323 sqlite3_context *context,
324 const char *zDate,
325 DateTime *p
326){
drh9339da12010-09-30 00:50:49 +0000327 double r;
drh8eb2cce2004-02-21 03:28:18 +0000328 if( parseYyyyMmDd(zDate,p)==0 ){
drh7014aff2003-11-01 01:53:53 +0000329 return 0;
drh8eb2cce2004-02-21 03:28:18 +0000330 }else if( parseHhMmSs(zDate, p)==0 ){
331 return 0;
danielk19774adee202004-05-08 08:23:19 +0000332 }else if( sqlite3StrICmp(zDate,"now")==0){
drh31702252011-10-12 23:13:43 +0000333 return setDateTimeToCurrent(context, p);
drh9339da12010-09-30 00:50:49 +0000334 }else if( sqlite3AtoF(zDate, &r, sqlite3Strlen30(zDate), SQLITE_UTF8) ){
drh85f477a2008-06-12 16:35:38 +0000335 p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5);
drh7014aff2003-11-01 01:53:53 +0000336 p->validJD = 1;
337 return 0;
338 }
339 return 1;
340}
341
342/*
343** Compute the Year, Month, and Day from the julian day number.
344*/
345static void computeYMD(DateTime *p){
346 int Z, A, B, C, D, E, X1;
347 if( p->validYMD ) return;
drh33a9ad22004-02-29 00:40:32 +0000348 if( !p->validJD ){
349 p->Y = 2000;
350 p->M = 1;
351 p->D = 1;
352 }else{
shaneaef3af52008-12-09 04:59:00 +0000353 Z = (int)((p->iJD + 43200000)/86400000);
354 A = (int)((Z - 1867216.25)/36524.25);
drh33a9ad22004-02-29 00:40:32 +0000355 A = Z + 1 + A - (A/4);
356 B = A + 1524;
shaneaef3af52008-12-09 04:59:00 +0000357 C = (int)((B - 122.1)/365.25);
358 D = (36525*C)/100;
359 E = (int)((B-D)/30.6001);
360 X1 = (int)(30.6001*E);
drh33a9ad22004-02-29 00:40:32 +0000361 p->D = B - D - X1;
362 p->M = E<14 ? E-1 : E-13;
363 p->Y = p->M>2 ? C - 4716 : C - 4715;
364 }
drh7014aff2003-11-01 01:53:53 +0000365 p->validYMD = 1;
366}
367
368/*
369** Compute the Hour, Minute, and Seconds from the julian day number.
370*/
371static void computeHMS(DateTime *p){
drh85f477a2008-06-12 16:35:38 +0000372 int s;
drh7014aff2003-11-01 01:53:53 +0000373 if( p->validHMS ) return;
drhf11c34d2006-09-08 12:27:36 +0000374 computeJD(p);
shaneaef3af52008-12-09 04:59:00 +0000375 s = (int)((p->iJD + 43200000) % 86400000);
drh85f477a2008-06-12 16:35:38 +0000376 p->s = s/1000.0;
shaneaef3af52008-12-09 04:59:00 +0000377 s = (int)p->s;
drh7014aff2003-11-01 01:53:53 +0000378 p->s -= s;
379 p->h = s/3600;
380 s -= p->h*3600;
381 p->m = s/60;
382 p->s += s - p->m*60;
383 p->validHMS = 1;
384}
385
386/*
drhba212562004-01-08 02:17:31 +0000387** Compute both YMD and HMS
388*/
389static void computeYMD_HMS(DateTime *p){
390 computeYMD(p);
391 computeHMS(p);
392}
393
394/*
395** Clear the YMD and HMS and the TZ
396*/
397static void clearYMD_HMS_TZ(DateTime *p){
398 p->validYMD = 0;
399 p->validHMS = 0;
400 p->validTZ = 0;
401}
402
drha924aca2011-06-21 15:01:25 +0000403/*
404** On recent Windows platforms, the localtime_s() function is available
405** as part of the "Secure CRT". It is essentially equivalent to
406** localtime_r() available under most POSIX platforms, except that the
407** order of the parameters is reversed.
408**
409** See http://msdn.microsoft.com/en-us/library/a442x3ye(VS.80).aspx.
410**
411** If the user has not indicated to use localtime_r() or localtime_s()
412** already, check for an MSVC build environment that provides
413** localtime_s().
414*/
415#if !defined(HAVE_LOCALTIME_R) && !defined(HAVE_LOCALTIME_S) && \
416 defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE)
417#define HAVE_LOCALTIME_S 1
418#endif
419
drh66147c92008-06-12 12:51:37 +0000420#ifndef SQLITE_OMIT_LOCALTIME
drhba212562004-01-08 02:17:31 +0000421/*
drh8720aeb2011-06-21 14:35:30 +0000422** The following routine implements the rough equivalent of localtime_r()
423** using whatever operating-system specific localtime facility that
424** is available. This routine returns 0 on success and
425** non-zero on any kind of error.
danc17d6962011-06-21 12:47:30 +0000426**
drh8720aeb2011-06-21 14:35:30 +0000427** If the sqlite3GlobalConfig.bLocaltimeFault variable is true then this
428** routine will always fail.
drh7091cb02003-12-23 16:22:18 +0000429*/
drh1f93a082011-06-21 15:54:24 +0000430static int osLocaltime(time_t *t, struct tm *pTm){
drh8720aeb2011-06-21 14:35:30 +0000431 int rc;
drha924aca2011-06-21 15:01:25 +0000432#if (!defined(HAVE_LOCALTIME_R) || !HAVE_LOCALTIME_R) \
433 && (!defined(HAVE_LOCALTIME_S) || !HAVE_LOCALTIME_S)
434 struct tm *pX;
drhdf3aa162011-06-24 11:29:51 +0000435#if SQLITE_THREADSAFE>0
drha924aca2011-06-21 15:01:25 +0000436 sqlite3_mutex *mutex = sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER);
drhdf3aa162011-06-24 11:29:51 +0000437#endif
drha924aca2011-06-21 15:01:25 +0000438 sqlite3_mutex_enter(mutex);
439 pX = localtime(t);
440#ifndef SQLITE_OMIT_BUILTIN_TEST
441 if( sqlite3GlobalConfig.bLocaltimeFault ) pX = 0;
442#endif
443 if( pX ) *pTm = *pX;
444 sqlite3_mutex_leave(mutex);
445 rc = pX==0;
446#else
danc17d6962011-06-21 12:47:30 +0000447#ifndef SQLITE_OMIT_BUILTIN_TEST
danc17d6962011-06-21 12:47:30 +0000448 if( sqlite3GlobalConfig.bLocaltimeFault ) return 1;
danc17d6962011-06-21 12:47:30 +0000449#endif
drha924aca2011-06-21 15:01:25 +0000450#if defined(HAVE_LOCALTIME_R) && HAVE_LOCALTIME_R
drh8720aeb2011-06-21 14:35:30 +0000451 rc = localtime_r(t, pTm)==0;
danc17d6962011-06-21 12:47:30 +0000452#else
drha924aca2011-06-21 15:01:25 +0000453 rc = localtime_s(pTm, t);
454#endif /* HAVE_LOCALTIME_R */
455#endif /* HAVE_LOCALTIME_R || HAVE_LOCALTIME_S */
drh8720aeb2011-06-21 14:35:30 +0000456 return rc;
457}
458#endif /* SQLITE_OMIT_LOCALTIME */
danc17d6962011-06-21 12:47:30 +0000459
460
drh8720aeb2011-06-21 14:35:30 +0000461#ifndef SQLITE_OMIT_LOCALTIME
danc17d6962011-06-21 12:47:30 +0000462/*
463** Compute the difference (in milliseconds) between localtime and UTC
464** (a.k.a. GMT) for the time value p where p is in UTC. If no error occurs,
465** return this value and set *pRc to SQLITE_OK.
466**
467** Or, if an error does occur, set *pRc to SQLITE_ERROR. The returned value
468** is undefined in this case.
469*/
470static sqlite3_int64 localtimeOffset(
471 DateTime *p, /* Date at which to calculate offset */
472 sqlite3_context *pCtx, /* Write error here if one occurs */
473 int *pRc /* OUT: Error code. SQLITE_OK or ERROR */
474){
drh7091cb02003-12-23 16:22:18 +0000475 DateTime x, y;
476 time_t t;
drh8720aeb2011-06-21 14:35:30 +0000477 struct tm sLocal;
478
dan0d37f582011-06-21 15:38:05 +0000479 /* Initialize the contents of sLocal to avoid a compiler warning. */
480 memset(&sLocal, 0, sizeof(sLocal));
481
drh7091cb02003-12-23 16:22:18 +0000482 x = *p;
drhba212562004-01-08 02:17:31 +0000483 computeYMD_HMS(&x);
drh7091cb02003-12-23 16:22:18 +0000484 if( x.Y<1971 || x.Y>=2038 ){
485 x.Y = 2000;
486 x.M = 1;
487 x.D = 1;
488 x.h = 0;
489 x.m = 0;
490 x.s = 0.0;
491 } else {
shaneaef3af52008-12-09 04:59:00 +0000492 int s = (int)(x.s + 0.5);
drh7091cb02003-12-23 16:22:18 +0000493 x.s = s;
494 }
495 x.tz = 0;
496 x.validJD = 0;
497 computeJD(&x);
shane11bb41f2009-09-10 20:23:30 +0000498 t = (time_t)(x.iJD/1000 - 21086676*(i64)10000);
drh8720aeb2011-06-21 14:35:30 +0000499 if( osLocaltime(&t, &sLocal) ){
500 sqlite3_result_error(pCtx, "local time unavailable", -1);
501 *pRc = SQLITE_ERROR;
502 return 0;
drh87595762006-09-08 12:49:43 +0000503 }
drh8720aeb2011-06-21 14:35:30 +0000504 y.Y = sLocal.tm_year + 1900;
505 y.M = sLocal.tm_mon + 1;
506 y.D = sLocal.tm_mday;
507 y.h = sLocal.tm_hour;
508 y.m = sLocal.tm_min;
509 y.s = sLocal.tm_sec;
drh7091cb02003-12-23 16:22:18 +0000510 y.validYMD = 1;
511 y.validHMS = 1;
512 y.validJD = 0;
513 y.validTZ = 0;
514 computeJD(&y);
danc17d6962011-06-21 12:47:30 +0000515 *pRc = SQLITE_OK;
drh85f477a2008-06-12 16:35:38 +0000516 return y.iJD - x.iJD;
drh7091cb02003-12-23 16:22:18 +0000517}
drh66147c92008-06-12 12:51:37 +0000518#endif /* SQLITE_OMIT_LOCALTIME */
drh7091cb02003-12-23 16:22:18 +0000519
520/*
drh7014aff2003-11-01 01:53:53 +0000521** Process a modifier to a date-time stamp. The modifiers are
522** as follows:
523**
524** NNN days
525** NNN hours
526** NNN minutes
527** NNN.NNNN seconds
528** NNN months
529** NNN years
530** start of month
531** start of year
532** start of week
533** start of day
534** weekday N
535** unixepoch
drh7091cb02003-12-23 16:22:18 +0000536** localtime
537** utc
drh7014aff2003-11-01 01:53:53 +0000538**
danc17d6962011-06-21 12:47:30 +0000539** Return 0 on success and 1 if there is any kind of error. If the error
540** is in a system call (i.e. localtime()), then an error message is written
541** to context pCtx. If the error is an unrecognized modifier, no error is
542** written to pCtx.
drh7014aff2003-11-01 01:53:53 +0000543*/
danc17d6962011-06-21 12:47:30 +0000544static int parseModifier(sqlite3_context *pCtx, const char *zMod, DateTime *p){
drh7014aff2003-11-01 01:53:53 +0000545 int rc = 1;
546 int n;
547 double r;
drh4d5b8362004-01-17 01:16:21 +0000548 char *z, zBuf[30];
549 z = zBuf;
danielk197700e13612008-11-17 19:18:54 +0000550 for(n=0; n<ArraySize(zBuf)-1 && zMod[n]; n++){
drh1bd10f82008-12-10 21:19:56 +0000551 z[n] = (char)sqlite3UpperToLower[(u8)zMod[n]];
drh7014aff2003-11-01 01:53:53 +0000552 }
553 z[n] = 0;
554 switch( z[0] ){
drh66147c92008-06-12 12:51:37 +0000555#ifndef SQLITE_OMIT_LOCALTIME
drh7091cb02003-12-23 16:22:18 +0000556 case 'l': {
557 /* localtime
558 **
559 ** Assuming the current time value is UTC (a.k.a. GMT), shift it to
560 ** show local time.
561 */
562 if( strcmp(z, "localtime")==0 ){
563 computeJD(p);
danc17d6962011-06-21 12:47:30 +0000564 p->iJD += localtimeOffset(p, pCtx, &rc);
drhba212562004-01-08 02:17:31 +0000565 clearYMD_HMS_TZ(p);
drh7091cb02003-12-23 16:22:18 +0000566 }
567 break;
568 }
drh66147c92008-06-12 12:51:37 +0000569#endif
drh7014aff2003-11-01 01:53:53 +0000570 case 'u': {
571 /*
572 ** unixepoch
573 **
drh85f477a2008-06-12 16:35:38 +0000574 ** Treat the current value of p->iJD as the number of
drh7014aff2003-11-01 01:53:53 +0000575 ** seconds since 1970. Convert to a real julian day number.
576 */
577 if( strcmp(z, "unixepoch")==0 && p->validJD ){
drh7fee3602009-04-16 12:58:03 +0000578 p->iJD = (p->iJD + 43200)/86400 + 21086676*(i64)10000000;
drhba212562004-01-08 02:17:31 +0000579 clearYMD_HMS_TZ(p);
drh7014aff2003-11-01 01:53:53 +0000580 rc = 0;
drh66cccd92008-07-25 16:39:24 +0000581 }
582#ifndef SQLITE_OMIT_LOCALTIME
583 else if( strcmp(z, "utc")==0 ){
shaneaef3af52008-12-09 04:59:00 +0000584 sqlite3_int64 c1;
drh7091cb02003-12-23 16:22:18 +0000585 computeJD(p);
danc17d6962011-06-21 12:47:30 +0000586 c1 = localtimeOffset(p, pCtx, &rc);
587 if( rc==SQLITE_OK ){
588 p->iJD -= c1;
589 clearYMD_HMS_TZ(p);
590 p->iJD += c1 - localtimeOffset(p, pCtx, &rc);
591 }
drh7014aff2003-11-01 01:53:53 +0000592 }
drh66cccd92008-07-25 16:39:24 +0000593#endif
drh7014aff2003-11-01 01:53:53 +0000594 break;
595 }
596 case 'w': {
597 /*
598 ** weekday N
599 **
drh181fc992004-08-17 10:42:54 +0000600 ** Move the date to the same time on the next occurrence of
drh7014aff2003-11-01 01:53:53 +0000601 ** weekday N where 0==Sunday, 1==Monday, and so forth. If the
drhc5dd9fa2004-01-07 03:29:16 +0000602 ** date is already on the appropriate weekday, this is a no-op.
drh7014aff2003-11-01 01:53:53 +0000603 */
drh9339da12010-09-30 00:50:49 +0000604 if( strncmp(z, "weekday ", 8)==0
605 && sqlite3AtoF(&z[8], &r, sqlite3Strlen30(&z[8]), SQLITE_UTF8)
606 && (n=(int)r)==r && n>=0 && r<7 ){
drh85f477a2008-06-12 16:35:38 +0000607 sqlite3_int64 Z;
drhba212562004-01-08 02:17:31 +0000608 computeYMD_HMS(p);
drh7014aff2003-11-01 01:53:53 +0000609 p->validTZ = 0;
610 p->validJD = 0;
611 computeJD(p);
drh85f477a2008-06-12 16:35:38 +0000612 Z = ((p->iJD + 129600000)/86400000) % 7;
drh7014aff2003-11-01 01:53:53 +0000613 if( Z>n ) Z -= 7;
drh85f477a2008-06-12 16:35:38 +0000614 p->iJD += (n - Z)*86400000;
drhba212562004-01-08 02:17:31 +0000615 clearYMD_HMS_TZ(p);
drh7014aff2003-11-01 01:53:53 +0000616 rc = 0;
617 }
618 break;
619 }
620 case 's': {
621 /*
622 ** start of TTTTT
623 **
624 ** Move the date backwards to the beginning of the current day,
625 ** or month or year.
626 */
627 if( strncmp(z, "start of ", 9)!=0 ) break;
drh4d5b8362004-01-17 01:16:21 +0000628 z += 9;
drh7014aff2003-11-01 01:53:53 +0000629 computeYMD(p);
630 p->validHMS = 1;
631 p->h = p->m = 0;
632 p->s = 0.0;
633 p->validTZ = 0;
634 p->validJD = 0;
drh4d5b8362004-01-17 01:16:21 +0000635 if( strcmp(z,"month")==0 ){
drh7014aff2003-11-01 01:53:53 +0000636 p->D = 1;
637 rc = 0;
drh4d5b8362004-01-17 01:16:21 +0000638 }else if( strcmp(z,"year")==0 ){
drh7014aff2003-11-01 01:53:53 +0000639 computeYMD(p);
640 p->M = 1;
641 p->D = 1;
642 rc = 0;
drh4d5b8362004-01-17 01:16:21 +0000643 }else if( strcmp(z,"day")==0 ){
drh7014aff2003-11-01 01:53:53 +0000644 rc = 0;
645 }
646 break;
647 }
648 case '+':
649 case '-':
650 case '0':
651 case '1':
652 case '2':
653 case '3':
654 case '4':
655 case '5':
656 case '6':
657 case '7':
658 case '8':
659 case '9': {
drhc531a222009-01-30 17:27:44 +0000660 double rRounder;
drh9339da12010-09-30 00:50:49 +0000661 for(n=1; z[n] && z[n]!=':' && !sqlite3Isspace(z[n]); n++){}
662 if( !sqlite3AtoF(z, &r, n, SQLITE_UTF8) ){
663 rc = 1;
664 break;
665 }
drh33a9ad22004-02-29 00:40:32 +0000666 if( z[n]==':' ){
667 /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the
668 ** specified number of hours, minutes, seconds, and fractional seconds
669 ** to the time. The ".FFF" may be omitted. The ":SS.FFF" may be
670 ** omitted.
671 */
672 const char *z2 = z;
673 DateTime tx;
drh85f477a2008-06-12 16:35:38 +0000674 sqlite3_int64 day;
danielk197778ca0e72009-01-20 16:53:39 +0000675 if( !sqlite3Isdigit(*z2) ) z2++;
drh33a9ad22004-02-29 00:40:32 +0000676 memset(&tx, 0, sizeof(tx));
677 if( parseHhMmSs(z2, &tx) ) break;
678 computeJD(&tx);
drh85f477a2008-06-12 16:35:38 +0000679 tx.iJD -= 43200000;
680 day = tx.iJD/86400000;
681 tx.iJD -= day*86400000;
682 if( z[0]=='-' ) tx.iJD = -tx.iJD;
drh0d131ab2004-02-29 01:08:17 +0000683 computeJD(p);
684 clearYMD_HMS_TZ(p);
drh85f477a2008-06-12 16:35:38 +0000685 p->iJD += tx.iJD;
drh33a9ad22004-02-29 00:40:32 +0000686 rc = 0;
687 break;
688 }
drh4d5b8362004-01-17 01:16:21 +0000689 z += n;
danielk197778ca0e72009-01-20 16:53:39 +0000690 while( sqlite3Isspace(*z) ) z++;
drhea678832008-12-10 19:26:22 +0000691 n = sqlite3Strlen30(z);
drh7014aff2003-11-01 01:53:53 +0000692 if( n>10 || n<3 ) break;
drh7014aff2003-11-01 01:53:53 +0000693 if( z[n-1]=='s' ){ z[n-1] = 0; n--; }
694 computeJD(p);
695 rc = 0;
drhc531a222009-01-30 17:27:44 +0000696 rRounder = r<0 ? -0.5 : +0.5;
drh7014aff2003-11-01 01:53:53 +0000697 if( n==3 && strcmp(z,"day")==0 ){
drhc531a222009-01-30 17:27:44 +0000698 p->iJD += (sqlite3_int64)(r*86400000.0 + rRounder);
drh7014aff2003-11-01 01:53:53 +0000699 }else if( n==4 && strcmp(z,"hour")==0 ){
drhc531a222009-01-30 17:27:44 +0000700 p->iJD += (sqlite3_int64)(r*(86400000.0/24.0) + rRounder);
drh7014aff2003-11-01 01:53:53 +0000701 }else if( n==6 && strcmp(z,"minute")==0 ){
drhc531a222009-01-30 17:27:44 +0000702 p->iJD += (sqlite3_int64)(r*(86400000.0/(24.0*60.0)) + rRounder);
drh7014aff2003-11-01 01:53:53 +0000703 }else if( n==6 && strcmp(z,"second")==0 ){
drhc531a222009-01-30 17:27:44 +0000704 p->iJD += (sqlite3_int64)(r*(86400000.0/(24.0*60.0*60.0)) + rRounder);
drh7014aff2003-11-01 01:53:53 +0000705 }else if( n==5 && strcmp(z,"month")==0 ){
706 int x, y;
drhba212562004-01-08 02:17:31 +0000707 computeYMD_HMS(p);
shaneaef3af52008-12-09 04:59:00 +0000708 p->M += (int)r;
drh7014aff2003-11-01 01:53:53 +0000709 x = p->M>0 ? (p->M-1)/12 : (p->M-12)/12;
710 p->Y += x;
711 p->M -= x*12;
712 p->validJD = 0;
713 computeJD(p);
shaneaef3af52008-12-09 04:59:00 +0000714 y = (int)r;
drh7014aff2003-11-01 01:53:53 +0000715 if( y!=r ){
drhc531a222009-01-30 17:27:44 +0000716 p->iJD += (sqlite3_int64)((r - y)*30.0*86400000.0 + rRounder);
drh7014aff2003-11-01 01:53:53 +0000717 }
718 }else if( n==4 && strcmp(z,"year")==0 ){
drhc531a222009-01-30 17:27:44 +0000719 int y = (int)r;
drhba212562004-01-08 02:17:31 +0000720 computeYMD_HMS(p);
drhc531a222009-01-30 17:27:44 +0000721 p->Y += y;
drh7014aff2003-11-01 01:53:53 +0000722 p->validJD = 0;
723 computeJD(p);
drhc531a222009-01-30 17:27:44 +0000724 if( y!=r ){
725 p->iJD += (sqlite3_int64)((r - y)*365.0*86400000.0 + rRounder);
726 }
drh7014aff2003-11-01 01:53:53 +0000727 }else{
728 rc = 1;
729 }
drhba212562004-01-08 02:17:31 +0000730 clearYMD_HMS_TZ(p);
drh7014aff2003-11-01 01:53:53 +0000731 break;
732 }
733 default: {
734 break;
735 }
736 }
737 return rc;
738}
739
740/*
741** Process time function arguments. argv[0] is a date-time stamp.
742** argv[1] and following are modifiers. Parse them all and write
743** the resulting time into the DateTime structure p. Return 0
744** on success and 1 if there are any errors.
drh008e4762008-01-17 22:27:53 +0000745**
746** If there are zero parameters (if even argv[0] is undefined)
747** then assume a default value of "now" for argv[0].
drh7014aff2003-11-01 01:53:53 +0000748*/
danielk1977fee2d252007-08-18 10:59:19 +0000749static int isDate(
750 sqlite3_context *context,
751 int argc,
752 sqlite3_value **argv,
753 DateTime *p
754){
drh7014aff2003-11-01 01:53:53 +0000755 int i;
drh7a521cf2007-04-25 18:23:52 +0000756 const unsigned char *z;
drh85f477a2008-06-12 16:35:38 +0000757 int eType;
drh3af5d682008-06-12 13:50:00 +0000758 memset(p, 0, sizeof(*p));
drh008e4762008-01-17 22:27:53 +0000759 if( argc==0 ){
drh31702252011-10-12 23:13:43 +0000760 return setDateTimeToCurrent(context, p);
761 }
762 if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT
drh85f477a2008-06-12 16:35:38 +0000763 || eType==SQLITE_INTEGER ){
shaneaef3af52008-12-09 04:59:00 +0000764 p->iJD = (sqlite3_int64)(sqlite3_value_double(argv[0])*86400000.0 + 0.5);
drh3af5d682008-06-12 13:50:00 +0000765 p->validJD = 1;
drh008e4762008-01-17 22:27:53 +0000766 }else{
767 z = sqlite3_value_text(argv[0]);
drh3af5d682008-06-12 13:50:00 +0000768 if( !z || parseDateOrTime(context, (char*)z, p) ){
769 return 1;
770 }
drh7a521cf2007-04-25 18:23:52 +0000771 }
drh7014aff2003-11-01 01:53:53 +0000772 for(i=1; i<argc; i++){
danc17d6962011-06-21 12:47:30 +0000773 z = sqlite3_value_text(argv[i]);
774 if( z==0 || parseModifier(context, (char*)z, p) ) return 1;
drh7014aff2003-11-01 01:53:53 +0000775 }
776 return 0;
777}
778
779
780/*
781** The following routines implement the various date and time functions
782** of SQLite.
783*/
784
785/*
786** julianday( TIMESTRING, MOD, MOD, ...)
787**
788** Return the julian day number of the date specified in the arguments
789*/
drhf9b596e2004-05-26 16:54:42 +0000790static void juliandayFunc(
791 sqlite3_context *context,
792 int argc,
793 sqlite3_value **argv
794){
drh7014aff2003-11-01 01:53:53 +0000795 DateTime x;
danielk1977fee2d252007-08-18 10:59:19 +0000796 if( isDate(context, argc, argv, &x)==0 ){
drh7014aff2003-11-01 01:53:53 +0000797 computeJD(&x);
drh85f477a2008-06-12 16:35:38 +0000798 sqlite3_result_double(context, x.iJD/86400000.0);
drh7014aff2003-11-01 01:53:53 +0000799 }
800}
801
802/*
803** datetime( TIMESTRING, MOD, MOD, ...)
804**
805** Return YYYY-MM-DD HH:MM:SS
806*/
drhf9b596e2004-05-26 16:54:42 +0000807static void datetimeFunc(
808 sqlite3_context *context,
809 int argc,
810 sqlite3_value **argv
811){
drh7014aff2003-11-01 01:53:53 +0000812 DateTime x;
danielk1977fee2d252007-08-18 10:59:19 +0000813 if( isDate(context, argc, argv, &x)==0 ){
drh7014aff2003-11-01 01:53:53 +0000814 char zBuf[100];
drhba212562004-01-08 02:17:31 +0000815 computeYMD_HMS(&x);
drh5bb3eb92007-05-04 13:15:55 +0000816 sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d %02d:%02d:%02d",
817 x.Y, x.M, x.D, x.h, x.m, (int)(x.s));
danielk1977d8123362004-06-12 09:25:12 +0000818 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
drh7014aff2003-11-01 01:53:53 +0000819 }
820}
821
822/*
823** time( TIMESTRING, MOD, MOD, ...)
824**
825** Return HH:MM:SS
826*/
drhf9b596e2004-05-26 16:54:42 +0000827static void timeFunc(
828 sqlite3_context *context,
829 int argc,
830 sqlite3_value **argv
831){
drh7014aff2003-11-01 01:53:53 +0000832 DateTime x;
danielk1977fee2d252007-08-18 10:59:19 +0000833 if( isDate(context, argc, argv, &x)==0 ){
drh7014aff2003-11-01 01:53:53 +0000834 char zBuf[100];
835 computeHMS(&x);
drh5bb3eb92007-05-04 13:15:55 +0000836 sqlite3_snprintf(sizeof(zBuf), zBuf, "%02d:%02d:%02d", x.h, x.m, (int)x.s);
danielk1977d8123362004-06-12 09:25:12 +0000837 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
drh7014aff2003-11-01 01:53:53 +0000838 }
839}
840
841/*
842** date( TIMESTRING, MOD, MOD, ...)
843**
844** Return YYYY-MM-DD
845*/
drhf9b596e2004-05-26 16:54:42 +0000846static void dateFunc(
847 sqlite3_context *context,
848 int argc,
849 sqlite3_value **argv
850){
drh7014aff2003-11-01 01:53:53 +0000851 DateTime x;
danielk1977fee2d252007-08-18 10:59:19 +0000852 if( isDate(context, argc, argv, &x)==0 ){
drh7014aff2003-11-01 01:53:53 +0000853 char zBuf[100];
854 computeYMD(&x);
drh5bb3eb92007-05-04 13:15:55 +0000855 sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d", x.Y, x.M, x.D);
danielk1977d8123362004-06-12 09:25:12 +0000856 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
drh7014aff2003-11-01 01:53:53 +0000857 }
858}
859
860/*
861** strftime( FORMAT, TIMESTRING, MOD, MOD, ...)
862**
863** Return a string described by FORMAT. Conversions as follows:
864**
865** %d day of month
866** %f ** fractional seconds SS.SSS
867** %H hour 00-24
868** %j day of year 000-366
869** %J ** Julian day number
870** %m month 01-12
871** %M minute 00-59
872** %s seconds since 1970-01-01
873** %S seconds 00-59
874** %w day of week 0-6 sunday==0
875** %W week of year 00-53
876** %Y year 0000-9999
877** %% %
878*/
drhf9b596e2004-05-26 16:54:42 +0000879static void strftimeFunc(
880 sqlite3_context *context,
881 int argc,
882 sqlite3_value **argv
883){
drh7014aff2003-11-01 01:53:53 +0000884 DateTime x;
drha0206bc2007-05-08 15:15:02 +0000885 u64 n;
shaneaef3af52008-12-09 04:59:00 +0000886 size_t i,j;
drh7014aff2003-11-01 01:53:53 +0000887 char *z;
drh633e6d52008-07-28 19:34:53 +0000888 sqlite3 *db;
drh2646da72005-12-09 20:02:05 +0000889 const char *zFmt = (const char*)sqlite3_value_text(argv[0]);
drh7014aff2003-11-01 01:53:53 +0000890 char zBuf[100];
danielk1977fee2d252007-08-18 10:59:19 +0000891 if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return;
drh633e6d52008-07-28 19:34:53 +0000892 db = sqlite3_context_db_handle(context);
drh7014aff2003-11-01 01:53:53 +0000893 for(i=0, n=1; zFmt[i]; i++, n++){
894 if( zFmt[i]=='%' ){
895 switch( zFmt[i+1] ){
896 case 'd':
897 case 'H':
898 case 'm':
899 case 'M':
900 case 'S':
901 case 'W':
902 n++;
903 /* fall thru */
904 case 'w':
905 case '%':
906 break;
907 case 'f':
908 n += 8;
909 break;
910 case 'j':
911 n += 3;
912 break;
913 case 'Y':
914 n += 8;
915 break;
916 case 's':
917 case 'J':
918 n += 50;
919 break;
920 default:
921 return; /* ERROR. return a NULL */
922 }
923 i++;
924 }
925 }
drh67110022009-01-28 02:55:28 +0000926 testcase( n==sizeof(zBuf)-1 );
927 testcase( n==sizeof(zBuf) );
928 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH]+1 );
929 testcase( n==(u64)db->aLimit[SQLITE_LIMIT_LENGTH] );
drh7014aff2003-11-01 01:53:53 +0000930 if( n<sizeof(zBuf) ){
931 z = zBuf;
danielk197700e13612008-11-17 19:18:54 +0000932 }else if( n>(u64)db->aLimit[SQLITE_LIMIT_LENGTH] ){
drha0206bc2007-05-08 15:15:02 +0000933 sqlite3_result_error_toobig(context);
934 return;
drh7014aff2003-11-01 01:53:53 +0000935 }else{
shaneaef3af52008-12-09 04:59:00 +0000936 z = sqlite3DbMallocRaw(db, (int)n);
drh3334e942008-01-17 20:26:46 +0000937 if( z==0 ){
938 sqlite3_result_error_nomem(context);
939 return;
940 }
drh7014aff2003-11-01 01:53:53 +0000941 }
942 computeJD(&x);
drhba212562004-01-08 02:17:31 +0000943 computeYMD_HMS(&x);
drh7014aff2003-11-01 01:53:53 +0000944 for(i=j=0; zFmt[i]; i++){
945 if( zFmt[i]!='%' ){
946 z[j++] = zFmt[i];
947 }else{
948 i++;
949 switch( zFmt[i] ){
drh5bb3eb92007-05-04 13:15:55 +0000950 case 'd': sqlite3_snprintf(3, &z[j],"%02d",x.D); j+=2; break;
drh7014aff2003-11-01 01:53:53 +0000951 case 'f': {
drhb1f1e6e2006-09-25 18:01:31 +0000952 double s = x.s;
953 if( s>59.999 ) s = 59.999;
drh2ecad3b2007-03-29 17:57:21 +0000954 sqlite3_snprintf(7, &z[j],"%06.3f", s);
drhea678832008-12-10 19:26:22 +0000955 j += sqlite3Strlen30(&z[j]);
drh7014aff2003-11-01 01:53:53 +0000956 break;
957 }
drh5bb3eb92007-05-04 13:15:55 +0000958 case 'H': sqlite3_snprintf(3, &z[j],"%02d",x.h); j+=2; break;
drh7014aff2003-11-01 01:53:53 +0000959 case 'W': /* Fall thru */
960 case 'j': {
danielk1977f0113002006-01-24 12:09:17 +0000961 int nDay; /* Number of days since 1st day of year */
drh7014aff2003-11-01 01:53:53 +0000962 DateTime y = x;
963 y.validJD = 0;
964 y.M = 1;
965 y.D = 1;
966 computeJD(&y);
shaneaef3af52008-12-09 04:59:00 +0000967 nDay = (int)((x.iJD-y.iJD+43200000)/86400000);
drh7014aff2003-11-01 01:53:53 +0000968 if( zFmt[i]=='W' ){
drh1020d492004-07-18 22:22:43 +0000969 int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */
shaneaef3af52008-12-09 04:59:00 +0000970 wd = (int)(((x.iJD+43200000)/86400000)%7);
drh5bb3eb92007-05-04 13:15:55 +0000971 sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7);
drh7014aff2003-11-01 01:53:53 +0000972 j += 2;
973 }else{
drh5bb3eb92007-05-04 13:15:55 +0000974 sqlite3_snprintf(4, &z[j],"%03d",nDay+1);
drh7014aff2003-11-01 01:53:53 +0000975 j += 3;
976 }
977 break;
978 }
drh5bb3eb92007-05-04 13:15:55 +0000979 case 'J': {
drh85f477a2008-06-12 16:35:38 +0000980 sqlite3_snprintf(20, &z[j],"%.16g",x.iJD/86400000.0);
drhea678832008-12-10 19:26:22 +0000981 j+=sqlite3Strlen30(&z[j]);
drh5bb3eb92007-05-04 13:15:55 +0000982 break;
983 }
984 case 'm': sqlite3_snprintf(3, &z[j],"%02d",x.M); j+=2; break;
985 case 'M': sqlite3_snprintf(3, &z[j],"%02d",x.m); j+=2; break;
drh7014aff2003-11-01 01:53:53 +0000986 case 's': {
drh6eb41522009-04-01 20:44:13 +0000987 sqlite3_snprintf(30,&z[j],"%lld",
drh07758962009-04-03 12:04:36 +0000988 (i64)(x.iJD/1000 - 21086676*(i64)10000));
drhea678832008-12-10 19:26:22 +0000989 j += sqlite3Strlen30(&z[j]);
drh7014aff2003-11-01 01:53:53 +0000990 break;
991 }
drh5bb3eb92007-05-04 13:15:55 +0000992 case 'S': sqlite3_snprintf(3,&z[j],"%02d",(int)x.s); j+=2; break;
drhea678832008-12-10 19:26:22 +0000993 case 'w': {
994 z[j++] = (char)(((x.iJD+129600000)/86400000) % 7) + '0';
995 break;
996 }
997 case 'Y': {
998 sqlite3_snprintf(5,&z[j],"%04d",x.Y); j+=sqlite3Strlen30(&z[j]);
999 break;
1000 }
drh008e4762008-01-17 22:27:53 +00001001 default: z[j++] = '%'; break;
drh7014aff2003-11-01 01:53:53 +00001002 }
1003 }
1004 }
1005 z[j] = 0;
drh3334e942008-01-17 20:26:46 +00001006 sqlite3_result_text(context, z, -1,
drh633e6d52008-07-28 19:34:53 +00001007 z==zBuf ? SQLITE_TRANSIENT : SQLITE_DYNAMIC);
drh7014aff2003-11-01 01:53:53 +00001008}
1009
danielk19777977a172004-11-09 12:44:37 +00001010/*
1011** current_time()
1012**
1013** This function returns the same value as time('now').
1014*/
1015static void ctimeFunc(
1016 sqlite3_context *context,
danielk197762c14b32008-11-19 09:05:26 +00001017 int NotUsed,
1018 sqlite3_value **NotUsed2
danielk19777977a172004-11-09 12:44:37 +00001019){
danielk197762c14b32008-11-19 09:05:26 +00001020 UNUSED_PARAMETER2(NotUsed, NotUsed2);
drh008e4762008-01-17 22:27:53 +00001021 timeFunc(context, 0, 0);
danielk19777977a172004-11-09 12:44:37 +00001022}
drh7014aff2003-11-01 01:53:53 +00001023
danielk19777977a172004-11-09 12:44:37 +00001024/*
1025** current_date()
1026**
1027** This function returns the same value as date('now').
1028*/
1029static void cdateFunc(
1030 sqlite3_context *context,
danielk197762c14b32008-11-19 09:05:26 +00001031 int NotUsed,
1032 sqlite3_value **NotUsed2
danielk19777977a172004-11-09 12:44:37 +00001033){
danielk197762c14b32008-11-19 09:05:26 +00001034 UNUSED_PARAMETER2(NotUsed, NotUsed2);
drh008e4762008-01-17 22:27:53 +00001035 dateFunc(context, 0, 0);
danielk19777977a172004-11-09 12:44:37 +00001036}
1037
1038/*
1039** current_timestamp()
1040**
1041** This function returns the same value as datetime('now').
1042*/
1043static void ctimestampFunc(
1044 sqlite3_context *context,
danielk197762c14b32008-11-19 09:05:26 +00001045 int NotUsed,
1046 sqlite3_value **NotUsed2
danielk19777977a172004-11-09 12:44:37 +00001047){
danielk197762c14b32008-11-19 09:05:26 +00001048 UNUSED_PARAMETER2(NotUsed, NotUsed2);
drh008e4762008-01-17 22:27:53 +00001049 datetimeFunc(context, 0, 0);
danielk19777977a172004-11-09 12:44:37 +00001050}
drh7014aff2003-11-01 01:53:53 +00001051#endif /* !defined(SQLITE_OMIT_DATETIME_FUNCS) */
1052
danielk1977752e6792004-11-09 16:13:33 +00001053#ifdef SQLITE_OMIT_DATETIME_FUNCS
1054/*
1055** If the library is compiled to omit the full-scale date and time
1056** handling (to get a smaller binary), the following minimal version
1057** of the functions current_time(), current_date() and current_timestamp()
1058** are included instead. This is to support column declarations that
1059** include "DEFAULT CURRENT_TIME" etc.
1060**
danielk19772df9fab2004-11-11 01:50:30 +00001061** This function uses the C-library functions time(), gmtime()
danielk1977752e6792004-11-09 16:13:33 +00001062** and strftime(). The format string to pass to strftime() is supplied
1063** as the user-data for the function.
1064*/
danielk1977752e6792004-11-09 16:13:33 +00001065static void currentTimeFunc(
1066 sqlite3_context *context,
1067 int argc,
1068 sqlite3_value **argv
1069){
1070 time_t t;
1071 char *zFormat = (char *)sqlite3_user_data(context);
drhfa4a4b92008-03-19 21:45:51 +00001072 sqlite3 *db;
drhb7e8ea22010-05-03 14:32:30 +00001073 sqlite3_int64 iT;
drh31702252011-10-12 23:13:43 +00001074 struct tm *pTm;
1075 struct tm sNow;
danielk1977752e6792004-11-09 16:13:33 +00001076 char zBuf[20];
danielk1977752e6792004-11-09 16:13:33 +00001077
shanefbd60f82009-02-04 03:59:25 +00001078 UNUSED_PARAMETER(argc);
1079 UNUSED_PARAMETER(argv);
1080
drhfa4a4b92008-03-19 21:45:51 +00001081 db = sqlite3_context_db_handle(context);
drh31702252011-10-12 23:13:43 +00001082 if( sqlite3OsCurrentTimeInt64(db->pVfs, &iT) ) return;
drhd5e6e402010-05-03 19:17:01 +00001083 t = iT/1000 - 10000*(sqlite3_int64)21086676;
drh87595762006-09-08 12:49:43 +00001084#ifdef HAVE_GMTIME_R
drh31702252011-10-12 23:13:43 +00001085 pTm = gmtime_r(&t, &sNow);
drh87595762006-09-08 12:49:43 +00001086#else
drh31702252011-10-12 23:13:43 +00001087 sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
1088 pTm = gmtime(&t);
1089 if( pTm ) memcpy(&sNow, pTm, sizeof(sNow));
1090 sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
drh87595762006-09-08 12:49:43 +00001091#endif
drh31702252011-10-12 23:13:43 +00001092 if( pTm ){
1093 strftime(zBuf, 20, zFormat, &sNow);
1094 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
1095 }
danielk1977752e6792004-11-09 16:13:33 +00001096}
1097#endif
1098
drh7014aff2003-11-01 01:53:53 +00001099/*
1100** This function registered all of the above C functions as SQL
1101** functions. This should be the only routine in this file with
1102** external linkage.
1103*/
drh777c5382008-08-21 20:21:34 +00001104void sqlite3RegisterDateTimeFunctions(void){
danielk1977075c23a2008-09-01 18:34:20 +00001105 static SQLITE_WSD FuncDef aDateTimeFuncs[] = {
drhfd1f3942004-07-20 00:39:14 +00001106#ifndef SQLITE_OMIT_DATETIME_FUNCS
drh777c5382008-08-21 20:21:34 +00001107 FUNCTION(julianday, -1, 0, 0, juliandayFunc ),
1108 FUNCTION(date, -1, 0, 0, dateFunc ),
1109 FUNCTION(time, -1, 0, 0, timeFunc ),
1110 FUNCTION(datetime, -1, 0, 0, datetimeFunc ),
1111 FUNCTION(strftime, -1, 0, 0, strftimeFunc ),
1112 FUNCTION(current_time, 0, 0, 0, ctimeFunc ),
1113 FUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc),
1114 FUNCTION(current_date, 0, 0, 0, cdateFunc ),
danielk1977752e6792004-11-09 16:13:33 +00001115#else
drh21717ed2008-10-13 15:35:08 +00001116 STR_FUNCTION(current_time, 0, "%H:%M:%S", 0, currentTimeFunc),
drh2b1e6902010-01-12 19:28:20 +00001117 STR_FUNCTION(current_date, 0, "%Y-%m-%d", 0, currentTimeFunc),
1118 STR_FUNCTION(current_timestamp, 0, "%Y-%m-%d %H:%M:%S", 0, currentTimeFunc),
drh777c5382008-08-21 20:21:34 +00001119#endif
danielk1977752e6792004-11-09 16:13:33 +00001120 };
1121 int i;
danielk1977075c23a2008-09-01 18:34:20 +00001122 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
drh106cee52008-09-03 17:11:16 +00001123 FuncDef *aFunc = (FuncDef*)&GLOBAL(FuncDef, aDateTimeFuncs);
danielk1977752e6792004-11-09 16:13:33 +00001124
drh777c5382008-08-21 20:21:34 +00001125 for(i=0; i<ArraySize(aDateTimeFuncs); i++){
danielk1977075c23a2008-09-01 18:34:20 +00001126 sqlite3FuncDefInsert(pHash, &aFunc[i]);
danielk1977752e6792004-11-09 16:13:33 +00001127 }
drh7014aff2003-11-01 01:53:53 +00001128}