-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdate.c
404 lines (336 loc) · 9.4 KB
/
date.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
/***************************************************************************
*
* Copyright (c) 1997-2022 Jeff V. Merkey
* 7260 SE Tenino St.
* Portland, Oregon 97206
* jeffmerkey@gmail.com
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the Lesser GNU Public License as published by the
* Free Software Foundation, version 2.1, or any later version.
*
* This program 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.
*
* Original Authorship :
* source code written by Jeff V. Merkey
*
* Original Contributors :
* Jeff V. Merkey
*
*
*
****************************************************************************
*
*
* AUTHOR : Jeff V. Merkey (jeffmerkey@gmail.com)
* FILE : DATE.C
* DESCRIP : Netware and Unix Date/Time conversion routines
* DATE : January 30, 2022
*
*
***************************************************************************/
#include "globals.h"
ULONG MakeNWTime(ULONG second, ULONG minute, ULONG hour,
ULONG day, ULONG month, ULONG year)
{
ULONG DateAndTime = 0;
// 32-bit format for NetWare date and time
// Y - year bits
// M - month bits
// D - day bits
// H - hour bits
// m - minute bits
// S - second bits
// [ YYYYYYYM MMMDDDDD HHHHHmmm mmmSSSSS ]
DateAndTime |= second >> 1;
DateAndTime |= minute << 5;
DateAndTime |= hour << 11;
DateAndTime |= day << 16;
DateAndTime |= month << 21;
// year is delta of 1980
year = year % 100;
if (year >= 80)
{
// year is relative to 1980
DateAndTime |= (year - 80) << 25;
}
else
{
// year is relative to 2000
DateAndTime |= (year + 80) << 25;
}
return DateAndTime;
}
void GetNWTime(ULONG DateAndTime,
ULONG *second, ULONG *minute, ULONG *hour,
ULONG *day, ULONG *month, ULONG *year)
{
if (second)
*second = (DateAndTime & 0x1F) << 1;
if (minute)
*minute = (DateAndTime >> 5) & 0x3F;
if (hour)
*hour = (DateAndTime >> 11) & 0x1F;
if (day)
*day = (DateAndTime >> 16) & 0x1F;
if (month)
*month = (DateAndTime >> 21) & 0xF;
if (year)
{
*year = (DateAndTime >> 25);
if ((*year) >= 80)
*year = ((*year) - 80) + 2000;
else
*year = (*year) + 1980;
}
return;
}
#if (LINUX_20 | LINUX_22 | LINUX_24)
//
// NOTE: all dates in the Netware file system are relative to
// 1980. Novell's current date format can handle dates
// from 1980 through 2079. This means that NetWare has
// a year 2079 problem where the date format would be assumed
// to "flip" over from 2079 to the next century (i.e. the
// date format would be assumed to be 2080 through 2179).
//
// The date/time support routines in this modules all perform
// date calculations relative to the year 1980. This could easily
// be changed to become relative to 2080.
//
ULONG NWFSGetSeconds(void)
{
return CURRENT_TIME;
}
ULONG NWFSGetSystemTime(void)
{
return (CURRENT_TIME & ~3);
}
ULONG NWFSSystemToNetwareTime(ULONG SystemTime)
{
ULONG year, month, day, hour, minute, second;
GetUnixTime(SystemTime, &second, &minute, &hour, &day, &month, &year);
return (MakeNWTime(second, minute, hour, day, month, year));
}
ULONG NWFSNetwareToSystemTime(ULONG NetwareTime)
{
ULONG year, month, day, hour, minute, second;
GetNWTime(NetwareTime, &second, &minute, &hour, &day, &month, &year);
return (MakeUnixTime(second, minute, hour, day, month, year));
}
// The time conversion portion of the functions below come from
// the fat file system. MakeUnixTime is derived from the
// mktime function.
/* Linear day numbers of the respective 1sts in non-leap years. */
int day_n[] =
{
0, 31, 59, 90, 120, 151, 181, 212,
243, 273, 304, 334, 0, 0, 0, 0
};
/* JanFebMarApr May Jun Jul Aug Sep Oct Nov Dec */
extern struct timezone sys_tz;
ULONG MakeUnixTime(ULONG second, ULONG minute, ULONG hour,
ULONG day, ULONG month, ULONG year)
{
ULONG secs;
year = year % 100;
if (year >= 80)
year -= 80;
else
year += 20;
month = (month & 15) - 1;
secs = (second & 31) * 2 + 60 * (minute & 63) + hour * 3600 + 86400 *
((day & 31) - 1 + day_n[month] +
(year / 4) + year * 365 - ((year & 3) == 0 && month < 2 ? 1 : 0) + 3653);
/* days since 1.1.70 plus 80's leap day */
secs += sys_tz.tz_minuteswest * 60;
if (sys_tz.tz_dsttime)
{
secs -= 3600;
}
return secs;
}
void GetUnixTime(ULONG unixdate, ULONG *second, ULONG *minute, ULONG *hour,
ULONG *day, ULONG *month, ULONG *year)
{
int lday, lyear, nl_day, lmonth;
unixdate -= sys_tz.tz_minuteswest * 60;
if (sys_tz.tz_dsttime)
unixdate += 3600;
if (second)
*second = (unixdate % 60) / 2;
if (minute)
*minute = (unixdate / 60) % 60;
if (hour)
*hour = (unixdate / 3600) % 24;
lday = unixdate / 86400 - 3652;
lyear = lday / 365;
if ((lyear + 3) / 4 + 365 * lyear > lday)
lyear--;
lday -= (lyear + 3) / 4 + 365 * lyear;
if ((lday == 59) && !(lyear & 3))
{
nl_day = lday;
lmonth = 2;
}
else
{
nl_day = (lyear & 3) || lday <= 59 ? lday : lday - 1;
for (lmonth = 0; lmonth < 12; lmonth++)
{
if (day_n[lmonth] > nl_day)
break;
}
}
if (day)
*day = nl_day-day_n[lmonth - 1] + 1;
if (month)
*month = lmonth;
if (year)
*year = (lyear + 1980);
}
#endif
#if (LINUX_UTIL | DOS_UTIL)
ULONG NWFSGetSeconds(void)
{
return time(NULL);
}
ULONG NWFSGetSystemTime(void)
{
time_t epoch_time;
struct tm *tm;
ULONG DateAndTime = 0, year;
epoch_time = time(NULL);
tm = localtime(&epoch_time);
DateAndTime |= tm->tm_sec >> 1;
DateAndTime |= tm->tm_min << 5;
DateAndTime |= tm->tm_hour << 11;
DateAndTime |= tm->tm_mday << 16;
DateAndTime |= tm->tm_mon << 21;
// year is delta of 1980
year = tm->tm_year % 100;
if (year >= 80)
{
// year is relative to 1980
DateAndTime |= (year - 80) << 25;
}
else
{
// year is relative to 2000
DateAndTime |= (year + 80) << 25;
}
return DateAndTime;
}
ULONG NWFSSystemToNetwareTime(ULONG SystemTime)
{
return SystemTime;
}
ULONG NWFSNetwareToSystemTime(ULONG NetwareTime)
{
return NetwareTime;
}
#endif
#if (WINDOWS_NT | WINDOWS_NT_RO)
ULONG NWFSGetSeconds(void)
{
return 0;
}
ULONG NWFSGetSystemTime(void)
{
return 0;
}
ULONG NWFSSystemToNetwareTime(ULONG SystemTime)
{
return SystemTime;
}
ULONG NWFSNetwareToSystemTime(ULONG NetwareTime)
{
return NetwareTime;
}
ULONG NWFSConvertToNetwareTime(IN PTIME_FIELDS tf)
{
ULONG DateAndTime = 0;
// 32-bit format for NetWare date and time
// Y - year bits
// M - month bits
// D - day bits
// H - hour bits
// m - minute bits
// S - second bits
// [ YYYYYYYM MMMDDDDD HHHHHmmm mmmSSSSS ]
DateAndTime |= tf->Second >> 1;
DateAndTime |= tf->Minute << 5;
DateAndTime |= tf->Hour << 11;
DateAndTime |= tf->Day << 16;
DateAndTime |= tf->Month << 21;
// year is delta of 1980
if (tf->Year >= 80)
// year is delta of 1900
DateAndTime |= (tf->Year - 80) << 25;
else
// year is delta of 2000
DateAndTime |= (tf->Year + 20) << 25;
return DateAndTime;
}
ULONG NWFSConvertFromNetwareTime(IN ULONG DateAndTime,
IN PTIME_FIELDS tf)
{
if (tf)
{
tf->Second = (DateAndTime & 0x1F) << 1;
tf->Minute = (DateAndTime >> 5) & 0x3F;
tf->Hour = (DateAndTime >> 11) & 0x1F;
tf->Day = (DateAndTime >> 16) & 0x1F;
tf->Month = (DateAndTime >> 21) & 0xF;
tf->Year = (DateAndTime >> 25) + 1980;
return 0;
}
return -1;
}
#endif
#if (WINDOWS_NT_UTIL)
ULONG NWFSGetSeconds(void)
{
SYSTEMTIME stime;
register ULONG Seconds;
GetLocalTime(&stime);
Seconds = stime.wSecond + (stime.wMinute * 60) +
(stime.wHour * 60 * 60) + (stime.wDay * 24 * 60 * 60);
return Seconds;
}
ULONG NWFSGetSystemTime(void)
{
SYSTEMTIME stime;
ULONG DateAndTime = 0;
GetLocalTime(&stime);
DateAndTime |= stime.wSecond >> 1;
DateAndTime |= stime.wMinute << 5;
DateAndTime |= stime.wHour << 11;
DateAndTime |= stime.wDay << 16;
DateAndTime |= stime.wMonth << 21;
// year is delta of 1980
stime.wYear = stime.wYear % 100;
if (stime.wYear >= 80)
{
// year is relative to 1980
DateAndTime |= (stime.wYear - 80) << 25;
}
else
{
// year is relative to 2000
DateAndTime |= (stime.wYear + 80) << 25;
}
return DateAndTime;
}
ULONG NWFSSystemToNetwareTime(ULONG SystemTime)
{
return SystemTime;
}
ULONG NWFSNetwareToSystemTime(ULONG NetwareTime)
{
return NetwareTime;
}
#endif