/*-------------------------------------------------------------------------
time.c - stdlib time conversion routines
Copyright (C) 2001, Johan Knol <johan.knol AT iduna.nl>
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 2, or (at your option) any
later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this library; see the file COPYING. If not, write to the
Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
As a special exception, if you link this library with other files,
some of which are compiled with SDCC, to produce an executable,
this library does not by itself cause the resulting executable to
be covered by the GNU General Public License. This exception does
not however invalidate any other reasons why the executable file
might be covered by the GNU General Public License.
-------------------------------------------------------------------------*/
#include <stdio.h>
#include <time.h>
// please note that the tm structure has the years since 1900,
// but time returns the seconds since 1970
/* You need some kind of real time clock for the time() function.
Either a rtc-chip or some kind of DCF device will do. For TINI, the
HAVE_RTC is defined in tinibios.h
If not, the conversion routines still work.
*/
#ifndef HAVE_RTC
unsigned char RtcRead(struct tm *timeptr) {
// no real time hardware
timeptr; // hush the compiler
return 0;
}
#endif
// return the calendar time, seconds since the Epoch (Jan 1 1970 00:00:00)
time_t
time(time_t
*timeptr
) {
struct tm now;
time_t t=(time_t) -1;
if (RtcRead(&now)) {
}
if (timeptr) {
*timeptr=t;
}
return t;
}
static const char monthDays[]={31,28,31,30,31,30,31,31,30,31,30,31};
const const char *const __month[]={"Jan","Feb","Mar","Apr","May","Jun",
"Jul","Aug","Sep","Oct","Nov","Dec"};
const const char *const __day[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
static char ascTimeBuffer[32];
// validate the tm structure
static void CheckTime(struct tm *timeptr) {
// we could do some normalization here, e.g.
// change 40 october to 9 november
#if !__TIME_UNSIGNED
if (timeptr->tm_sec<0) timeptr->tm_sec=0;
if (timeptr->tm_min<0) timeptr->tm_min=0;
if (timeptr->tm_hour<0) timeptr->tm_hour=0;
if (timeptr->tm_wday<0) timeptr->tm_wday=0;
if (timeptr->tm_mon<0) timeptr->tm_mon=0;
#endif
if (timeptr->tm_sec>59) timeptr->tm_sec=59;
if (timeptr->tm_min>59) timeptr->tm_min=59;
if (timeptr->tm_hour>23) timeptr->tm_hour=23;
if (timeptr->tm_wday>6) timeptr->tm_wday=6;
if (timeptr->tm_mday<1) timeptr->tm_mday=1;
else if (timeptr->tm_mday>31) timeptr->tm_mday=31;
if (timeptr->tm_mon>11) timeptr->tm_mon=11;
if (timeptr->tm_year<0) timeptr->tm_year=0;
}
// format the time into "Sat Feb 17 17:45:23 2001\n"
char *asctime(struct tm
*timeptr
) {
CheckTime(timeptr);
sprintf (ascTimeBuffer
, "%s %s %2d %02d:%02d:%02d %04d\n",
__day[timeptr->tm_wday], __month[timeptr->tm_mon], timeptr->tm_mday,
timeptr->tm_hour, timeptr->tm_min, timeptr->tm_sec,
timeptr->tm_year+1900);
return ascTimeBuffer;
}
char *ctime(time_t
*timep
) {
}
static struct tm lastTime;
/* convert calendar time (seconds since 1970) to broken-time
This only works for dates between 01-01-1970 00:00:00 and
19-01-2038 03:14:07
A leap year is ((((year%4)==0) && ((year%100)!=0)) || ((year%400)==0))
but since we have no fancy years between 1970 and 2038 we can do:
*/
#define LEAP_YEAR(year) ((year%4)==0)
// forget about timezones for now
}
struct tm
*gmtime(time_t
*timep
) {
unsigned long epoch=*timep;
unsigned int year;
unsigned char month, monthLength;
unsigned long days;
lastTime.tm_sec=epoch%60;
epoch/=60; // now it is minutes
lastTime.tm_min=epoch%60;
epoch/=60; // now it is hours
lastTime.tm_hour=epoch%24;
epoch/=24; // now it is days
lastTime.tm_wday=(epoch+4)%7;
year=1970;
days=0;
while((days += (LEAP_YEAR(year) ? 366 : 365)) <= epoch) {
year++;
}
lastTime.tm_year=year-1900;
days -= LEAP_YEAR(year) ? 366 : 365;
epoch -= days; // now it is days in this year, starting at 0
lastTime.tm_yday=epoch;
days=0;
month=0;
monthLength=0;
for (month=0; month<12; month++) {
if (month==1) { // februari
if (LEAP_YEAR(year)) {
monthLength=29;
} else {
monthLength=28;
}
} else {
monthLength = monthDays[month];
}
if (epoch>=monthLength) {
epoch-=monthLength;
} else {
break;
}
}
lastTime.tm_mon=month;
lastTime.tm_mday=epoch+1;
lastTime.tm_isdst=0;
return &lastTime;
}
// convert broken time to calendar time (seconds since 1970)
time_t
mktime(struct tm
*timeptr
) {
int year=timeptr->tm_year+1900, month=timeptr->tm_mon, i;
long seconds;
CheckTime(timeptr);
// seconds from 1970 till 1 jan 00:00:00 this year
seconds= (year-1970)*(60*60*24L*365);
// add extra days for leap years
for (i=1970; i<year; i++) {
if (LEAP_YEAR(i)) {
seconds+= 60*60*24L;
}
}
// add days for this year
for (i=0; i<month; i++) {
if (i==1 && LEAP_YEAR(year)) {
seconds+= 60*60*24L*29;
} else {
seconds+= 60*60*24L*monthDays[i];
}
}
seconds+= (timeptr->tm_mday-1)*60*60*24L;
seconds+= timeptr->tm_hour*60*60L;
seconds+= timeptr->tm_min*60;
seconds+= timeptr->tm_sec;
return seconds;
}