Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
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.
11 *************************************************************************
12 ** This file contains the C functions that implement date and time
13 ** functions for SQLite.
15 ** There is only one exported symbol in this file - the function
16 ** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
17 ** All other code has file scope.
19 ** $Id: date.c,v 1.90 2008/09/03 17:11:16 drh Exp $
21 ** SQLite processes all times and dates as Julian Day numbers. The
22 ** dates and times are stored as the number of days since noon
23 ** in Greenwich on November 24, 4714 B.C. according to the Gregorian
26 ** 1970-01-01 00:00:00 is JD 2440587.5
27 ** 2000-01-01 00:00:00 is JD 2451544.5
29 ** This implemention requires years to be expressed as a 4-digit number
30 ** which means that only dates between 0000-01-01 and 9999-12-31 can
31 ** be represented, even though julian day numbers allow a much wider
34 ** The Gregorian calendar system is used for all dates and times,
35 ** even those that predate the Gregorian calendar. Historians usually
36 ** use the Julian calendar for dates prior to 1582-10-15 and for some
37 ** dates afterwards, depending on locale. Beware of this difference.
39 ** The conversion algorithms are implemented based on descriptions
40 ** in the following text:
43 ** Astronomical Algorithms, 2nd Edition, 1998
46 ** Richmond, Virginia (USA)
48 #include "sqliteInt.h"
54 #ifndef SQLITE_OMIT_DATETIME_FUNCS
57 ** On recent Windows platforms, the localtime_s() function is available
58 ** as part of the "Secure CRT". It is essentially equivalent to
59 ** localtime_r() available under most POSIX platforms, except that the
60 ** order of the parameters is reversed.
62 ** See http://msdn.microsoft.com/en-us/library/a442x3ye(VS.80).aspx.
64 ** If the user has not indicated to use localtime_r() or localtime_s()
65 ** already, check for an MSVC build environment that provides
68 #if !defined(HAVE_LOCALTIME_R) && !defined(HAVE_LOCALTIME_S) && \
69 defined(_MSC_VER) && defined(_CRT_INSECURE_DEPRECATE)
70 #define HAVE_LOCALTIME_S 1
74 ** A structure for holding a single date and time.
76 typedef struct DateTime DateTime;
78 sqlite3_int64 iJD; /* The julian day number times 86400000 */
79 int Y, M, D; /* Year, month, and day */
80 int h, m; /* Hour and minutes */
81 int tz; /* Timezone offset in minutes */
82 double s; /* Seconds */
83 char validYMD; /* True if Y,M,D are valid */
84 char validHMS; /* True if h,m,s are valid */
85 char validJD; /* True if iJD is valid */
86 char validTZ; /* True if tz is valid */
91 ** Convert zDate into one or more integers. Additional arguments
92 ** come in groups of 5 as follows:
94 ** N number of digits in the integer
95 ** min minimum allowed value of the integer
96 ** max maximum allowed value of the integer
97 ** nextC first character after the integer
98 ** pVal where to write the integers value.
100 ** Conversions continue until one with nextC==0 is encountered.
101 ** The function returns the number of successful conversions.
103 static int getDigits(const char *zDate, ...){
115 min = va_arg(ap, int);
116 max = va_arg(ap, int);
117 nextC = va_arg(ap, int);
118 pVal = va_arg(ap, int*);
121 if( !isdigit(*(u8*)zDate) ){
124 val = val*10 + *zDate - '0';
127 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){
140 ** Read text from z[] and convert into a floating point number. Return
141 ** the number of digits converted.
143 #define getValue sqlite3AtoF
146 ** Parse a timezone extension on the end of a date-time.
147 ** The extension is of the form:
151 ** Or the "zulu" notation:
155 ** If the parse is successful, write the number of minutes
156 ** of change in p->tz and return 0. If a parser error occurs,
159 ** A missing specifier is not considered an error.
161 static int parseTimezone(const char *zDate, DateTime *p){
165 while( isspace(*(u8*)zDate) ){ zDate++; }
172 }else if( c=='Z' || c=='z' ){
179 if( getDigits(zDate, 2, 0, 14, ':', &nHr, 2, 0, 59, 0, &nMn)!=2 ){
183 p->tz = sgn*(nMn + nHr*60);
185 while( isspace(*(u8*)zDate) ){ zDate++; }
190 ** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF.
191 ** The HH, MM, and SS must each be exactly 2 digits. The
192 ** fractional seconds FFFF can be one or more digits.
194 ** Return 1 if there is a parsing error and 0 on success.
196 static int parseHhMmSs(const char *zDate, DateTime *p){
199 if( getDigits(zDate, 2, 0, 24, ':', &h, 2, 0, 59, 0, &m)!=2 ){
205 if( getDigits(zDate, 2, 0, 59, 0, &s)!=1 ){
209 if( *zDate=='.' && isdigit((u8)zDate[1]) ){
212 while( isdigit(*(u8*)zDate) ){
213 ms = ms*10.0 + *zDate - '0';
227 if( parseTimezone(zDate, p) ) return 1;
228 p->validTZ = p->tz!=0;
233 ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume
234 ** that the YYYY-MM-DD is according to the Gregorian calendar.
236 ** Reference: Meeus page 61
238 static void computeJD(DateTime *p){
239 int Y, M, D, A, B, X1, X2;
241 if( p->validJD ) return;
247 Y = 2000; /* If no YMD specified, assume 2000-Jan-01 */
257 X1 = 365.25*(Y+4716);
259 p->iJD = (X1 + X2 + D + B - 1524.5)*86400000;
262 p->iJD += p->h*3600000 + p->m*60000 + p->s*1000;
264 p->iJD -= p->tz*60000;
273 ** Parse dates of the form
275 ** YYYY-MM-DD HH:MM:SS.FFF
276 ** YYYY-MM-DD HH:MM:SS
280 ** Write the result into the DateTime structure and return 0
281 ** on success and 1 if the input string is not a well-formed
284 static int parseYyyyMmDd(const char *zDate, DateTime *p){
293 if( getDigits(zDate,4,0,9999,'-',&Y,2,1,12,'-',&M,2,1,31,0,&D)!=3 ){
297 while( isspace(*(u8*)zDate) || 'T'==*(u8*)zDate ){ zDate++; }
298 if( parseHhMmSs(zDate, p)==0 ){
299 /* We got the time */
300 }else if( *zDate==0 ){
317 ** Set the time to the current time reported by the VFS
319 static void setDateTimeToCurrent(sqlite3_context *context, DateTime *p){
321 sqlite3 *db = sqlite3_context_db_handle(context);
322 sqlite3OsCurrentTime(db->pVfs, &r);
323 p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5);
328 ** Attempt to parse the given string into a Julian Day Number. Return
329 ** the number of errors.
331 ** The following are acceptable forms for the input string:
333 ** YYYY-MM-DD HH:MM:SS.FFF +/-HH:MM
337 ** In the first form, the +/-HH:MM is always optional. The fractional
338 ** seconds extension (the ".FFF") is optional. The seconds portion
339 ** (":SS.FFF") is option. The year and date can be omitted as long
340 ** as there is a time string. The time string can be omitted as long
341 ** as there is a year and date.
343 static int parseDateOrTime(
344 sqlite3_context *context,
348 if( parseYyyyMmDd(zDate,p)==0 ){
350 }else if( parseHhMmSs(zDate, p)==0 ){
352 }else if( sqlite3StrICmp(zDate,"now")==0){
353 setDateTimeToCurrent(context, p);
355 }else if( sqlite3IsNumber(zDate, 0, SQLITE_UTF8) ){
358 p->iJD = (sqlite3_int64)(r*86400000.0 + 0.5);
366 ** Compute the Year, Month, and Day from the julian day number.
368 static void computeYMD(DateTime *p){
369 int Z, A, B, C, D, E, X1;
370 if( p->validYMD ) return;
376 Z = (p->iJD + 43200000)/86400000;
377 A = (Z - 1867216.25)/36524.25;
378 A = Z + 1 + A - (A/4);
380 C = (B - 122.1)/365.25;
385 p->M = E<14 ? E-1 : E-13;
386 p->Y = p->M>2 ? C - 4716 : C - 4715;
392 ** Compute the Hour, Minute, and Seconds from the julian day number.
394 static void computeHMS(DateTime *p){
396 if( p->validHMS ) return;
398 s = (p->iJD + 43200000) % 86400000;
410 ** Compute both YMD and HMS
412 static void computeYMD_HMS(DateTime *p){
418 ** Clear the YMD and HMS and the TZ
420 static void clearYMD_HMS_TZ(DateTime *p){
426 #ifndef SQLITE_OMIT_LOCALTIME
428 ** Compute the difference (in milliseconds)
429 ** between localtime and UTC (a.k.a. GMT)
430 ** for the time value p where p is in UTC.
432 static int localtimeOffset(DateTime *p){
437 if( x.Y<1971 || x.Y>=2038 ){
451 t = x.iJD/1000 - 2440587.5*86400.0;
452 #ifdef HAVE_LOCALTIME_R
455 localtime_r(&t, &sLocal);
456 y.Y = sLocal.tm_year + 1900;
457 y.M = sLocal.tm_mon + 1;
458 y.D = sLocal.tm_mday;
459 y.h = sLocal.tm_hour;
463 #elif defined(HAVE_LOCALTIME_S)
466 localtime_s(&sLocal, &t);
467 y.Y = sLocal.tm_year + 1900;
468 y.M = sLocal.tm_mon + 1;
469 y.D = sLocal.tm_mday;
470 y.h = sLocal.tm_hour;
477 sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
479 y.Y = pTm->tm_year + 1900;
480 y.M = pTm->tm_mon + 1;
485 sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
493 return y.iJD - x.iJD;
495 #endif /* SQLITE_OMIT_LOCALTIME */
498 ** Process a modifier to a date-time stamp. The modifiers are
516 ** Return 0 on success and 1 if there is any kind of error.
518 static int parseModifier(const char *zMod, DateTime *p){
524 for(n=0; n<sizeof(zBuf)-1 && zMod[n]; n++){
525 z[n] = tolower(zMod[n]);
529 #ifndef SQLITE_OMIT_LOCALTIME
533 ** Assuming the current time value is UTC (a.k.a. GMT), shift it to
536 if( strcmp(z, "localtime")==0 ){
538 p->iJD += localtimeOffset(p);
549 ** Treat the current value of p->iJD as the number of
550 ** seconds since 1970. Convert to a real julian day number.
552 if( strcmp(z, "unixepoch")==0 && p->validJD ){
553 p->iJD = p->iJD/86400.0 + 2440587.5*86400000.0;
557 #ifndef SQLITE_OMIT_LOCALTIME
558 else if( strcmp(z, "utc")==0 ){
561 c1 = localtimeOffset(p);
564 p->iJD += c1 - localtimeOffset(p);
574 ** Move the date to the same time on the next occurrence of
575 ** weekday N where 0==Sunday, 1==Monday, and so forth. If the
576 ** date is already on the appropriate weekday, this is a no-op.
578 if( strncmp(z, "weekday ", 8)==0 && getValue(&z[8],&r)>0
579 && (n=r)==r && n>=0 && r<7 ){
585 Z = ((p->iJD + 129600000)/86400000) % 7;
587 p->iJD += (n - Z)*86400000;
597 ** Move the date backwards to the beginning of the current day,
600 if( strncmp(z, "start of ", 9)!=0 ) break;
608 if( strcmp(z,"month")==0 ){
611 }else if( strcmp(z,"year")==0 ){
616 }else if( strcmp(z,"day")==0 ){
636 /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the
637 ** specified number of hours, minutes, seconds, and fractional seconds
638 ** to the time. The ".FFF" may be omitted. The ":SS.FFF" may be
644 if( !isdigit(*(u8*)z2) ) z2++;
645 memset(&tx, 0, sizeof(tx));
646 if( parseHhMmSs(z2, &tx) ) break;
649 day = tx.iJD/86400000;
650 tx.iJD -= day*86400000;
651 if( z[0]=='-' ) tx.iJD = -tx.iJD;
659 while( isspace(*(u8*)z) ) z++;
661 if( n>10 || n<3 ) break;
662 if( z[n-1]=='s' ){ z[n-1] = 0; n--; }
665 if( n==3 && strcmp(z,"day")==0 ){
666 p->iJD += r*86400000.0 + 0.5;
667 }else if( n==4 && strcmp(z,"hour")==0 ){
668 p->iJD += r*(86400000.0/24.0) + 0.5;
669 }else if( n==6 && strcmp(z,"minute")==0 ){
670 p->iJD += r*(86400000.0/(24.0*60.0)) + 0.5;
671 }else if( n==6 && strcmp(z,"second")==0 ){
672 p->iJD += r*(86400000.0/(24.0*60.0*60.0)) + 0.5;
673 }else if( n==5 && strcmp(z,"month")==0 ){
677 x = p->M>0 ? (p->M-1)/12 : (p->M-12)/12;
684 p->iJD += (r - y)*30.0*86400000.0 + 0.5;
686 }else if( n==4 && strcmp(z,"year")==0 ){
705 ** Process time function arguments. argv[0] is a date-time stamp.
706 ** argv[1] and following are modifiers. Parse them all and write
707 ** the resulting time into the DateTime structure p. Return 0
708 ** on success and 1 if there are any errors.
710 ** If there are zero parameters (if even argv[0] is undefined)
711 ** then assume a default value of "now" for argv[0].
714 sqlite3_context *context,
716 sqlite3_value **argv,
720 const unsigned char *z;
722 memset(p, 0, sizeof(*p));
724 setDateTimeToCurrent(context, p);
725 }else if( (eType = sqlite3_value_type(argv[0]))==SQLITE_FLOAT
726 || eType==SQLITE_INTEGER ){
727 p->iJD = sqlite3_value_double(argv[0])*86400000.0 + 0.5;
730 z = sqlite3_value_text(argv[0]);
731 if( !z || parseDateOrTime(context, (char*)z, p) ){
735 for(i=1; i<argc; i++){
736 if( (z = sqlite3_value_text(argv[i]))==0 || parseModifier((char*)z, p) ){
745 ** The following routines implement the various date and time functions
750 ** julianday( TIMESTRING, MOD, MOD, ...)
752 ** Return the julian day number of the date specified in the arguments
754 static void juliandayFunc(
755 sqlite3_context *context,
760 if( isDate(context, argc, argv, &x)==0 ){
762 sqlite3_result_double(context, x.iJD/86400000.0);
767 ** datetime( TIMESTRING, MOD, MOD, ...)
769 ** Return YYYY-MM-DD HH:MM:SS
771 static void datetimeFunc(
772 sqlite3_context *context,
777 if( isDate(context, argc, argv, &x)==0 ){
780 sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d %02d:%02d:%02d",
781 x.Y, x.M, x.D, x.h, x.m, (int)(x.s));
782 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
787 ** time( TIMESTRING, MOD, MOD, ...)
791 static void timeFunc(
792 sqlite3_context *context,
797 if( isDate(context, argc, argv, &x)==0 ){
800 sqlite3_snprintf(sizeof(zBuf), zBuf, "%02d:%02d:%02d", x.h, x.m, (int)x.s);
801 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
806 ** date( TIMESTRING, MOD, MOD, ...)
810 static void dateFunc(
811 sqlite3_context *context,
816 if( isDate(context, argc, argv, &x)==0 ){
819 sqlite3_snprintf(sizeof(zBuf), zBuf, "%04d-%02d-%02d", x.Y, x.M, x.D);
820 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
825 ** strftime( FORMAT, TIMESTRING, MOD, MOD, ...)
827 ** Return a string described by FORMAT. Conversions as follows:
830 ** %f ** fractional seconds SS.SSS
832 ** %j day of year 000-366
833 ** %J ** Julian day number
836 ** %s seconds since 1970-01-01
838 ** %w day of week 0-6 sunday==0
839 ** %W week of year 00-53
843 static void strftimeFunc(
844 sqlite3_context *context,
853 const char *zFmt = (const char*)sqlite3_value_text(argv[0]);
855 if( zFmt==0 || isDate(context, argc-1, argv+1, &x) ) return;
856 db = sqlite3_context_db_handle(context);
857 for(i=0, n=1; zFmt[i]; i++, n++){
885 return; /* ERROR. return a NULL */
890 if( n<sizeof(zBuf) ){
892 }else if( n>db->aLimit[SQLITE_LIMIT_LENGTH] ){
893 sqlite3_result_error_toobig(context);
896 z = sqlite3DbMallocRaw(db, n);
898 sqlite3_result_error_nomem(context);
904 for(i=j=0; zFmt[i]; i++){
910 case 'd': sqlite3_snprintf(3, &z[j],"%02d",x.D); j+=2; break;
913 if( s>59.999 ) s = 59.999;
914 sqlite3_snprintf(7, &z[j],"%06.3f", s);
918 case 'H': sqlite3_snprintf(3, &z[j],"%02d",x.h); j+=2; break;
919 case 'W': /* Fall thru */
921 int nDay; /* Number of days since 1st day of year */
927 nDay = (x.iJD - y.iJD)/86400000.0 + 0.5;
929 int wd; /* 0=Monday, 1=Tuesday, ... 6=Sunday */
930 wd = ((x.iJD+43200000)/86400000) % 7;
931 sqlite3_snprintf(3, &z[j],"%02d",(nDay+7-wd)/7);
934 sqlite3_snprintf(4, &z[j],"%03d",nDay+1);
940 sqlite3_snprintf(20, &z[j],"%.16g",x.iJD/86400000.0);
944 case 'm': sqlite3_snprintf(3, &z[j],"%02d",x.M); j+=2; break;
945 case 'M': sqlite3_snprintf(3, &z[j],"%02d",x.m); j+=2; break;
947 sqlite3_snprintf(30,&z[j],"%d",
948 (int)(x.iJD/1000.0 - 210866760000.0));
952 case 'S': sqlite3_snprintf(3,&z[j],"%02d",(int)x.s); j+=2; break;
953 case 'w': z[j++] = (((x.iJD+129600000)/86400000) % 7) + '0'; break;
954 case 'Y': sqlite3_snprintf(5,&z[j],"%04d",x.Y); j+=strlen(&z[j]);break;
955 default: z[j++] = '%'; break;
960 sqlite3_result_text(context, z, -1,
961 z==zBuf ? SQLITE_TRANSIENT : SQLITE_DYNAMIC);
967 ** This function returns the same value as time('now').
969 static void ctimeFunc(
970 sqlite3_context *context,
974 timeFunc(context, 0, 0);
980 ** This function returns the same value as date('now').
982 static void cdateFunc(
983 sqlite3_context *context,
987 dateFunc(context, 0, 0);
991 ** current_timestamp()
993 ** This function returns the same value as datetime('now').
995 static void ctimestampFunc(
996 sqlite3_context *context,
1000 datetimeFunc(context, 0, 0);
1002 #endif /* !defined(SQLITE_OMIT_DATETIME_FUNCS) */
1004 #ifdef SQLITE_OMIT_DATETIME_FUNCS
1006 ** If the library is compiled to omit the full-scale date and time
1007 ** handling (to get a smaller binary), the following minimal version
1008 ** of the functions current_time(), current_date() and current_timestamp()
1009 ** are included instead. This is to support column declarations that
1010 ** include "DEFAULT CURRENT_TIME" etc.
1012 ** This function uses the C-library functions time(), gmtime()
1013 ** and strftime(). The format string to pass to strftime() is supplied
1014 ** as the user-data for the function.
1016 static void currentTimeFunc(
1017 sqlite3_context *context,
1019 sqlite3_value **argv
1022 char *zFormat = (char *)sqlite3_user_data(context);
1027 db = sqlite3_context_db_handle(context);
1028 sqlite3OsCurrentTime(db->pVfs, &rT);
1029 t = 86400.0*(rT - 2440587.5) + 0.5;
1030 #ifdef HAVE_GMTIME_R
1033 gmtime_r(&t, &sNow);
1034 strftime(zBuf, 20, zFormat, &sNow);
1039 sqlite3_mutex_enter(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
1041 strftime(zBuf, 20, zFormat, pTm);
1042 sqlite3_mutex_leave(sqlite3MutexAlloc(SQLITE_MUTEX_STATIC_MASTER));
1046 sqlite3_result_text(context, zBuf, -1, SQLITE_TRANSIENT);
1051 ** This function registered all of the above C functions as SQL
1052 ** functions. This should be the only routine in this file with
1053 ** external linkage.
1055 void sqlite3RegisterDateTimeFunctions(void){
1056 static SQLITE_WSD FuncDef aDateTimeFuncs[] = {
1057 #ifndef SQLITE_OMIT_DATETIME_FUNCS
1058 FUNCTION(julianday, -1, 0, 0, juliandayFunc ),
1059 FUNCTION(date, -1, 0, 0, dateFunc ),
1060 FUNCTION(time, -1, 0, 0, timeFunc ),
1061 FUNCTION(datetime, -1, 0, 0, datetimeFunc ),
1062 FUNCTION(strftime, -1, 0, 0, strftimeFunc ),
1063 FUNCTION(current_time, 0, 0, 0, ctimeFunc ),
1064 FUNCTION(current_timestamp, 0, 0, 0, ctimestampFunc),
1065 FUNCTION(current_date, 0, 0, 0, cdateFunc ),
1067 FUNCTION(current_time, 0, "%H:%M:%S", 0, currentTimeFunc),
1068 FUNCTION(current_timestamp, 0, "%Y-%m-%d", 0, currentTimeFunc),
1069 FUNCTION(current_date, 0, "%Y-%m-%d %H:%M:%S", 0, currentTimeFunc),
1073 FuncDefHash *pHash = &GLOBAL(FuncDefHash, sqlite3GlobalFunctions);
1074 FuncDef *aFunc = (FuncDef*)&GLOBAL(FuncDef, aDateTimeFuncs);
1076 for(i=0; i<ArraySize(aDateTimeFuncs); i++){
1077 sqlite3FuncDefInsert(pHash, &aFunc[i]);