HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
time.h
Go to the documentation of this file.
1 
25 #ifndef TIME_H
26 #define TIME_H
27 
28 #define EPOCH_YEAR 1970 /*< Thursday Jan 1 1970 */
29 #define EPOCH_DAY 4 /*< Sunday = 0 ... Saturday = 6 */
30 #define EPOCH 0 /*< Zero seconds */
31 #define EPOCH_2000 946684800 /*< Sat, 01 Jan 2000 00:00:00 GMT */
32 
34 typedef uint32_t time_t;
35 
37 typedef uint16_t clockid_t;
38 
40 struct tm
41 {
42  int tm_sec; /*< Seconds. [0-60] (1 leap second) */
43  int tm_min; /*< Minutes. [0-59] */
44  int tm_hour; /*< Hours. [0-23] */
45  int tm_mday; /*< Day. [1-31] */
46  int tm_mon; /*< Month. [0-11] */
47  int tm_year; /*< Year - 1900. */
48  int tm_wday; /*< Day of week. [0-6] */
49  int tm_yday; /*< Days in year.[0-365] */
50  int tm_isdst; /*< DST. [-1/0/1] */
51  int32_t tm_gmtoff; /*< GMT offset in seconds */
52 };
53 
61 typedef struct tm tm_t;
63 
65 struct timeval
66 {
67  time_t tv_sec; /*< seconds */
68  uint32_t tv_usec; /*< microseconds */
69 };
70 
72 typedef struct timeval tv_t;
73 
75 struct timezone
76 {
77  int tz_minuteswest; /*< minutes west of Greenwich */
78  int tz_dsttime; /*< type of DST correction */
79 };
80 
82 typedef struct timezone tz_t;
83 
85 struct timespec
86 {
87  time_t tv_sec; /*< seconds */
88  long tv_nsec; /*< nanoseconds */
89 };
90 
92 typedef struct timespec ts_t;
93 
95 extern volatile ts_t __clock;
96 
98 extern tz_t __tzone;
99 
101 typedef struct
102 {
106 } dst_t;
107 
108 /* time.c */
109 MEMSPACE char *tm_wday_to_ascii ( int i );
110 MEMSPACE char *tm_mon_to_ascii ( int i );
111 MEMSPACE int finddayofweek ( int year , int month , int day );
112 MEMSPACE int Days_Per_Month ( int month , int year );
113 MEMSPACE time_t time_to_tm ( time_t epoch , int32_t offset , tm_t *t );
114 MEMSPACE time_t timegm ( tm_t *t );
115 MEMSPACE char *asctime_r ( tm_t *t , char *buf );
116 MEMSPACE char *asctime ( tm_t *t );
117 MEMSPACE char *ctime_r ( time_t *t , char *buf );
118 MEMSPACE char *ctime ( time_t *tp );
119 MEMSPACE char *ctime_gm ( time_t *tp );
120 MEMSPACE tm_t *gmtime_r ( time_t *t , tm_t *result );
121 MEMSPACE tm_t *gmtime ( time_t *tp );
122 MEMSPACE tm_t *localtime_r ( time_t *t , tm_t *result );
123 MEMSPACE tm_t *localtime ( time_t *tp );
124 MEMSPACE time_t mktime ( tm_t *t );
125 MEMSPACE time_t normalize ( tm_t *t , int normalize_to_timezone );
126 MEMSPACE int gettimezone ( tz_t *tz );
127 MEMSPACE int settimezone ( tz_t *tz );
128 MEMSPACE int gettimeofday ( tv_t *tv , tz_t *tz );
129 MEMSPACE time_t time ( time_t *t );
130 MEMSPACE int settimeofday ( tv_t *tv , tz_t *tz );
131 MEMSPACE void clock_set ( uint32_t seconds , uint32_t us );
132 MEMSPACE int setdate ( void );
133 MEMSPACE int setdate_r ( char *buf );
134 MEMSPACE time_t find_dst ( int dst , time_t epoch , int year , int month , int weekno , int dayno , int hour );
135 MEMSPACE void set_dst ( time_t epoch );
136 MEMSPACE int is_dst ( time_t epoch );
137 MEMSPACE void print_dst ( void );
138 MEMSPACE void print_dst_gmt ( void );
139 MEMSPACE void initialize_clock ( int minwest );
140 MEMSPACE void display_clock ( void );
141 #endif
__tzone
tz_t __tzone
System Time Zone.
Definition: time.c:49
timeval::tv_usec
uint32_t tv_usec
Definition: time.h:68
clockid_t
uint16_t clockid_t
type of clockid_t.
Definition: time.h:37
tm::tm_gmtoff
int32_t tm_gmtoff
Definition: time.h:51
timezone
POSIX timezone.
Definition: time.h:75
dst_t
DST structure.
Definition: time.h:101
__clock
volatile ts_t __clock
System Clock Time.
Definition: timer.c:38
print_dst
MEMSPACE void print_dst(void)
print start/stop for DST as localtime for this year
Definition: time.c:1162
tm::tm_min
int tm_min
Definition: time.h:43
print_dst_gmt
MEMSPACE void print_dst_gmt(void)
print start/stop for DST as GMT for this year
Definition: time.c:1171
ctime_r
MEMSPACE char * ctime_r(time_t *t, char *buf)
Convert local time_t *t epoch time into POSIX asctime() ASCII string *buf.
Definition: time.c:410
initialize_clock
MEMSPACE void initialize_clock(int minwest)
initialize system time - if we have an RTC use it
Definition: time.c:1184
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
setdate_r
MEMSPACE int setdate_r(char *buf)
Set date and time from string in this format "YYYY MM DD HH:MM:SS".
Definition: time.c:920
tm::tm_wday
int tm_wday
Definition: time.h:48
set_dst
MEMSPACE void set_dst(time_t epoch)
Set DST start and end time for the given epoch year.
Definition: time.c:1115
tm_wday_to_ascii
MEMSPACE char * tm_wday_to_ascii(int i)
Get string Short name of day from day number.
Definition: time.c:87
dst
dst_t dst
DST start and stop in GMT epoch.
Definition: time.c:52
mktime
MEMSPACE time_t mktime(tm_t *t)
convert tm_t structure to time_t local time epoch
Definition: time.c:535
tm::tm_sec
int tm_sec
Definition: time.h:42
gettimezone
MEMSPACE int gettimezone(tz_t *tz)
Get current timezone in struct timezone *tz - POSIX function.
Definition: time.c:792
localtime_r
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...
Definition: time.c:498
tm::tm_mon
int tm_mon
Definition: time.h:46
tm::tm_mday
int tm_mday
Definition: time.h:45
tm::tm_hour
int tm_hour
Definition: time.h:44
timespec::tv_nsec
long tv_nsec
Definition: time.h:88
normalize
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.
Definition: time.c:655
time_to_tm
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.
Definition: time.c:263
timegm
MEMSPACE time_t timegm(tm_t *t)
Convert tm_t structure as GMT time into GMT seconds since 1900. All calculactions are in GMT regardle...
Definition: time.c:348
tm::tm_isdst
int tm_isdst
Definition: time.h:50
time
MEMSPACE time_t time(time_t *t)
Return second from epoch - POSIX function.
Definition: time.c:843
timespec::tv_sec
time_t tv_sec
Definition: time.h:87
display_clock
MEMSPACE void display_clock(void)
Display system time and optionally RTC time.
Definition: time.c:1234
Days_Per_Month
MEMSPACE int Days_Per_Month(int month, int year)
days in a month
Definition: time.c:223
find_dst
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.
Definition: time.c:1040
dst_t::end
time_t end
Start of local DST in GMT.
Definition: time.h:104
asctime
MEMSPACE char * asctime(tm_t *t)
Convert tm_t *t structure into POSIX asctime() ASCII string.
Definition: time.c:394
dst_t::epoch
time_t epoch
End of local DST in GMT.
Definition: time.h:105
is_dst
MEMSPACE int is_dst(time_t epoch)
Test GMT epoch time to see if DST applies in a local timezone.
Definition: time.c:1150
timeval::tv_sec
time_t tv_sec
Definition: time.h:67
timezone::tz_dsttime
int tz_dsttime
Definition: time.h:78
finddayofweek
MEMSPACE int finddayofweek(int year, int month, int day)
return day of week for givenn day, month, year
Definition: time.c:180
dst_t::start
time_t start
Definition: time.h:103
timeval
POSIX timeval.
Definition: time.h:65
gmtime_r
MEMSPACE tm_t * gmtime_r(time_t *t, tm_t *result)
Convert epoch GMT time_t *tp into POSIX tm_t *result.
Definition: time.c:456
gettimeofday
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 hardwar...
Definition: time.c:822
clock_set
MEMSPACE void clock_set(uint32_t seconds, uint32_t us)
Set system clock with seconds and microseconds.
Definition: time.c:882
tm
POSIX struct tm.
Definition: time.h:40
ctime_gm
MEMSPACE char * ctime_gm(time_t *tp)
GMT version of POSIX ctime().
Definition: time.c:441
tm::tm_year
int tm_year
Definition: time.h:47
time_t
uint32_t time_t
type of EPOCH result.
Definition: time.h:34
tm::tm_yday
int tm_yday
Definition: time.h:49
timespec
POSIX timespec.
Definition: time.h:85
settimeofday
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 hardwar...
Definition: time.c:861
timezone::tz_minuteswest
int tz_minuteswest
Definition: time.h:77
ctime
MEMSPACE char * ctime(time_t *tp)
Convert local time_t *t epoch time into POSIX asctime() string buf[].
Definition: time.c:424
tm_mon_to_ascii
MEMSPACE char * tm_mon_to_ascii(int i)
Get string Short name of Month from month number.
Definition: time.c:114
settimezone
MEMSPACE int settimezone(tz_t *tz)
Set current timezone with struct timezone *tz - POSIX function.
Definition: time.c:806
setdate
MEMSPACE int setdate(void)
Set date and time by prompting user.
Definition: time.c:901
gmtime
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
Definition: time.c:471
asctime_r
MEMSPACE char * asctime_r(tm_t *t, char *buf)
Convert tm_t *t structure into POSIX asctime() ASCII string *buf.
Definition: time.c:368
localtime
MEMSPACE tm_t * localtime(time_t *tp)
Convert POSIX epoch time_t *tp into POSIX tm_t *result.
Definition: time.c:522