HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
timetests.c
Go to the documentation of this file.
1 
26 #ifdef ESP8266
27 #include "user_config.h"
28 #include "fatfs.h"
29 #include "mathio.h"
30 #include "time.h"
31 #include "timer.h"
32 #ifdef RTC_SUPPORT
33 #include "rtc.h"
34 #endif
35 
36 #else
37 #include <stdlib.h>
38 #include <string.h>
39 #include <time.h>
40 #endif
41 
42 static unsigned int __seed;
43 
45 void mysrand(int seed)
46 {
47  __seed = seed;
48 }
49 
50 
52 int myrand(int start, int end)
53 {
54  long k,s;
55 
56  int val;
57  double fval,begin,span;
58 
59  if(end > start)
60  {
61  begin = (double) start;
62  span = (double) (end - start);
63  }
64  else
65  {
66  span = (double) (start - end);
67  begin = (double) end;
68  }
69 
70  s = (long)__seed;
71 
72  if (s == 0)
73  s = 0x31415926L;
74 
75  k = s / 127773;
76  s = 16807 * (s - k * 127773) - 2836 * k;
77  if (s < 0)
78  s += 2147483647UL;
79 
80  __seed = (unsigned int)s;
81 
82 // force s into 0 .. 0x7fffffffUL positive
83  s &= 0x7fffffffUL;
84 
85  fval = (double) s / (double) 0x7fffffffL;
86 
87  fval *= (double) span;
88  fval += (double) begin;
89 //printf("fval: %f, span:%f, begin:%f\n", (double)fval, (double)span, (double)begin);
90 
91  val = fval;
92 
93  return(val);
94 }
95 
96 
98 int timetests(char *str, int check)
99 {
100  FILE *fp;
101  time_t epoch;
102  tm_t tm;
103  tv_t tv;
104  tz_t tz;
105  int i;
106  int val;
107  char buf[64];
108 
109  str = skipspaces(str);
110  if(!*str)
111  fp = stdout;
112  else if(check)
113  fp = fopen(str,"rb");
114  else
115  fp = fopen(str,"wb");
116 
117  if(fp == NULL)
118  perror("timetest file open failed");
119  gettimeofday(&tv, &tz);
120 
121  mysrand(tv.tv_sec);
122 
123 // struct tm {
124 // int tm_sec; /* Seconds (0-60) */
125 // int tm_min; /* Minutes (0-59) */
126 // int tm_hour; /* Hours (0-23) */
127 // int tm_mday; /* Day of the month (1-31) */
128 // int tm_mon; /* Month (0-11) */
129 // int tm_year; /* Year - 1900 */
130 // int tm_wday; /* Day of the week (0-6, Sunday = 0) */
131 // int tm_yday; /* Day in the year (0-365, 1 Jan = 0) */
132 // int tm_isdst; /* Daylight saving time */
133 // };
134 
135  for(i=0;i<20;++i)
136  {
137 #ifdef ESP8266
138  optimistic_yield(1000);
139 #endif
140 
141  if(!check)
142  {
143  tm.tm_year = myrand(EPOCH_YEAR+2,2099) - 1900;
144  tm.tm_mon = myrand(-18,18);
145  tm.tm_mday = myrand(-45,45);
146  tm.tm_hour = myrand(-36,36);
147  tm.tm_min = myrand(-90,90);
148  tm.tm_sec = myrand(-90,90);
149 
150  fprintf(fp,"test: %d\n", i);
151  fprintf(fp,"%4d,%2d,%2d, %02d:%02d:%2d\n",
152  (int)tm.tm_year+1900, (int)tm.tm_mon, (int)tm.tm_mday,
153  (int)tm.tm_hour, (int)tm.tm_min, (int)tm.tm_sec);
154 
155 // express val as local time
156  epoch = mktime(&tm);
157 
158  fprintf(fp,"%10lu, %s\n", (long) epoch, asctime_r(&tm, buf));
159  fprintf(fp,"%4d,%2d,%2d, %02d:%02d:%2d\n",
160  (int)tm.tm_year+1900, (int)tm.tm_mon, (int)tm.tm_mday,
161  (int)tm.tm_hour, (int)tm.tm_min, (int)tm.tm_sec);
162 
163  localtime_r(&epoch, &tm);
164 
165  fprintf(fp,"%10lu, %s\n", (long) epoch, asctime_r(&tm, buf));
166  fprintf(fp,"%4d,%2d,%2d, %02d:%02d:%2d\n",
167  (int)tm.tm_year+1900, (int)tm.tm_mon, (int)tm.tm_mday,
168  (int)tm.tm_hour, (int)tm.tm_min, (int)tm.tm_sec);
169  fprintf(fp,"\n");
170 
171  }
172  }
173  printf("-1 = %d\n", -1);
174 
175  if (fp != stdout )
176  if( fclose(fp) )
177  perror("timetest fclose failed");
178  return(1);
179 }
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
timetests
MEMSPACE int timetests(char *str, int check)
Definition: timetests.c:98
fatfs.h
fopen
MEMSPACE FILE * fopen(const char *path, const char *mode)
POSIX Open a file with path name and ascii file mode string.
Definition: posix.c:801
timezone
POSIX timezone.
Definition: time.h:75
printf
MEMSPACE int printf(const char *format,...)
tm::tm_min
int tm_min
Definition: time.h:43
MEMSPACE
#define MEMSPACE
Definition: user_config.h:17
fprintf
MEMSPACE int fprintf(FILE *fp, const char *format,...)
fprintf function Example user defined printf function using fputc for I/O This method allows I/O to d...
Definition: posix.c:2533
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
EPOCH_YEAR
#define EPOCH_YEAR
Definition: time.h:28
NULL
#define NULL
Definition: user_config.h:85
__file
FILE type structure.
Definition: posix.h:158
timer.h
timer functions
time.h
Common Linux/POSIX time functions.
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
perror
MEMSPACE void perror(const char *s)
POSIX perror() - convert POSIX errno to text with user message.
Definition: posix.c:1850
myrand
MEMSPACE int myrand(int start, int end)
Definition: timetests.c:52
stdout
#define stdout
Definition: posix.h:274
__seed
static unsigned int __seed
Definition: timetests.c:42
fclose
MEMSPACE int fclose(FILE *stream)
POSIX close a file stream.
Definition: posix.c:1261
timeval::tv_sec
time_t tv_sec
Definition: time.h:67
timeval
POSIX timeval.
Definition: time.h:65
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
rtc.h
DS1307 RTC Driver AVR8.
mathio.h
Math IO functions, and verious conversion code with floating point support.
skipspaces
MEMSPACE char * skipspaces(char *ptr)
Skip white space in a string - tabs and spaces.
Definition: parsing.c:70
mysrand
MEMSPACE void mysrand(int seed)
Definition: timetests.c:45