HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
Common Linux/POSIX time functions. More...
#include "user_config.h"
#include "fatfs.h"
#include "mathio.h"
#include "time.h"
#include "timer.h"
#include "posix.h"
Go to the source code of this file.
Functions | |
MEMSPACE char * | tm_wday_to_ascii (int i) |
Get string Short name of day from day number. More... | |
MEMSPACE char * | tm_mon_to_ascii (int i) |
Get string Short name of Month from month number. More... | |
static MEMSPACE int | IS_Leap (int year) |
Check if a year is a leap year. More... | |
static MEMSPACE int | Leap_Days_Since_1900 (int year) |
Number of leap days since 1900 to the BEGINNING of the year. More... | |
MEMSPACE int | finddayofweek (int year, int month, int day) |
return day of week for givenn day, month, year More... | |
static MEMSPACE int | Days_Per_Year (int year) |
Find number of days in a given year. More... | |
MEMSPACE int | Days_Per_Month (int month, int year) |
days in a month More... | |
MEMSPACE time_t | time_to_tm (time_t epoch, int32_t offset, tm_t *t) |
Converts epoch ( seconds from 1 Jan EPOCH_YEAR UTC), offset seconds, to UNIX tm *t. More... | |
MEMSPACE time_t | timegm (tm_t *t) |
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardless of timezoe settings. More... | |
MEMSPACE char * | asctime_r (tm_t *t, char *buf) |
Convert tm_t *t structure into POSIX asctime() ASCII string *buf. More... | |
MEMSPACE char * | asctime (tm_t *t) |
Convert tm_t *t structure into POSIX asctime() ASCII string. More... | |
MEMSPACE char * | ctime_r (time_t *t, char *buf) |
Convert local time_t *t epoch time into POSIX asctime() ASCII string *buf. More... | |
MEMSPACE char * | ctime (time_t *tp) |
Convert local time_t *t epoch time into POSIX asctime() string buf[]. More... | |
MEMSPACE char * | ctime_gm (time_t *tp) |
GMT version of POSIX ctime(). More... | |
MEMSPACE tm_t * | gmtime_r (time_t *t, tm_t *result) |
Convert epoch GMT time_t *tp into POSIX tm_t *result. More... | |
MEMSPACE tm_t * | gmtime (time_t *tp) |
Convert epoch GMT time_t *tp into POSIX static tm_t *t. More... | |
MEMSPACE tm_t * | localtime_r (time_t *t, tm_t *result) |
Convert POSIX epoch time_t *tp into POSIX tm_t *result expressed as local time using timezone and DST corrections. More... | |
MEMSPACE tm_t * | localtime (time_t *tp) |
Convert POSIX epoch time_t *tp into POSIX tm_t *result. More... | |
MEMSPACE time_t | mktime (tm_t *t) |
convert tm_t structure to time_t local time epoch More... | |
static MEMSPACE time_t | tm2epoch (tm_t *t) |
Converts tm_t structure as GMT time into GMT epoch since 1900. More... | |
MEMSPACE time_t | normalize (tm_t *t, int normalize_to_timezone) |
Normalize POSIX tm_t *t struct and convert to epoch time Note: does not deal with DST - by design. More... | |
MEMSPACE int | gettimezone (tz_t *tz) |
Get current timezone in struct timezone *tz - POSIX function. More... | |
MEMSPACE int | settimezone (tz_t *tz) |
Set current timezone with struct timezone *tz - POSIX function. More... | |
MEMSPACE int | gettimeofday (tv_t *tv, tz_t *tz) |
Get current time struct timeval *tv and struct timezone *tz - POSIX function. We assume a GMT hardware clock. More... | |
MEMSPACE time_t | time (time_t *t) |
Return second from epoch - POSIX function. More... | |
MEMSPACE int | settimeofday (tv_t *tv, tz_t *tz) |
Set current time struct timeval *tv and struct timezone *tz - POSIX function. We assume a GMT hardware clock. More... | |
MEMSPACE void | clock_set (uint32_t seconds, uint32_t us) |
Set system clock with seconds and microseconds. More... | |
MEMSPACE int | setdate (void) |
Set date and time by prompting user. More... | |
MEMSPACE int | setdate_r (char *buf) |
Set date and time from string in this format "YYYY MM DD HH:MM:SS". More... | |
MEMSPACE time_t | find_dst (int dst, time_t epoch, int year, int month, int weekno, int dayno, int hour) |
Calculate GMT seconds of DST transition given LOCAL time start / end time and DST flag. More... | |
MEMSPACE void | set_dst (time_t epoch) |
Set DST start and end time for the given epoch year. More... | |
MEMSPACE int | is_dst (time_t epoch) |
Test GMT epoch time to see if DST applies in a local timezone. More... | |
MEMSPACE void | print_dst () |
print start/stop for DST as localtime for this year More... | |
MEMSPACE void | print_dst_gmt () |
print start/stop for DST as GMT for this year More... | |
MEMSPACE void | initialize_clock (int minwest) |
initialize system time - if we have an RTC use it More... | |
MEMSPACE void | display_clock () |
Display system time and optionally RTC time. More... | |
Variables | |
volatile ts_t | __clock |
System Clock Time. More... | |
tz_t | __tzone |
System Time Zone. More... | |
dst_t | dst |
DST start and stop in GMT epoch. More... | |
static const uint16_t | __days_sum [] |
accumulated days to the start of a month in a year. More... | |
static const uint16_t | __days [] |
days in each month. More... | |
const char * | __WDay [] = { "Sun","Mon","Tue","Wed","Thu","Fri","Sat","BAD"} |
Short Name of each Day in a week. More... | |
const char * | __Month [] |
Short Name or each Month in a year. More... | |
Common Linux/POSIX time functions.
This 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 3 of the License, or (at your option) any later version.
This software 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 program. If not, see http://www.gnu.org/licenses/.
Definition in file time.c.
Convert tm_t *t structure into POSIX asctime() ASCII string.
[in] | t | struct tm * time input. |
Definition at line 394 of file time.c.
Referenced by display_clock().
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
[in] | t | tm_t structure pointer. |
[out] | buf | user buffer for POSIX asctime() string result.
|
Definition at line 368 of file time.c.
Referenced by asctime(), ctime(), ctime_gm(), ctime_r(), lif_ctime_gmt(), td0_open(), and timetests().
MEMSPACE void clock_set | ( | uint32_t | seconds, |
uint32_t | us | ||
) |
Set system clock with seconds and microseconds.
Convert local time_t *t epoch time into POSIX asctime() string buf[].
[in] | tp | time_t * time input. |
Definition at line 424 of file time.c.
Referenced by print_dst().
MEMSPACE int Days_Per_Month | ( | int | month, |
int | year | ||
) |
days in a month
[in] | month; | month of year |
[in] | year; | year |
Definition at line 223 of file time.c.
Referenced by normalize(), and tm2epoch().
|
static |
Find number of days in a given year.
[in] | year | valid over 1900..2199. |
Definition at line 210 of file time.c.
Referenced by time_to_tm().
MEMSPACE void display_clock | ( | ) |
MEMSPACE time_t find_dst | ( | int | dst, |
time_t | epoch, | ||
int | year, | ||
int | month, | ||
int | weekno, | ||
int | dayno, | ||
int | hour | ||
) |
Calculate GMT seconds of DST transition given LOCAL time start / end time and DST flag.
[in] | dst | 0 .. 1 DST needs to be applied to the arguments for DST caluclulations |
[in] | epoch | 0 | epoch if non-zero - UTC epoch time used to obtain year of DST calculations |
[in] | year | 0 | year if non-zero - UTC year of DST calcululation, if year and epoch are used - ignore epoch |
[in] | month | 0 .. 11, local time month DST transition |
[in] | weekno | 1 .. 4 localtime dayno count in this month |
[in] | dayno | 0 .. 6, localtime day of DST transition, 0 = Sunday |
[in] | hour | 0 .. 23 local time hour of DST transition result is in epoch GMT seconds Example: Eastern Time and Daylight Savings time time_t epoch,start,end; tv_t tv; tv_t tz; gettimeofday(&tv, &tz); epoch = tv.tv_sec; // DST start for this year, 2nd Sunday of Mar at 2:00am EST start = find_dst(0, epoch, 0, 3, 2, 0, 2); // DST start on 2016, 2nd Sunday of Mar at 2:00am EST start = find_dst(0, 0, 2016, 3, 2, 0, 2); // DST ends on for this year, 1st Sunday of Nov at 2:00am DST end = find_dst(1, epoch, 0, 11, 1, 0, 2); // DST ends on 2016, 1st Sunday of Nov at 2:00am DST end = find_dst(1, 0, 2016, 11, 1, 0, 2); |
Definition at line 1040 of file time.c.
Referenced by set_dst().
MEMSPACE int finddayofweek | ( | int | year, |
int | month, | ||
int | day | ||
) |
Get current time struct timeval *tv and struct timezone *tz - POSIX function. We assume a GMT hardware clock.
[in] | tv | time. |
[in] | tz | timezone. |
Definition at line 822 of file time.c.
Referenced by find_dst(), set_dst(), and timetests().
Get current timezone in struct timezone *tz - POSIX function.
[out] | tz | timezone result. |
Definition at line 792 of file time.c.
Referenced by gettimeofday(), localtime_r(), and normalize().
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
[in] | tp | time_t * time input. |
Definition at line 471 of file time.c.
Referenced by display_clock(), printer_open(), rtc_init(), and unix_time_to_fat().
Convert epoch GMT time_t *tp into POSIX tm_t *result.
[in] | tp | time_t * time input. |
[out] | result | tm_t *result. |
Definition at line 456 of file time.c.
Referenced by ctime_gm(), gmtime(), lif_ctime_gmt(), and lif_time2lifbcd().
MEMSPACE void initialize_clock | ( | int | minwest | ) |
initialize system time - if we have an RTC use it
[in] | minwest | your time zone as minute west |
Definition at line 1184 of file time.c.
Referenced by main().
Test GMT epoch time to see if DST applies in a local timezone.
[in] | epoch | seconds in GMT @See normalize() return 1 if yes, 0 if not |
Definition at line 1150 of file time.c.
Referenced by localtime_r(), and normalize().
|
static |
Check if a year is a leap year.
[in] | year | valid over 1900..2199. |
Definition at line 135 of file time.c.
Referenced by Days_Per_Month(), Days_Per_Year(), time_to_tm(), and tm2epoch().
|
static |
Number of leap days since 1900 to the BEGINNING of the year.
[in] | year | valid over 1900..2199. |
Definition at line 156 of file time.c.
Referenced by tm2epoch().
Convert POSIX epoch time_t *tp into POSIX tm_t *result.
[in] | tp | time_t * epoch time input. |
Definition at line 522 of file time.c.
Referenced by ctime(), ctime_r(), and get_fattime().
Convert POSIX epoch time_t *tp into POSIX tm_t *result expressed as local time using timezone and DST corrections.
[in] | t | time_t * epoch time input. |
[out] | result | tm_t *result. |
Definition at line 498 of file time.c.
Referenced by localtime(), and timetests().
convert tm_t structure to time_t local time epoch
[in] | t | tm_t time input. |
Definition at line 535 of file time.c.
Referenced by timetests().
Normalize POSIX tm_t *t struct and convert to epoch time Note: does not deal with DST - by design.
[in] | t | tm_t time input. |
[in] | normalize_to_timezone | nonzero = adjust to local timezone and DST |
Definition at line 655 of file time.c.
Referenced by asctime_r(), mktime(), and timegm().
MEMSPACE void print_dst | ( | ) |
MEMSPACE void print_dst_gmt | ( | ) |
MEMSPACE int setdate | ( | void | ) |
Set date and time by prompting user.
Definition at line 901 of file time.c.
Referenced by user_task().
MEMSPACE int setdate_r | ( | char * | buf | ) |
Set current timezone with struct timezone *tz - POSIX function.
[in] | tz | timezone result. |
Definition at line 806 of file time.c.
Referenced by initialize_clock(), and settimeofday().
Return second from epoch - POSIX function.
[in,out] | t | pointer to store time in.
|
Definition at line 843 of file time.c.
Referenced by fat_time_to_unix(), get_fattime(), gpib_timeout_set(), lif_create_volume(), td0_open(), unix_time_to_fat(), and utime().
Converts epoch ( seconds from 1 Jan EPOCH_YEAR UTC), offset seconds, to UNIX tm *t.
[in] | epoch | Seconds elapsed since January 1, EPOCH_YEAR.
|
[in] | offset | Offset in seconds to localtime.
|
[out] | t | Unix tm struct pointer output. |
Definition at line 263 of file time.c.
Referenced by find_dst(), gmtime_r(), localtime_r(), and normalize().
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardless of timezoe settings.
Definition at line 348 of file time.c.
Referenced by display_clock(), fat_time_to_unix(), find_dst(), initialize_clock(), lif_lifbcd2time(), setdate_r(), and td0_open().
Converts tm_t structure as GMT time into GMT epoch since 1900.
Note: To simplify we caculate Leap Day contributions in stages
Definition at line 553 of file time.c.
Referenced by normalize().
MEMSPACE char* tm_mon_to_ascii | ( | int | i | ) |
Get string Short name of Month from month number.
[in] | i | Month 0 .. 11 to string. |
Definition at line 114 of file time.c.
Referenced by printer_open().
MEMSPACE char* tm_wday_to_ascii | ( | int | i | ) |
|
static |
days in each month.
Definition at line 68 of file time.c.
Referenced by Days_Per_Month(), and time_to_tm().
|
static |
accumulated days to the start of a month in a year.
Definition at line 59 of file time.c.
Referenced by tm2epoch().
const char* __Month[] |
Short Name or each Month in a year.
Definition at line 100 of file time.c.
Referenced by asctime_r(), and tm_mon_to_ascii().
tz_t __tzone |
System Time Zone.
Definition at line 49 of file time.c.
Referenced by gettimezone(), and settimezone().
const char* __WDay[] = { "Sun","Mon","Tue","Wed","Thu","Fri","Sat","BAD"} |
Short Name of each Day in a week.
Definition at line 78 of file time.c.
Referenced by asctime_r(), and tm_wday_to_ascii().
dst_t dst |
DST start and stop in GMT epoch.
Definition at line 52 of file time.c.
Referenced by find_dst(), gen_numname(), is_dst(), mem_cmp(), mem_cpy(), mem_set(), print_dst(), print_dst_gmt(), queue_pop_buffer(), set_dst(), and td0_rle().