~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
/* Copyright (C) 2000 MySQL 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; version 2 of the License.
6
7
   This program is distributed in the hope that it will be useful,
8
   but WITHOUT ANY WARRANTY; without even the implied warranty of
9
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10
   GNU General Public License for more details.
11
12
   You should have received a copy of the GNU General Public License
13
   along with this program; if not, write to the Free Software
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
16
/* Get date in a printable form: yyyy-mm-dd hh:mm:ss */
17
18
#include "mysys_priv.h"
19
#include <m_string.h>
20
21
/*
22
  get date as string
23
24
  SYNOPSIS
25
    get_date()
26
    to   - string where date will be written
27
    flag - format of date:
28
	  If flag & GETDATE_TIME	Return date and time
29
	  If flag & GETDATE_SHORT_DATE	Return short date format YYMMDD
30
	  If flag & GETDATE_HHMMSSTIME	Return time in HHMMDD format.
31
	  If flag & GETDATE_GMT		Date/time in GMT
32
	  If flag & GETDATE_FIXEDLENGTH	Return fixed length date/time
33
    date - for conversion
34
*/
35
36
37
void get_date(register char * to, int flag, time_t date)
38
{
39
   register struct tm *start_time;
40
   time_t skr;
41
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
42
  struct tm tm_tmp;
43
#endif
44
45
   skr=date ? (time_t) date : my_time(0);
46
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
47
   if (flag & GETDATE_GMT)
48
     localtime_r(&skr,&tm_tmp);
49
   else
50
     gmtime_r(&skr,&tm_tmp);
51
   start_time= &tm_tmp;
52
#else
53
   if (flag & GETDATE_GMT)
54
     start_time= localtime(&skr);
55
   else
56
     start_time= gmtime(&skr);
57
#endif
58
   if (flag & GETDATE_SHORT_DATE)
59
     sprintf(to,"%02d%02d%02d",
60
	     start_time->tm_year % 100,
61
	     start_time->tm_mon+1,
62
	     start_time->tm_mday);
63
   else
64
     sprintf(to, ((flag & GETDATE_FIXEDLENGTH) ?
65
		  "%4d-%02d-%02d" : "%d-%02d-%02d"),
66
	     start_time->tm_year+1900,
67
	     start_time->tm_mon+1,
68
	     start_time->tm_mday);
69
   if (flag & GETDATE_DATE_TIME)
70
     sprintf(strend(to),
71
	     ((flag & GETDATE_FIXEDLENGTH) ?
72
	      " %02d:%02d:%02d" : " %2d:%02d:%02d"),
73
	     start_time->tm_hour,
74
	     start_time->tm_min,
75
	     start_time->tm_sec);
76
   else if (flag & GETDATE_HHMMSSTIME)
77
     sprintf(strend(to),"%02d%02d%02d",
78
	     start_time->tm_hour,
79
	     start_time->tm_min,
80
	     start_time->tm_sec);
81
} /* get_date */