Build fix.
[AROS.git] / rom / dos / datetostr.c
blobfc74a4fd3e3394919930ef511c711c8765c5453f
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Convert a DateTime struct into strings.
6 Lang: english
7 */
8 #include "dos_intern.h"
9 #include "date.h"
11 #ifdef TEST
12 # include <proto/dos.h>
13 # include <stdio.h>
14 # undef AROS_LH1
15 # undef DateToStr
16 # undef AROS_LHA
17 # define AROS_LH1(ret,name,arg,type,base,offset,libname) \
18 ret name (arg)
19 # define AROS_LHA(type,name,reg) type name
20 #endif
22 const ULONG Dos_DayTable[]=
24 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335
27 const char *const Dos_MonthTable[]=
29 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
30 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
33 const char *const Dos_WeekTable[]=
35 "Sunday", "Monday", "Tuesday", "Wednesday",
36 "Thursday", "Friday", "Saturday"
39 const char *const Dos_SubstDateTable[]=
41 "Tomorrow", "Today", "Yesterday"
44 /*****************************************************************************
46 NAME */
47 #include <dos/datetime.h>
48 #include <proto/dos.h>
50 AROS_LH1(BOOL, DateToStr,
52 /* SYNOPSIS */
53 AROS_LHA(struct DateTime *, datetime, D1),
55 /* LOCATION */
56 struct DosLibrary *, DOSBase, 124, Dos)
58 /* FUNCTION
59 DateToStr converts an AmigaDOS DateStamp to a human
60 readable ASCII string as requested by your settings in the
61 DateTime structure.
63 INPUTS
64 DateTime - a pointer to an initialized DateTime structure. The
65 DateTime structure should be initialized as follows:
67 dat_Stamp: The datestamp to convert to ascii
69 dat_Format: How to convert the datestamp into
70 dat_StrDate. Can be any of the following:
72 FORMAT_DOS: AmigaDOS format (dd-mmm-yy). This
73 is the default if you specify something other
74 than any entry in this list.
76 FORMAT_INT: International format (yy-mmm-dd).
78 FORMAT_USA: American format (mm-dd-yy).
80 FORMAT_CDN: Canadian format (dd-mm-yy).
82 FORMAT_DEF default format for locale.
85 dat_Flags: Modifies dat_Format. The only flag
86 used by this function is DTF_SUBST. If set, then
87 a string like "Today" or "Monday" is generated
88 instead of the normal format if possible.
90 dat_StrDay: Pointer to a buffer to receive the day of
91 the week string. (Monday, Tuesday, etc.). If null,
92 this string will not be generated.
94 dat_StrDate: Pointer to a buffer to receive the date
95 string, in the format requested by dat_Format,
96 subject to possible modifications by DTF_SUBST. If
97 null, this string will not be generated.
99 dat_StrTime: Pointer to a buffer to receive the time
100 of day string. If NULL, this will not be generated.
103 RESULT
104 A zero return indicates that the DateStamp was invalid, and could
105 not be converted. Non-zero indicates that the call succeeded.
107 NOTES
109 EXAMPLE
110 See below.
112 BUGS
114 SEE ALSO
115 DateStamp(), StrtoDate()
117 INTERNALS
119 *****************************************************************************/
121 AROS_LIBFUNC_INIT
123 /* Starting days of the months in a leap year. */
125 STRPTR buf, fstring;
126 const UBYTE * name;
128 LONG year, month, days, mins, tick, leap=1;
130 /* Read time. */
131 days=datetime->dat_Stamp.ds_Days;
132 mins=datetime->dat_Stamp.ds_Minute;
133 tick=datetime->dat_Stamp.ds_Tick;
136 Check if timestamp is correct. Correct timestamps lie
137 between the 1.1.1978 0:00:00 and the 11.7.5881588 23:59:59.
139 if(days<0||(ULONG)mins>=24*60||(ULONG)tick>=TICKS_PER_SECOND*60)
140 return DOSFALSE;
142 if(datetime->dat_StrDay!=NULL)
144 /* Get weekday name. The 1.1.1978 was a sunday. */
145 buf=datetime->dat_StrDay;
146 name=Dos_WeekTable[days%7];
147 while((*buf++=*name++)!=0)
151 if(datetime->dat_StrDate!=NULL)
154 Calculate year and the days in the year. Use a short method
155 if the date is between the 1.1.1978 and the 1.1.2100:
156 Every year even divisible by 4 in this time span is a leap year.
157 There are 92 normal and 30 leap years there.
159 if(days<92*365+30*366)
162 1976 was a leap year so use it as a base to divide the days
163 into 4-year blocks (each beginning with a leap year).
165 days+=366+365;
166 year=4*(days/(366+3*365))+1976;
167 days%=(366+3*365);
169 /* Now divide the 4-year blocks into single years. */
170 if (days>=366)
172 leap=0;
173 days--;
174 year+=days/365;
175 days%=365;
178 else
181 The rule for calendar calculations are:
182 1. Every year even divisible by 4 is a leap year.
183 2. As an exception from rule 1 every year even divisible by
184 100 is not.
185 3. Every year even divisible by 400 is a leap year as an
186 exception from rule 2.
187 So 1996, 2000 and 2004 are leap years - 1900 and 1999 are not.
189 Use 2000 as a base to devide the days into 400 year blocks,
190 those into 100 year blocks and so on...
192 days-=17*365+5*366;
193 year=400*(days/(97*366+303*365))+2000;
194 days%=(97*366+303*365);
196 if(days>=366)
198 leap=0;
199 days--;
200 year+=100*(days/(24*366+76*365));
201 days%=(24*366+76*365);
203 if(days>=365)
205 leap=1;
206 days++;
207 year+=4*(days/(366+3*365));
208 days%=(366+3*365);
210 if(days>=366)
212 leap=0;
213 days--;
214 year+=days/365;
215 days%=365;
221 The starting-day table assumes a leap year - so add one day if
222 the date is after february 28th and the year is no leap year.
224 if(!leap&&days>=31+28)
225 days++;
227 for(month=11;;month--)
229 if(days>=Dos_DayTable[month])
231 days-=Dos_DayTable[month];
232 break;
236 /* Remember that 0 means 1.1.1978. */
237 days++;
238 month++;
240 /* Build date string */
241 buf=datetime->dat_StrDate;
243 switch (datetime->dat_Format)
245 case FORMAT_INT: fstring="y-M-d"; break;
246 case FORMAT_USA: fstring="m-d-y"; break;
247 case FORMAT_CDN: fstring="d-m-y"; break;
248 default: fstring="d-M-y"; break;
251 if (datetime->dat_Flags & DTF_SUBST)
253 struct DateStamp curr;
255 DateStamp (&curr);
257 curr.ds_Days -= datetime->dat_Stamp.ds_Days;
259 if (curr.ds_Days >= -1 && curr.ds_Days <= 7)
261 fstring = "";
263 if (curr.ds_Days <= 1)
264 name = Dos_SubstDateTable[curr.ds_Days+1];
265 else
266 name = Dos_WeekTable[datetime->dat_Stamp.ds_Days%7];
268 while ((*buf++ = *name++) != 0);
272 if (*fstring)
274 while (*fstring)
276 switch(*fstring)
278 case 'y':
279 *buf++ = year/10%10+'0';
280 *buf++ = year%10+'0';
281 break;
282 case 'm':
283 name=Dos_MonthTable[month-1];
284 while(*name)
285 *buf++=*name++;
286 break;
287 case 'M':
288 *buf++=month/10%10+'0';
289 *buf++=month%10+'0';
290 break;
291 case 'd':
292 *buf++=days/10%10+'0';
293 *buf++=days%10+'0';
294 break;
295 default:
296 *buf++=*fstring;
297 break;
300 fstring ++;
303 *buf = 0;
307 if(datetime->dat_StrTime!=NULL)
309 /* Build time string */
310 datetime->dat_StrTime[0] = mins/(10*60)+'0';
311 datetime->dat_StrTime[1] = mins/60%10+'0';
312 datetime->dat_StrTime[2] = ':';
313 datetime->dat_StrTime[3] = mins/10%6+'0';
314 datetime->dat_StrTime[4] = mins%10+'0';
315 datetime->dat_StrTime[5] = ':';
316 datetime->dat_StrTime[6] = tick/(10*TICKS_PER_SECOND)+'0';
317 datetime->dat_StrTime[7] = tick/TICKS_PER_SECOND%10+'0';
318 datetime->dat_StrTime[8] = 0;
321 /* All done. Return OK. */
322 return DOSTRUE;
323 AROS_LIBFUNC_EXIT
324 } /* DateToStr */
326 #ifdef TEST
328 # include <stdio.h>
329 # include <dos/datetime.h>
330 # include <proto/dos.h>
332 int main (int argc, char ** argv)
334 struct DateTime curr;
335 char day[LEN_DATSTRING];
336 char time[LEN_DATSTRING];
337 char date[LEN_DATSTRING];
339 DateStamp (&curr.dat_Stamp);
341 curr.dat_Format = FORMAT_DOS;
342 curr.dat_Flags = 0;
343 curr.dat_StrDay = day;
344 curr.dat_StrDate = date;
345 curr.dat_StrTime = time;
347 DateToStr (&curr);
349 printf ("Today is %s, %s. It's %s\n"
350 , day
351 , date
352 , time
355 curr.dat_Format = FORMAT_DEF;
357 DateToStr (&curr);
359 printf ("Local date: %s\n", date);
361 curr.dat_Flags = DTF_SUBST;
363 DateToStr (&curr);
365 printf ("Date with DTF_SUBST: %s\n", date);
367 curr.dat_Stamp.ds_Days ++;
369 DateToStr (&curr);
371 printf ("Date +1 with DTF_SUBST: %s\n", date);
373 curr.dat_Stamp.ds_Days ++;
375 DateToStr (&curr);
377 printf ("Date +2 with DTF_SUBST: %s\n", date);
379 curr.dat_Stamp.ds_Days ++;
381 DateToStr (&curr);
383 printf ("Date +3 with DTF_SUBST: %s\n", date);
385 curr.dat_Stamp.ds_Days -= 4;
387 DateToStr (&curr);
389 printf ("Date -1 with DTF_SUBST: %s\n", date);
391 curr.dat_Stamp.ds_Days --;
393 DateToStr (&curr);
395 printf ("Date -2 with DTF_SUBST: %s\n", date);
397 curr.dat_Stamp.ds_Days --;
399 DateToStr (&curr);
401 printf ("Date -3 with DTF_SUBST: %s\n", date);
403 curr.dat_Stamp.ds_Days = 0;
404 curr.dat_Stamp.ds_Minute = 0;
405 curr.dat_Stamp.ds_Tick = 0;
407 DateToStr (&curr);
409 printf ("First Date: %s, %s. Time: %s\n", day, date, time);
411 curr.dat_Stamp.ds_Days = 0;
412 curr.dat_Stamp.ds_Minute = 1;
413 curr.dat_Stamp.ds_Tick = 0;
415 DateToStr (&curr);
417 printf ("First Date + 1 Minute: %s, %s. Time: %s\n", day, date, time);
419 curr.dat_Stamp.ds_Days = 0;
420 curr.dat_Stamp.ds_Minute = 0;
421 curr.dat_Stamp.ds_Tick = 153;
423 DateToStr (&curr);
425 printf ("First Date + 153 Ticks: %s, %s. Time: %s\n", day, date, time);
427 curr.dat_Stamp.ds_Days = 1;
428 curr.dat_Stamp.ds_Minute = 0;
429 curr.dat_Stamp.ds_Tick = 0;
431 DateToStr (&curr);
433 printf ("First Date: %s, %s. Time: %s\n", day, date, time);
435 return 0;
436 } /* main */
438 #endif /* TEST */