~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"
212.5.18 by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype.
19
#include <mystrings/m_string.h>
612.2.6 by Monty Taylor
OpenSolaris builds.
20
#include <stdio.h>
1 by brian
clean slate
21
22
/*
23
  get date as string
24
25
  SYNOPSIS
26
    get_date()
27
    to   - string where date will be written
28
    flag - format of date:
29
	  If flag & GETDATE_TIME	Return date and time
30
	  If flag & GETDATE_SHORT_DATE	Return short date format YYMMDD
31
	  If flag & GETDATE_HHMMSSTIME	Return time in HHMMDD format.
32
	  If flag & GETDATE_GMT		Date/time in GMT
33
	  If flag & GETDATE_FIXEDLENGTH	Return fixed length date/time
34
    date - for conversion
35
*/
36
37
38
void get_date(register char * to, int flag, time_t date)
39
{
40
   register struct tm *start_time;
41
   time_t skr;
42
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
43
  struct tm tm_tmp;
44
#endif
45
685.3.2 by Toru Maesaka
Removed my_time() and added error checking
46
   skr= date ? (time_t) date : time(0);
1 by brian
clean slate
47
#if defined(HAVE_LOCALTIME_R) && defined(_REENTRANT)
48
   if (flag & GETDATE_GMT)
49
     localtime_r(&skr,&tm_tmp);
50
   else
51
     gmtime_r(&skr,&tm_tmp);
52
   start_time= &tm_tmp;
53
#else
54
   if (flag & GETDATE_GMT)
55
     start_time= localtime(&skr);
56
   else
57
     start_time= gmtime(&skr);
58
#endif
59
   if (flag & GETDATE_SHORT_DATE)
60
     sprintf(to,"%02d%02d%02d",
61
	     start_time->tm_year % 100,
62
	     start_time->tm_mon+1,
63
	     start_time->tm_mday);
64
   else
65
     sprintf(to, ((flag & GETDATE_FIXEDLENGTH) ?
66
		  "%4d-%02d-%02d" : "%d-%02d-%02d"),
67
	     start_time->tm_year+1900,
68
	     start_time->tm_mon+1,
69
	     start_time->tm_mday);
70
   if (flag & GETDATE_DATE_TIME)
376 by Brian Aker
strend remove
71
     sprintf(strchr(to, '\0'),
1 by brian
clean slate
72
	     ((flag & GETDATE_FIXEDLENGTH) ?
73
	      " %02d:%02d:%02d" : " %2d:%02d:%02d"),
74
	     start_time->tm_hour,
75
	     start_time->tm_min,
76
	     start_time->tm_sec);
77
   else if (flag & GETDATE_HHMMSSTIME)
376 by Brian Aker
strend remove
78
     sprintf(strchr(to, '\0'),"%02d%02d%02d",
1 by brian
clean slate
79
	     start_time->tm_hour,
80
	     start_time->tm_min,
81
	     start_time->tm_sec);
82
} /* get_date */