HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
lifsup.c
Go to the documentation of this file.
1 
15 #ifdef LIF_STAND_ALONE
16 
17 #include <unistd.h>
18 
19 #include "user_config.h"
20 
21 #include "lifsup.h"
22 #include "lifutils.h"
23 #include "td02lif.h"
24 
25 #include "../lib/parsing.c"
26 #include "../gpib/vector.c"
27 #include "../gpib/drives_sup.c"
28 
29 int debuglevel = 0x0001;
30 
31 #ifdef __MINGW32__
32 struct tm *gmtime_r(const time_t *timep, struct tm *result)
33 {
34 
35  struct tm *g = gmtime (timep );
36  *result = *g;
37  return(result);
38 }
39 
40 
46 const char *__WDay[] = { "Sun","Mon","Tue","Wed","Thu","Fri","Sat","BAD"};
47 
52 const char *__Month[]= \
53 { \
54  "Jan","Feb","Mar","Apr","May","Jun","Jul", \
55  "Aug","Sep","Oct","Nov","Dec","BAD"
56 };
57 
65 char *asctime_r(const struct tm *t, char *buf)
66 {
67 // normaize t before output
68 //(void) normalize(t,0);
69 
70  memset(buf,0,32);
71  snprintf(buf,32,"%s %s %2d %02d:%02d:%02d %4d",
72  __WDay[t->tm_wday % 7],
73  __Month[t->tm_mon % 12],
74  (int)t->tm_mday,
75  (int)t->tm_hour,
76  (int)t->tm_min,
77  (int)t->tm_sec,
78  (int)t->tm_year + 1900);
79  return(buf);
80 }
81 
82 
83 struct tm *_gmtime64 (const __time64_t *);
84 
85 time_t timegm(struct tm * a_tm)
86 {
87  const __time64_t ltime = mktime(a_tm);
88  struct tm *tm_val =_gmtime64 ((const __time64_t *) &ltime);
89  int offset = (tm_val->tm_hour - a_tm->tm_hour);
90  if (offset > 12)
91  {
92  offset = 24 - offset;
93  }
94  time_t utc = mktime(a_tm) - offset * 3600;
95  return utc;
96 }
97 #endif
98 
101 void copyright()
102 {
103  printf("Stand alone version of LIF/TELEDISK utilities for linux\n");
104  printf("HP85 Disk and Device Emulator\n");
105  printf(" (c) 2014-2020 by Mike Gore\n");
106  printf(" GNU version 3\n");
107  printf("-> https://github.com/magore/hp85disk\n");
108  printf(" GIT last pushed: %s\n", GIT_VERSION);
109  printf(" Last updated file: %s\n", LOCAL_MOD);
110  printf("\n");
111 }
112 
113 
114 int main(int argc, char *argv[])
115 {
116 
117  int i;
118  int verbose = 0;
119  char *ptr;
120 
121  if( MATCHI(basename(argv[0]),"lif") || MATCHI(basename(argv[0]),"lif.exe") )
122  {
123  argv[0] = "lif";
124  if(argc <= 1)
125  {
126  copyright();
127  lif_help(1);
128  return(0);
129  }
130  return( !lif_tests(argc, argv) );
131  }
132  if( MATCHI(basename(argv[0]),"td02lif") || MATCHI(basename(argv[0]),"td02lif.exe") )
133  {
134 #ifdef TELEDISK
135  argv[0] = "td02lif";
136  if(argc <= 1)
137  {
138  copyright();
139  td0_help(1);
140  return(0);
141  }
142  return ( !td02lif(argc, argv) );
143 #else
144  printf("td02lif not enabled\n");
145 #endif
146  }
147 }
148 #endif
__Month
const char * __Month[]
Short Name or each Month in a year.
Definition: time.c:100
__WDay
const char * __WDay[]
Short Name of each Day in a week.
Definition: time.c:78
printf
MEMSPACE int printf(const char *format,...)
tm::tm_min
int tm_min
Definition: time.h:43
lif_help
MEMSPACE void lif_help(int full)
Help Menu for User invoked GPIB functions and tasks See: int gpib_tests(char *str)
Definition: lifutils.c:111
debuglevel
int debuglevel
Debug flag - used to log GPIB and emulator messages.
Definition: gpib_task.c:33
td02lif.h
MATCHI
MEMSPACE int MATCHI(char *str, char *pat)
Compare two strings without case.
Definition: parsing.c:183
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_wday
int tm_wday
Definition: time.h:48
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
tm::tm_sec
int tm_sec
Definition: time.h:42
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
td0_help
void td0_help(int full)
Definition: td02lif.c:1556
lif_tests
MEMSPACE int lif_tests(int argc, char *argv[])
LIF user tests.
Definition: lifutils.c:139
basename
MEMSPACE char * basename(char *str)
POSIX Basename of filename.
Definition: posix.c:1469
copyright
void copyright(void)
lifutils.h
LIF file utilities.
main
int main(void)
main() for gpib project
Definition: main.c:507
lifsup.h
LIF file utilities - utilities extracted from hp85disk project for stand alone use.
tm
POSIX struct tm.
Definition: time.h:40
tm::tm_year
int tm_year
Definition: time.h:47
mktime
MEMSPACE time_t mktime(tm_t *t)
convert tm_t structure to time_t local time epoch
Definition: time.c:535
time_t
uint32_t time_t
type of EPOCH result.
Definition: time.h:34
td02lif
int td02lif(int argc, char *argv[])
Convert a Teledisk LIF formatted disk image into a pure LIF image.
Definition: td02lif.c:1650
snprintf
#define snprintf(s, size, format, args...)
Definition: user_config.h:72
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