time.cc
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:18k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /* Functions to handle date and time */
  17. #include "mysql_priv.h"
  18. #include <m_ctype.h>
  19. static ulong const days_at_timestart=719528; /* daynr at 1970.01.01 */
  20. uchar *days_in_month= (uchar*) "373437363736373736373637";
  21. /* Init some variabels neaded when using my_local_time */
  22. /* Currently only my_time_zone is inited */
  23. static long my_time_zone=0;
  24. pthread_mutex_t LOCK_timezone;
  25. void init_time(void)
  26. {
  27.   time_t seconds;
  28.   struct tm *l_time,tm_tmp;;
  29.   TIME my_time;
  30.   seconds= (time_t) time((time_t*) 0);
  31.   localtime_r(&seconds,&tm_tmp);
  32.   l_time= &tm_tmp;
  33.   my_time_zone=0;
  34.   my_time.year= (uint) l_time->tm_year+1900;
  35.   my_time.month= (uint) l_time->tm_mon+1;
  36.   my_time.day= (uint) l_time->tm_mday;
  37.   my_time.hour= (uint) l_time->tm_hour;
  38.   my_time.minute= (uint) l_time->tm_min;
  39.   my_time.second= (uint) l_time->tm_sec;
  40.   VOID(my_gmt_sec(&my_time)); /* Init my_time_zone */
  41. }
  42. /*
  43.   Convert current time to sec. since 1970.01.01 
  44.   This code handles also day light saving time.
  45.   The idea is to cache the time zone (including daylight saving time)
  46.   for the next call to make things faster.
  47.   
  48. */
  49. long my_gmt_sec(TIME *t)
  50. {
  51.   uint loop;
  52.   time_t tmp;
  53.   struct tm *l_time,tm_tmp;
  54.   long diff;
  55.   if (t->hour >= 24)
  56.   { /* Fix for time-loop */
  57.     t->day+=t->hour/24;
  58.     t->hour%=24;
  59.   }
  60.   pthread_mutex_lock(&LOCK_timezone);
  61.   tmp=(time_t) ((calc_daynr((uint) t->year,(uint) t->month,(uint) t->day) -
  62.  (long) days_at_timestart)*86400L + (long) t->hour*3600L +
  63. (long) (t->minute*60 + t->second)) + (time_t) my_time_zone;
  64.   localtime_r(&tmp,&tm_tmp);
  65.   l_time=&tm_tmp;
  66.   for (loop=0;
  67.        loop < 3 &&
  68.  (t->hour != (uint) l_time->tm_hour ||
  69.   t->minute != (uint) l_time->tm_min);
  70.        loop++)
  71.   { /* One check should be enough ? */
  72.     /* Get difference in days */
  73.     int days= t->day - l_time->tm_mday;
  74.     if (days < -1)
  75.       days= 1; // Month has wrapped
  76.     else if (days > 1)
  77.       days= -1;
  78.     diff=(3600L*(long) (days*24+((int) t->hour - (int) l_time->tm_hour)) +
  79.   (long) (60*((int) t->minute - (int) l_time->tm_min)));
  80.     my_time_zone+=diff;
  81.     tmp+=(time_t) diff;
  82.     localtime_r(&tmp,&tm_tmp);
  83.     l_time=&tm_tmp;
  84.   }
  85.   /* Fix that if we are in the not existing daylight saving time hour
  86.      we move the start of the next real hour */
  87.   if (loop == 3 && t->hour != (uint) l_time->tm_hour)
  88.   {
  89.     int days= t->day - l_time->tm_mday;
  90.     if (days < -1)
  91.       days=1; // Month has wrapped
  92.     else if (days > 1)
  93.       days= -1;
  94.     diff=(3600L*(long) (days*24+((int) t->hour - (int) l_time->tm_hour))+
  95.   (long) (60*((int) t->minute - (int) l_time->tm_min)));
  96.     if (diff == 3600)
  97.       tmp+=3600 - t->minute*60 - t->second; // Move to next hour
  98.     else if (diff == -3600)
  99.       tmp-=t->minute*60 + t->second; // Move to next hour
  100.   }
  101.   if ((my_time_zone >=0 ? my_time_zone: -my_time_zone) > 3600L*12)
  102.     my_time_zone=0; /* Wrong date */
  103.   pthread_mutex_unlock(&LOCK_timezone);
  104.   return (long) tmp;
  105. } /* my_gmt_sec */
  106. /* Some functions to calculate dates */
  107. /* Calculate nr of day since year 0 in new date-system (from 1615) */
  108. long calc_daynr(uint year,uint month,uint day)
  109. {
  110.   long delsum;
  111.   int temp;
  112.   DBUG_ENTER("calc_daynr");
  113.   if (year == 0 && month == 0 && day == 0)
  114.     DBUG_RETURN(0); /* Skipp errors */
  115.   if (year < 200)
  116.   {
  117.     if ((year=year+1900) < 1900+YY_PART_YEAR)
  118.       year+=100;
  119.   }
  120.   delsum= (long) (365L * year+ 31*(month-1) +day);
  121.   if (month <= 2)
  122.       year--;
  123.   else
  124.     delsum-= (long) (month*4+23)/10;
  125.   temp=(int) ((year/100+1)*3)/4;
  126.   DBUG_PRINT("exit",("year: %d  month: %d  day: %d -> daynr: %ld",
  127.      year+(month <= 2),month,day,delsum+year/4-temp));
  128.   DBUG_RETURN(delsum+(int) year/4-temp);
  129. } /* calc_daynr */
  130. /* Calc weekday from daynr */
  131. /* Returns 0 for monday, 1 for tuesday .... */
  132. int calc_weekday(long daynr,bool sunday_first_day_of_week)
  133. {
  134.   DBUG_ENTER("calc_weekday");
  135.   DBUG_RETURN ((int) ((daynr + 5L + (sunday_first_day_of_week ? 1L : 0L)) % 7));
  136. }
  137. /* Calc days in one year. works with 0 <= year <= 99 */
  138. uint calc_days_in_year(uint year)
  139. {
  140.   return (year & 3) == 0 && (year%100 || (year%400 == 0 && year)) ?
  141.     366 : 365;
  142. }
  143. /* Calculate week.  If 'with_year' is not set, then return a week 0-53, where
  144.    0 means that it's the last week of the previous year.
  145.    If 'with_year' is set then the week will always be in the range 1-53 and
  146.    the year out parameter will contain the year for the week */
  147. uint calc_week(TIME *l_time, bool with_year, bool sunday_first_day_of_week,
  148.        uint *year)
  149. {
  150.   uint days;
  151.   ulong daynr=calc_daynr(l_time->year,l_time->month,l_time->day);
  152.   ulong first_daynr=calc_daynr(l_time->year,1,1);
  153.   uint weekday=calc_weekday(first_daynr,sunday_first_day_of_week);
  154.   *year=l_time->year;
  155.   if (l_time->month == 1 && weekday >= 4 && l_time->day <= 7-weekday)
  156.   {
  157.     /* Last week of the previous year */
  158.     if (!with_year)
  159.       return 0;
  160.     with_year=0; // Don't check the week again
  161.     (*year)--;
  162.     first_daynr-= (days=calc_days_in_year(*year));
  163.     weekday= (weekday + 53*7- days) % 7;
  164.   }
  165.   if (weekday >= 4)
  166.     days= daynr - (first_daynr+ (7-weekday));
  167.   else
  168.     days= daynr - (first_daynr - weekday);
  169.   if (with_year && days >= 52*7)
  170.   {
  171.     /* Check if we are on the first week of the next year (or week 53) */
  172.     weekday= (weekday + calc_days_in_year(*year)) % 7;
  173.     if (weekday < 4)
  174.     { // We are at first week on next year
  175.       (*year)++;
  176.       return 1;
  177.     }
  178.   }
  179.   return days/7+1;
  180. }
  181. /* Change a daynr to year, month and day */
  182. /* Daynr 0 is returned as date 00.00.00 */
  183. void get_date_from_daynr(long daynr,uint *ret_year,uint *ret_month,
  184.  uint *ret_day)
  185. {
  186.   uint year,temp,leap_day,day_of_year,days_in_year;
  187.   uchar *month_pos;
  188.   DBUG_ENTER("get_date_from_daynr");
  189.   if (daynr <= 365L || daynr >= 3652500)
  190.   { /* Fix if wrong daynr */
  191.     *ret_year= *ret_month = *ret_day =0;
  192.   }
  193.   else
  194.   {
  195.     year= (uint) (daynr*100 / 36525L);
  196.     temp=(((year-1)/100+1)*3)/4;
  197.     day_of_year=(uint) (daynr - (long) year * 365L) - (year-1)/4 +temp;
  198.     while (day_of_year > (days_in_year= calc_days_in_year(year)))
  199.     {
  200.       day_of_year-=days_in_year;
  201.       (year)++;
  202.     }
  203.     leap_day=0;
  204.     if (days_in_year == 366)
  205.     {
  206.       if (day_of_year > 31+28)
  207.       {
  208. day_of_year--;
  209. if (day_of_year == 31+28)
  210.   leap_day=1; /* Handle leapyears leapday */
  211.       }
  212.     }
  213.     *ret_month=1;
  214.     for (month_pos= days_in_month ;
  215.  day_of_year > (uint) *month_pos ;
  216.  day_of_year-= *(month_pos++), (*ret_month)++)
  217.       ;
  218.     *ret_year=year;
  219.     *ret_day=day_of_year+leap_day;
  220.   }
  221.   DBUG_VOID_RETURN;
  222. }
  223. /* find date from string and put it in vektor
  224. Input: pos = "YYMMDD" OR "YYYYMMDD" in any order or
  225. "xxxxx YYxxxMMxxxDD xxxx" where xxx is anything exept
  226. a number. Month or day mustn't exeed 2 digits, year may be 4 digits.
  227. */
  228. #ifdef NOT_NEEDED
  229. void find_date(string pos,uint *vek,uint flag)
  230. {
  231.   uint length,value;
  232.   string start;
  233.   DBUG_ENTER("find_date");
  234.   DBUG_PRINT("enter",("pos: '%s'  flag: %d",pos,flag));
  235.   bzero((char*) vek,sizeof(int)*4);
  236.   while (*pos && !isdigit(*pos))
  237.     pos++;
  238.   length=(uint) strlen(pos);
  239.   for (uint i=0 ; i< 3; i++)
  240.   {
  241.     start=pos; value=0;
  242.     while (isdigit(pos[0]) &&
  243.    ((pos-start) < 2 || ((pos-start) < 4 && length >= 8 &&
  244. !(flag & 3))))
  245.     {
  246.       value=value*10 + (uint) (uchar) (*pos - '0');
  247.       pos++;
  248.     }
  249.     vek[flag & 3]=value; flag>>=2;
  250.     while (*pos && (ispunct(*pos) || isspace(*pos)))
  251.       pos++;
  252.   }
  253.   DBUG_PRINT("exit",("year: %d  month: %d  day: %d",vek[0],vek[1],vek[2]));
  254.   DBUG_VOID_RETURN;
  255. } /* find_date */
  256. /* Outputs YYMMDD if input year < 100 or YYYYMMDD else */
  257. static long calc_daynr_from_week(uint year,uint week,uint day)
  258. {
  259.   long daynr;
  260.   int weekday;
  261.   daynr=calc_daynr(year,1,1);
  262.   if ((weekday= calc_weekday(daynr,0)) >= 3)
  263.     daynr+= (7-weekday);
  264.   else
  265.     daynr-=weekday;
  266.   return (daynr+week*7+day-8);
  267. }
  268. void convert_week_to_date(string date,uint flag,uint *res_length)
  269. {
  270.   string format;
  271.   uint year,vek[4];
  272.   find_date(date,vek,(uint) (1*4+2*16)); /* YY-WW-DD */
  273.   year=vek[0];
  274.   get_date_from_daynr(calc_daynr_from_week(vek[0],vek[1],vek[2]),
  275.       &vek[0],&vek[1],&vek[2]);
  276.   *res_length=8;
  277.   format="%04d%02d%02d";
  278.   if (year < 100)
  279.   {
  280.     vek[0]= vek[0]%100;
  281.     *res_length=6;
  282.     format="%02d%02d%02d";
  283.   }
  284.   sprintf(date,format,vek[flag & 3],vek[(flag >> 2) & 3],
  285.   vek[(flag >> 4) & 3]);
  286.   return;
  287. }
  288. /* returns YYWWDD or YYYYWWDD according to input year */
  289. /* flag only reflects format of input date */
  290. void convert_date_to_week(string date,uint flag,uint *res_length)
  291. {
  292.   uint vek[4],weekday,days,year,week,day;
  293.   long daynr,first_daynr;
  294.   char buff[256],*format;
  295.   if (! date[0])
  296.   {
  297.     get_date(buff,0,0L); /* Use current date */
  298.     find_date(buff+2,vek,(uint) (1*4+2*16)); /* YY-MM-DD */
  299.   }
  300.   else
  301.     find_date(date,vek,flag);
  302.   year= vek[0];
  303.   daynr=      calc_daynr(year,vek[1],vek[2]);
  304.   first_daynr=calc_daynr(year,1,1);
  305. /* Caculate year and first daynr of year */
  306.   if (vek[1] == 1 && (weekday=calc_weekday(first_daynr,0)) >= 3 &&
  307.       vek[2] <= 7-weekday)
  308.   {
  309.     if (!year--)
  310.       year=99;
  311.     first_daynr=first_daynr-calc_days_in_year(year);
  312.   }
  313.   else if (vek[1] == 12 &&
  314.    (weekday=calc_weekday(first_daynr+calc_days_in_year(year)),0) < 3 &&
  315.    vek[2] > 31-weekday)
  316.   {
  317.     first_daynr=first_daynr+calc_days_in_year(year);
  318.     if (year++ == 99)
  319.       year=0;
  320.   }
  321. /* Calulate daynr of first day of week 1 */
  322.   if ((weekday= calc_weekday(first_daynr,0)) >= 3)
  323.     first_daynr+= (7-weekday);
  324.   else
  325.     first_daynr-=weekday;
  326.   days=(int) (daynr-first_daynr);
  327.   week=days/7+1 ; day=calc_weekday(daynr,0)+1;
  328.   *res_length=8;
  329.   format="%04d%02d%02d";
  330.   if (year < 100)
  331.   {
  332.     *res_length=6;
  333.     format="%02d%02d%02d";
  334.   }
  335.   sprintf(date,format,year,week,day);
  336.   return;
  337. }
  338. #endif
  339. /* Functions to handle periods */
  340. ulong convert_period_to_month(ulong period)
  341. {
  342.   ulong a,b;
  343.   if (period == 0)
  344.     return 0L;
  345.   if ((a=period/100) < YY_PART_YEAR)
  346.     a+=2000;
  347.   else if (a < 100)
  348.     a+=1900;
  349.   b=period%100;
  350.   return a*12+b-1;
  351. }
  352. ulong convert_month_to_period(ulong month)
  353. {
  354.   ulong year;
  355.   if (month == 0L)
  356.     return 0L;
  357.   if ((year=month/12) < 100)
  358.   {
  359.     year+=(year < YY_PART_YEAR) ? 2000 : 1900;
  360.   }
  361.   return year*100+month%12+1;
  362. }
  363. /*****************************************************************************
  364. ** convert a timestamp string to a TIME value.
  365. ** At least the following formats are recogniced (based on number of digits)
  366. ** YYMMDD, YYYYMMDD, YYMMDDHHMMSS, YYYYMMDDHHMMSS
  367. ** YY-MM-DD, YYYY-MM-DD, YY-MM-DD HH.MM.SS
  368. ** Returns the type of string
  369. *****************************************************************************/
  370. timestamp_type
  371. str_to_TIME(const char *str, uint length, TIME *l_time,bool fuzzy_date)
  372. {
  373.   uint field_length,year_length,digits,i,number_of_fields,date[7];
  374.   bool date_used=0;
  375.   const char *pos;
  376.   const char *end=str+length;
  377.   DBUG_ENTER("str_to_TIME");
  378.   DBUG_PRINT("enter",("str: %.*s",length,str));
  379.   for (; !isdigit(*str) && str != end ; str++) ; // Skipp garbage
  380.   if (str == end)
  381.     DBUG_RETURN(TIMESTAMP_NONE);
  382.   /*
  383.   ** calculate first number of digits.
  384.   ** If length= 8 or >= 14 then year is of format YYYY.
  385.      (YYYY-MM-DD,  YYYYMMDD, YYYYYMMDDHHMMSS)
  386.   */
  387.   for (pos=str; pos != end && isdigit(*pos) ; pos++) ;
  388.   digits= (uint) (pos-str);
  389.   year_length= (digits == 4 || digits == 8 || digits >= 14) ? 4 : 2;
  390.   field_length=year_length-1;
  391.   for (i=0 ; i < 6 && str != end && isdigit(*str) ; i++)
  392.   {
  393.     uint tmp_value=(uint) (uchar) (*str++ - '0');
  394.     while (str != end && isdigit(str[0]) && field_length--)
  395.     {
  396.       tmp_value=tmp_value*10 + (uint) (uchar) (*str - '0');
  397.       str++;
  398.     }
  399.     if ((date[i]=tmp_value))
  400.       date_used=1; // Found something
  401.     if (i == 2 && str != end && *str == 'T')
  402.       str++;    // ISO8601:  CCYYMMDDThhmmss
  403.     else
  404.     {
  405.       while (str != end && (ispunct(*str) || isspace(*str)))
  406.       {
  407. // Only allow space between days and hours
  408. if (isspace(*str) && i != 2)
  409.   DBUG_RETURN(TIMESTAMP_NONE);
  410. str++;
  411.       }
  412.     }
  413.     field_length=1; // Rest fields can only be 2
  414.   }
  415.   /* Handle second fractions */
  416.   if (i == 6 && (uint) (end-str) >= 2 && *str == '.' && isdigit(str[1]))
  417.   {
  418.     str++;
  419.     uint tmp_value=(uint) (uchar) (*str - '0');
  420.     field_length=3;
  421.     while (str++ != end && isdigit(str[0]) && field_length--)
  422.       tmp_value=tmp_value*10 + (uint) (uchar) (*str - '0');
  423.     date[6]=tmp_value;
  424.   }
  425.   else
  426.     date[6]=0;
  427.   if (year_length == 2)
  428.     date[0]+= (date[0] < YY_PART_YEAR ? 2000 : 1900);
  429.   number_of_fields=i;
  430.   while (i < 6)
  431.     date[i++]=0;
  432.   if (number_of_fields < 3 || !date_used || date[1] > 12 ||
  433.       date[2] > 31 || date[3] > 23 || date[4] > 59 || date[5] > 59 ||
  434.       !fuzzy_date && (date[1] == 0 || date[2] == 0))
  435.   {
  436.     current_thd->cuted_fields++;
  437.     DBUG_RETURN(TIMESTAMP_NONE);
  438.   }
  439.   if (str != end && current_thd->count_cuted_fields)
  440.   {
  441.     for ( ; str != end ; str++)
  442.     {
  443.       if (!isspace(*str))
  444.       {
  445. current_thd->cuted_fields++;
  446. break;
  447.       }
  448.     }
  449.   }
  450.   l_time->year=  date[0];
  451.   l_time->month= date[1];
  452.   l_time->day=  date[2];
  453.   l_time->hour=  date[3];
  454.   l_time->minute=date[4];
  455.   l_time->second=date[5];
  456.   l_time->second_part=date[6];
  457.   DBUG_RETURN(l_time->time_type=
  458.       (number_of_fields <= 3 ? TIMESTAMP_DATE : TIMESTAMP_FULL));
  459. }
  460. time_t str_to_timestamp(const char *str,uint length)
  461. {
  462.   TIME l_time;
  463.   if (str_to_TIME(str,length,&l_time,0) == TIMESTAMP_NONE)
  464.     return(0);
  465.   if (l_time.year >= TIMESTAMP_MAX_YEAR || l_time.year < 1900+YY_PART_YEAR)
  466.   {
  467.     current_thd->cuted_fields++;
  468.     return(0);
  469.   }
  470.   return(my_gmt_sec(&l_time));
  471. }
  472. longlong str_to_datetime(const char *str,uint length,bool fuzzy_date)
  473. {
  474.   TIME l_time;
  475.   if (str_to_TIME(str,length,&l_time,fuzzy_date) == TIMESTAMP_NONE)
  476.     return(0);
  477.   return (longlong) (l_time.year*LL(10000000000) +
  478.      l_time.month*LL(100000000)+
  479.      l_time.day*LL(1000000)+
  480.      l_time.hour*LL(10000)+
  481.      (longlong) (l_time.minute*100+l_time.second));
  482. }
  483. /*****************************************************************************
  484. ** convert a time string to a (ulong) value.
  485. ** Can use all full timestamp formats and
  486. ** [-] DAYS [H]H:MM:SS, [H]H:MM:SS, [M]M:SS, [H]HMMSS, [M]MSS or [S]S
  487. ** There may be an optional [.second_part] after seconds
  488. *****************************************************************************/
  489. bool str_to_time(const char *str,uint length,TIME *l_time)
  490. {
  491.   long date[5],value;
  492.   const char *end=str+length;
  493.   bool found_days,found_hours;
  494.   uint state;
  495.   l_time->neg=0;
  496.   for (; !isdigit(*str) && *str != '-' && str != end ; str++)
  497.     length--;
  498.   if (str != end && *str == '-')
  499.   {
  500.     l_time->neg=1;
  501.     str++;
  502.     length--;
  503.   }
  504.   if (str == end)
  505.     return 1;
  506.   /* Check first if this is a full TIMESTAMP */
  507.   if (length >= 12)
  508.   { // Probably full timestamp
  509.     if (str_to_TIME(str,length,l_time,1) == TIMESTAMP_FULL)
  510.       return 0; // Was an ok timestamp
  511.   }
  512.   /* Not a timestamp. Try to get this as a DAYS_TO_SECOND string */
  513.   for (value=0; str != end && isdigit(*str) ; str++)
  514.     value=value*10L + (long) (*str - '0');
  515.   if (*str == ' ')
  516.   {
  517.     while (++str != end && str[0] == ' ') ;
  518.     str--;
  519.   }
  520.   LINT_INIT(state);
  521.   found_days=found_hours=0;
  522.   if ((uint) (end-str) > 1 && (*str == ' ' && isdigit(str[1])))
  523.   { // days !
  524.     date[0]=value;
  525.     state=1; // Assume next is hours
  526.     found_days=1;
  527.     str++; // Skipp space;
  528.   }
  529.   else if ((end-str) > 1 && *str == ':' && isdigit(str[1]))
  530.   {
  531.     date[0]=0; // Assume we found hours
  532.     date[1]=value;
  533.     state=2;
  534.     found_hours=1;
  535.     str++; // skipp ':'
  536.   }
  537.   else
  538.   {
  539.     /* String given as one number; assume HHMMSS format */
  540.     date[0]= 0;
  541.     date[1]= value/10000;
  542.     date[2]= value/100 % 100;
  543.     date[3]= value % 100;
  544.     state=4;
  545.     goto fractional;
  546.   }
  547.   /* Read hours, minutes and seconds */
  548.   for (;;)
  549.   {
  550.     for (value=0; str != end && isdigit(*str) ; str++)
  551.       value=value*10L + (long) (*str - '0');
  552.     date[state++]=value;
  553.     if (state == 4 || (end-str) < 2 || *str != ':' || !isdigit(str[1]))
  554.       break;
  555.     str++; // Skipp ':'
  556.   }
  557.   if (state != 4)
  558.   { // Not HH:MM:SS
  559.     /* Fix the date to assume that seconds was given */
  560.     if (!found_hours && !found_days)
  561.     {
  562.       bmove_upp((char*) (date+4), (char*) (date+state),
  563. sizeof(long)*(state-1));
  564.       bzero((char*) date, sizeof(long)*(4-state));
  565.     }
  566.     else
  567.       bzero((char*) (date+state), sizeof(long)*(4-state));
  568.   }
  569.  fractional:
  570.   /* Get fractional second part */
  571.   if ((end-str) >= 2 && *str == '.' && isdigit(str[1]))
  572.   {
  573.     uint field_length=3;
  574.     str++; value=(uint) (uchar) (*str - '0');
  575.     while (++str != end && isdigit(str[0]) && field_length--)
  576.       value=value*10 + (uint) (uchar) (*str - '0');
  577.     date[4]=value;
  578.   }
  579.   else
  580.     date[4]=0;
  581.   /* Some simple checks */
  582.   if (date[2] >= 60 || date[3] >= 60)
  583.   {
  584.     current_thd->cuted_fields++;
  585.     return 1;
  586.   }
  587.   l_time->month=0;
  588.   l_time->day=date[0];
  589.   l_time->hour=date[1];
  590.   l_time->minute=date[2];
  591.   l_time->second=date[3];
  592.   l_time->second_part=date[4];
  593.   /* Check if there is garbage at end of the TIME specification */
  594.   if (str != end && current_thd->count_cuted_fields)
  595.   {
  596.     do
  597.     {
  598.       if (!isspace(*str))
  599.       {
  600. current_thd->cuted_fields++;
  601. break;
  602.       }
  603.     } while (++str != end);
  604.   }
  605.   return 0;
  606. }