--- parser3/src/classes/date.C 2003/11/20 17:19:27 1.57 +++ parser3/src/classes/date.C 2004/01/30 09:39:45 1.59 @@ -5,7 +5,7 @@ Author: Alexandr Petrosian (http://paf.design.ru) */ -static const char * const IDENT_DATE_C="$Date: 2003/11/20 17:19:27 $"; +static const char * const IDENT_DATE_C="$Date: 2004/01/30 09:39:45 $"; #include "classes.h" #include "pa_vmethod_frame.h" @@ -60,12 +60,22 @@ static void _now(Request& r, MethodParam vdate.set_time(t); } -static int NN_year_to_NNNN(int year) { - if(year<70) // 0..69 -> 100..169 [2000..2069] - year+=100; - if(year>=1900) - year-=1900; - return year; +/// shrinked range: 1970/1/1 to 2038/1/1 +static int check_year(int iyear) { + if(iyear<1970 || iyear>2038) + throw Exception(0, + 0, + "year '%d' is out of valid range", iyear); + return iyear; +} + +static int ato_year(const char* syear) { + int iyear=atoi(syear); + if(iyear==0) + throw Exception(0, + 0, + "invalid year: '%s'", syear); + return check_year(iyear); } // 2002-04-25 18:14:00 @@ -104,7 +114,7 @@ static int NN_year_to_NNNN(int year) { goto date_part_set; } else hour=min=sec=0; // not YYYY- & not HH: = just YYYY - tmIn.tm_year=NN_year_to_NNNN(atoi(year)); + tmIn.tm_year=ato_year(year); tmIn.tm_mon=month?atoi(month)-1:0; tmIn.tm_mday=mday?atoi(mday):1; date_part_set: @@ -140,7 +150,7 @@ static void _create(Request& r, MethodPa } else if(params.count()>=2) { // ^create(y;m;d[;h[;m[;s]]]) tm tmIn; memset(&tmIn, 0, sizeof(tmIn)); tmIn.tm_isdst=-1; - tmIn.tm_year=NN_year_to_NNNN(params.as_int(0, "year must be int", r)); + tmIn.tm_year=check_year(params.as_int(0, "year must be int", r)); tmIn.tm_mon=params.as_int(1, "month must be int", r)-1; tmIn.tm_mday=params.count()>2?params.as_int(2, "mday must be int", r):1; if(params.count()>3) tmIn.tm_hour=params.as_int(3, "hour must be int", r); @@ -261,7 +271,7 @@ static Table& fill_month_days(Request& r memset(&tmIn, 0, sizeof(tmIn)); tmIn.tm_mday=1; tmIn.tm_mon=month; - tmIn.tm_yday=year-1900; + tmIn.tm_year=year-1900; time_t t=mktime(&tmIn); if(t<0) @@ -295,7 +305,7 @@ static Table& fill_month_days(Request& r memset(&tms, 0, sizeof(tmIn)); tms.tm_mday=_day; tms.tm_mon=month; - tms.tm_yday=year-1900; + tms.tm_year=year-1900; /*normalize*/mktime(&tms); @@ -341,7 +351,7 @@ static Table& fill_week_days(Request& r, tmIn.tm_hour=18; tmIn.tm_mday=day; tmIn.tm_mon=month; - tmIn.tm_yday=year-1900; + tmIn.tm_year=year-1900; time_t t=mktime(&tmIn); if(t<0)