fix md5 length bug
[lcore.git] / btime.pas
1 { Copyright (C) 2005 Bas Steendijk and Peter Green\r
2   For conditions of distribution and use, see copyright notice in zlib_license.txt\r
3   which is included in the package\r
4   ----------------------------------------------------------------------------- }\r
5 {\r
6 this unit returns unix timestamp with seconds and microseconds (as float)\r
7 works on windows/delphi, and on freepascal on unix.\r
8 }\r
9 \r
10 \r
11 unit btime;\r
12 {$ifdef fpc}\r
13   {$mode delphi}\r
14 {$endif}\r
15 \r
16 {$include lcoreconfig.inc}\r
17 \r
18 interface\r
19 \r
20 {$ifdef mswindows}\r
21 uses\r
22   ltimevalstuff;\r
23 {$endif}  \r
24 \r
25 type\r
26   float=extended;\r
27   tunixtimeint={$ifdef ver100}longint;{$else}int64;{$endif}\r
28 \r
29 const\r
30   colorburst=39375000/11;  {3579545.4545....}\r
31 \r
32 var\r
33   timezone:integer;\r
34   timezonestr:string;\r
35   irctime,unixtime:tunixtimeint;\r
36   tickcount:integer;\r
37   settimebias:tunixtimeint;\r
38   performancecountfreq:extended;\r
39 \r
40 function irctimefloat:float;\r
41 function irctimeint:tunixtimeint;\r
42 \r
43 //unix timestamp (UTC) float seconds\r
44 function unixtimefloat:float;\r
45 function unixtimeint:tunixtimeint;\r
46 \r
47 //monotonic float seconds\r
48 function monotimefloat:float;\r
49 \r
50 //monotonic (alias, old function name)\r
51 function wintimefloat:float;\r
52 \r
53 procedure settime(newtime:tunixtimeint);\r
54 procedure gettimezone;\r
55 procedure timehandler;\r
56 procedure init;\r
57 \r
58 function timestring(i:tunixtimeint):string;      // Wednesday August 15 2012 -- 16:21:09 +02:00\r
59 function timestrshort(i:tunixtimeint):string;    // Wed Aug 15 16:21:09 2012\r
60 function timestriso(i:tunixtimeint):string;      // 2012-08-15 16:21:09\r
61 function timestrisoutc(i:float):string;          // 2012-08-15T14:21:09.255553Z\r
62 \r
63 procedure beginhightimerrate;\r
64 procedure endhightimerrate;\r
65 \r
66 {$ifdef mswindows}\r
67 function unixtimefloat_systemtime:float;\r
68 {$endif}\r
69 \r
70 function oletounixfloat(t:float):float;\r
71 function oletounix(t:tdatetime):tunixtimeint;\r
72 function unixtoole(i:float):tdatetime;\r
73 \r
74 {$ifdef mswindows}\r
75 function mmtimefloat:float;\r
76 function qpctimefloat:float;\r
77 {$endif}\r
78 \r
79 {$ifdef mswindows}\r
80 procedure gettimeofday(var tv:ttimeval);\r
81 {$endif}\r
82 \r
83 \r
84 const\r
85   mmtime_driftavgsize=32;\r
86   mmtime_warmupnum=4;\r
87   mmtime_warmupcyclelength=15;\r
88 var\r
89   //this flag is to be set when btime has been running long enough to stabilise\r
90   warmup_finished:boolean;\r
91 \r
92   timefloatbias:float;\r
93   ticks_freq:float=0;\r
94   ticks_freq2:float=0;\r
95   ticks_freq_known:boolean=false;\r
96   lastunixtimefloat:float=0;\r
97   lastsynctime:float=0;\r
98   lastsyncbias:float=0;\r
99 \r
100   mmtime_last:integer=0;\r
101   mmtime_wrapadd:float;\r
102   mmtime_lastsyncmm:float=0;\r
103   mmtime_lastsyncqpc:float=0;\r
104   mmtime_drift:float=1;\r
105   mmtime_lastresult:float;\r
106   mmtime_nextdriftcorrection:float;\r
107   mmtime_driftavg:array[0..mmtime_driftavgsize] of float;\r
108   mmtime_synchedqpc:boolean;\r
109 \r
110   mmtime_prev_drift:float;\r
111   mmtime_prev_lastsyncmm:float;\r
112   mmtime_prev_lastsyncqpc:float;\r
113 \r
114 implementation\r
115 \r
116 \r
117 \r
118 uses\r
119   {$ifdef UNIX}\r
120     {$ifdef VER1_0}\r
121       linux,\r
122     {$else}\r
123       baseunix,unix,unixutil,sockets, {unixutil and sockets needed by unixstuff.inc on some compiler versions}\r
124     {$endif}\r
125     {$ifdef linux}\r
126       dl,\r
127     {$endif}\r
128   {$else}\r
129     windows,unitsettc,mmsystem,\r
130   {$endif}\r
131   sysutils;\r
132 \r
133   {$include unixstuff.inc}\r
134 \r
135 \r
136 const\r
137   daysdifference=25569;\r
138 \r
139 function oletounixfloat(t:float):float;\r
140 begin\r
141   t := (t - daysdifference) * 86400;\r
142   result := t;\r
143 end;\r
144 \r
145 function oletounix(t:tdatetime):tunixtimeint;\r
146 begin\r
147   result := round(oletounixfloat(t));\r
148 end;\r
149 \r
150 function unixtoole(i:float):tdatetime;\r
151 begin\r
152   result := ((i)/86400)+daysdifference;\r
153 end;\r
154 \r
155 const\r
156   highdwordconst=65536.0 * 65536.0;\r
157 \r
158 function utrunc(f:float):integer;\r
159 {converts float to integer, in 32 bits unsigned range}\r
160 begin\r
161   if f >= (highdwordconst/2) then f := f - highdwordconst;\r
162   result := trunc(f);\r
163 end;\r
164 \r
165 function uinttofloat(i:integer):float;\r
166 {converts 32 bits unsigned integer to float}\r
167 begin\r
168   result := i;\r
169   if result < 0 then result := result + highdwordconst;\r
170 end;\r
171 \r
172 {$ifdef unix}\r
173 {-----------------------------------------*nix/freepascal code to read time }\r
174 \r
175 function unixtimefloat:float;\r
176 var\r
177   tv:ttimeval;\r
178 begin\r
179   gettimeofday(tv);\r
180   result := tv.tv_sec+(tv.tv_usec/1000000);\r
181 end;\r
182 \r
183 {$ifdef linux}\r
184   {$define monotimefloat_implemented}\r
185   const\r
186     CLOCK_MONOTONIC = 1;\r
187   type \r
188     ptimeval = ^ttimeval;\r
189     tclock_gettime = function(clk_id: integer; tp: ptimeval): integer; cdecl;\r
190 \r
191   var\r
192     librt_handle:pointer;\r
193     librt_inited:boolean;\r
194     clock_gettime: tclock_gettime;\r
195 \r
196   function monotimefloat:float;\r
197   var\r
198     ts: ttimeval;\r
199   begin\r
200     if not librt_inited then begin\r
201       librt_inited := true;\r
202       clock_gettime := nil;\r
203       librt_handle := dlopen('librt.so', RTLD_LAZY);\r
204       if assigned(librt_handle) then begin\r
205         clock_gettime := dlsym(librt_handle, 'clock_gettime');\r
206       end;\r
207     end;\r
208     if assigned(clock_gettime) then begin\r
209       if clock_gettime(CLOCK_MONOTONIC, @ts) = 0 then begin\r
210         //note this really returns nanoseconds\r
211         result := ts.tv_sec + ts.tv_usec / 1000000000.0;\r
212         exit;\r
213       end;\r
214     end;\r
215     //fallback\r
216     result := unixtimefloat;\r
217   end;\r
218 \r
219 \r
220 {$endif} {linux}\r
221 \r
222 {$ifdef darwin} {mac OS X}\r
223 {$define monotimefloat_implemented}\r
224 \r
225   type\r
226     tmach_timebase_info = packed record\r
227       numer: longint;\r
228       denom: longint;\r
229     end;\r
230     pmach_timebase_info = ^tmach_timebase_info;\r
231      \r
232     function mach_absolute_time: int64; cdecl; external;\r
233     function mach_timebase_info(info: pmach_timebase_info): integer; cdecl; external;\r
234 \r
235   var\r
236     timebase_info: tmach_timebase_info;\r
237 \r
238   function monotimefloat:float;\r
239   var\r
240     i:int64;\r
241   begin\r
242     if timebase_info.denom = 0 then begin\r
243       mach_timebase_info(@timebase_info);\r
244     end;\r
245     i := mach_absolute_time;\r
246     result := (i * timebase_info.numer div timebase_info.denom) / 1000000000.0;\r
247   end;\r
248 \r
249 {$endif} {darwin, mac OS X}\r
250 \r
251 \r
252 {$ifndef monotimefloat_implemented} {fallback}\r
253   \r
254   function monotimefloat:extended;\r
255   begin\r
256     result := unixtimefloat;\r
257   end;\r
258 \r
259 {$endif} {monotimefloat fallback}\r
260 \r
261 \r
262 function unixtimeint:tunixtimeint;\r
263 var\r
264   tv:ttimeval;\r
265 begin\r
266   gettimeofday(tv);\r
267   result := tv.tv_sec;\r
268 end;\r
269 \r
270 {------------------------------ end of *nix/freepascal section}\r
271 \r
272 {$else} {delphi 3}\r
273 {------------------------------ windows/delphi code to read time}\r
274 \r
275 \r
276 {simulate gettimeofday on windows so one can always use gettimeofday if preferred}\r
277 \r
278 procedure gettimeofday(var tv:ttimeval);\r
279 var\r
280   e:extended;\r
281 begin\r
282   e := unixtimefloat;\r
283   tv.tv_sec := round(int(e));\r
284   tv.tv_usec := trunc(frac(e)*1000000);\r
285   {just in case}\r
286   if (tv.tv_usec < 0) then tv.tv_usec := 0;\r
287   if (tv.tv_usec > 999999) then tv.tv_usec := 999999;\r
288 end;\r
289 \r
290 \r
291 {\r
292 time float: gettickcount\r
293 resolution: 9x: ~55 ms NT: 1/64th of a second\r
294 guarantees: continuous without any jumps\r
295 frequency base: same as system clock.\r
296 epoch: system boot\r
297 note: if called more than once per 49.7 days, 32 bits wrapping is compensated for and it keeps going on.\r
298 note: i handle the timestamp as signed integer, but with the wrap compensation that works as well, and is faster\r
299 }\r
300 \r
301 function mmtimefloat:float;\r
302 const\r
303   wrapduration=highdwordconst * 0.001;\r
304 var\r
305   i:integer;\r
306   temp:float;\r
307 begin\r
308   i := gettickcount; {timegettime}\r
309   if i < mmtime_last then begin\r
310     mmtime_wrapadd := mmtime_wrapadd + wrapduration;\r
311   end;\r
312   mmtime_last := i;\r
313   result := mmtime_wrapadd + i * 0.001;\r
314 \r
315   if (ticks_freq <> 0) and ticks_freq_known then begin\r
316     {the value we get is rounded to 1 ms, but the ticks are not a multiple of 1 ms\r
317     this makes the value noisy. use the known ticks frequency to restore the original value}\r
318     temp := int((result / ticks_freq)+0.5) * ticks_freq;\r
319 \r
320     {if the known ticks freq is wrong (can happen), disable the un-rounding behavior\r
321     this will be a bit less accurate but it prevents problems}\r
322     if abs(temp - result) > 0.002 then begin\r
323       ticks_freq := 0;\r
324     end else result := temp;\r
325   end;\r
326 end;\r
327 \r
328 procedure measure_ticks_freq;\r
329 var\r
330   f,g:float;\r
331   o:tosversioninfo;\r
332   isnt:boolean;\r
333 {  is9x:boolean;}\r
334   adjust1,adjust2:cardinal;\r
335   adjustbool:longbool;\r
336 begin\r
337   if (performancecountfreq = 0) then qpctimefloat;\r
338   ticks_freq_known := false;\r
339   settc;\r
340   f := mmtimefloat;\r
341   repeat g := mmtimefloat until g > f;\r
342   unsettc;\r
343   f := g - f;\r
344   fillchar(o,sizeof(o),0);\r
345   o.dwOSVersionInfoSize := sizeof(o);\r
346   getversionex(o);\r
347   isnt := o.dwPlatformId = VER_PLATFORM_WIN32_NT;\r
348 {  is9x := o.dwPlatformId = VER_PLATFORM_WIN32_WINDOWS;}\r
349 \r
350   ticks_freq2 := f;\r
351   mmtime_synchedqpc := false;\r
352 \r
353   if (isnt and (o.dwMajorVersion >= 5)) then begin\r
354     {windows 2000 and later: query tick rate from OS in 100 ns units\r
355     typical rates: XP: 156250 or 100144, windows 7: 156001}\r
356     if GetSystemTimeAdjustment(adjust1,adjust2,adjustbool) then begin\r
357       ticks_freq := adjust1 / 10000000.0;\r
358       ticks_freq_known := true;\r
359       mmtime_synchedqpc := false;\r
360     end;\r
361   end;\r
362 \r
363   {9x}\r
364   if (performancecountfreq = 1193182) and (f >= 0.050) and (f <= 0.060) then begin\r
365     ticks_freq_known := true;\r
366     ticks_freq := 65536 / (colorburst / 3);\r
367     mmtime_synchedqpc := true;\r
368   end;\r
369   ticks_freq_known := true;\r
370   if ticks_freq <> 0 then ticks_freq2 := ticks_freq;\r
371 //  writeln(formatfloat('0.000000',ticks_freq));\r
372 end;\r
373 \r
374 {\r
375 time float: QueryPerformanceCounter\r
376 resolution: <1us\r
377 guarantees: can have forward jumps depending on hardware. can have forward and backwards jitter on dual core.\r
378 frequency base: on NT, not the system clock, drifts compared to it.\r
379 epoch: system boot\r
380 }\r
381 function qpctimefloat:extended;\r
382 var\r
383   p:packed record\r
384     lowpart:longint;\r
385     highpart:longint\r
386   end;\r
387   p2:tlargeinteger absolute p;\r
388   e:extended;\r
389 begin\r
390   if performancecountfreq = 0 then begin\r
391     QueryPerformancefrequency(p2);\r
392     e := p.lowpart;\r
393     if e < 0 then e := e + highdwordconst;\r
394     performancecountfreq := ((p.highpart*highdwordconst)+e);\r
395   end;\r
396   queryperformancecounter(p2);\r
397   e := p.lowpart;\r
398   if e < 0 then e := e + highdwordconst;\r
399 \r
400   result := ((p.highpart*highdwordconst)+e)/performancecountfreq;\r
401 end;\r
402 \r
403 {\r
404 time float: QPC locked to gettickcount\r
405 resolution: <1us\r
406 guarantees: continuous without any jumps\r
407 frequency base: same as system clock.\r
408 epoch: system boot\r
409 }\r
410 \r
411 function mmqpctimefloat:float;\r
412 const\r
413   maxretries=5;\r
414   margin=0.002;\r
415 var\r
416 {  jump:float;}\r
417   mm,f,qpc,newdrift:float;\r
418   qpcjumped:boolean;\r
419   a,b:integer;\r
420 {  retrycount:integer;}\r
421 begin\r
422   if not ticks_freq_known then measure_ticks_freq;\r
423 {  retrycount := maxretries;}\r
424 \r
425   qpc := qpctimefloat;\r
426   mm := mmtimefloat;\r
427   f := (qpc - mmtime_lastsyncqpc) * mmtime_drift + mmtime_lastsyncmm;\r
428   //writeln('XXXX ',formatfloat('0.000000',qpc-mm));\r
429   qpcjumped := ((f-mm) > ticks_freq2+margin) or ((f-mm) < -margin);\r
430 //  if qpcjumped then writeln('qpc jumped ',(f-mm));\r
431   if ((qpc > mmtime_nextdriftcorrection) and not mmtime_synchedqpc) or qpcjumped then begin\r
432 \r
433     mmtime_nextdriftcorrection := qpc + 1;\r
434     repeat\r
435       mmtime_prev_drift := mmtime_drift;\r
436       mmtime_prev_lastsyncmm := mmtime_lastsyncmm;\r
437       mmtime_prev_lastsyncqpc := mmtime_lastsyncqpc;\r
438 \r
439       mm := mmtimefloat;\r
440     {  dec(retrycount);}\r
441       settc;\r
442       result := qpctimefloat;\r
443       f := mmtimefloat;\r
444       repeat\r
445         if f = mm then result := qpctimefloat;\r
446         f := mmtimefloat\r
447       until f > mm;\r
448       qpc := qpctimefloat;\r
449 \r
450       unsettc;\r
451       if (qpc > result + 0.0001) then begin\r
452         continue;\r
453       end;\r
454       mm := f;\r
455 \r
456       if (mmtime_lastsyncqpc <> 0) and not qpcjumped then begin\r
457         newdrift := (mm - mmtime_lastsyncmm) / (qpc - mmtime_lastsyncqpc);\r
458         mmtime_drift := newdrift;\r
459      {   writeln('raw drift: ',formatfloat('0.00000000',mmtime_drift));}\r
460         move(mmtime_driftavg[0],mmtime_driftavg[1],sizeof(mmtime_driftavg[0])*high(mmtime_driftavg));\r
461         mmtime_driftavg[0] := mmtime_drift;\r
462 \r
463 {        write('averaging drift ',formatfloat('0.00000000',mmtime_drift),' -> ');}\r
464 {        mmtime_drift := 0;}\r
465         b := 0;\r
466         for a := 0 to high(mmtime_driftavg) do begin\r
467           if mmtime_driftavg[a] <> 0 then inc(b);\r
468 {          mmtime_drift := mmtime_drift + mmtime_driftavg[a];}\r
469         end;\r
470 {        mmtime_drift := mmtime_drift / b;}\r
471         a := 5;\r
472         if (b = 1) then a := 5 else if (b = 2) then a := 15 else if (b = 3) then a := 30 else if (b = 4) then a := 60 else if (b = 5) then a := 120 else if (b >= 5) then a := 120;\r
473         mmtime_nextdriftcorrection := qpc + a;\r
474         if (b >= 2) then warmup_finished := true;\r
475 {        writeln(formatfloat('0.00000000',mmtime_drift));}\r
476        if mmtime_synchedqpc then mmtime_drift := 1;\r
477       end;\r
478 \r
479       mmtime_lastsyncqpc := qpc;\r
480       mmtime_lastsyncmm := mm;\r
481   {   writeln(formatfloat('0.00000000',mmtime_drift));}\r
482       break;\r
483     until false;\r
484 \r
485 \r
486     qpc := qpctimefloat;\r
487 \r
488     result := (qpc - mmtime_lastsyncqpc) * mmtime_drift + mmtime_lastsyncmm;\r
489 \r
490     {f := (qpc - mmtime_prev_lastsyncqpc) * mmtime_prev_drift + mmtime_prev_lastsyncmm;\r
491     jump := result-f;\r
492     writeln('jump ',formatfloat('0.000000',jump),'   drift ',formatfloat('0.00000000',mmtime_drift),' duration ',formatfloat('0.000',(mmtime_lastsyncqpc-mmtime_prev_lastsyncqpc)),' ',formatfloat('0.00000000',jump/(mmtime_lastsyncqpc-mmtime_prev_lastsyncqpc)));}\r
493 \r
494     f := result;\r
495   end;\r
496 \r
497   result := f;\r
498 \r
499   if (result < mmtime_lastresult) then result := mmtime_lastresult;\r
500   mmtime_lastresult := result;\r
501 end;\r
502 \r
503 { free pascals tsystemtime is incompatible with windows api calls\r
504  so we declare it ourselves - plugwash\r
505 }\r
506 {$ifdef fpc}\r
507 type\r
508   TSystemTime = record\r
509      wYear: Word;\r
510      wMonth: Word;\r
511      wDayOfWeek: Word;\r
512      wDay: Word;\r
513      wHour: Word;\r
514      wMinute: Word;\r
515      wSecond: Word;\r
516      wMilliseconds: Word;\r
517   end;\r
518  {$endif}\r
519 function Date_utc: extended;\r
520 var\r
521   SystemTime: TSystemTime;\r
522 begin\r
523   {$ifdef fpc}\r
524     GetsystemTime(@SystemTime);\r
525   {$else}\r
526     GetsystemTime(SystemTime);\r
527   {$endif}\r
528   with SystemTime do Result := EncodeDate(wYear, wMonth, wDay);\r
529 end;\r
530 \r
531 function Time_utc: extended;\r
532 var\r
533   SystemTime: TSystemTime;\r
534 begin\r
535   {$ifdef fpc}\r
536     GetsystemTime(@SystemTime);\r
537   {$else}\r
538     GetsystemTime(SystemTime);\r
539   {$endif}\r
540   with SystemTime do\r
541     Result := EncodeTime(wHour, wMinute, wSecond, wMilliSeconds);\r
542 end;\r
543 \r
544 function Now_utc: extended;\r
545 begin\r
546   Result := round(Date_utc) + Time_utc;\r
547 end;\r
548 \r
549 function unixtimefloat_systemtime:float;\r
550 begin\r
551   {result := oletounixfloat(now_utc);}\r
552 \r
553   {this method gives exactly the same result with extended precision, but is less sensitive to float rounding in theory}\r
554   result := oletounixfloat(int(date_utc+0.5))+time_utc*86400;\r
555 end;\r
556 \r
557 function monotimefloat:extended;\r
558 begin\r
559   result := mmqpctimefloat;\r
560 end;\r
561 \r
562 \r
563 \r
564 var\r
565   GetSystemTimePreciseAsFileTime:procedure(var v:tfiletime); stdcall;\r
566   win8inited:boolean;\r
567 \r
568 procedure initwin8;\r
569 var\r
570   dllhandle:thandle;\r
571 \r
572 begin\r
573   win8inited := true;\r
574   dllhandle := loadlibrary('kernel32.dll');\r
575   if (dllhandle <> 0) then begin\r
576     GetSystemTimePreciseAsFileTime := getprocaddress(dllhandle,'GetSystemTimePreciseAsFileTime');\r
577   end;\r
578 end;\r
579 \r
580 \r
581 function unixtimefloat_win8:float;\r
582 var\r
583   ft:tfiletime;\r
584   i:int64 absolute ft;\r
585 begin\r
586   GetSystemTimePreciseAsFileTime(ft);\r
587   {change from windows 1601-01-01 to unix 1970-01-01.\r
588   use integer math for this, to preserve precision}\r
589   dec(i, 116444736000000000);\r
590   result := (i / 10000000);\r
591 end;\r
592 \r
593 \r
594 \r
595 function unixtimefloat:float;\r
596 const\r
597   margin = 0.0012;\r
598 var\r
599   f,g,h:float;\r
600 begin\r
601   if not win8inited then initwin8;\r
602   if assigned(@GetSystemTimePreciseAsFileTime) then begin\r
603     result := unixtimefloat_win8;\r
604     exit;\r
605   end;\r
606 \r
607   result := monotimefloat+timefloatbias;\r
608   f := result-unixtimefloat_systemtime;\r
609   if ((f > ticks_freq2+margin) or (f < -margin)) or (timefloatbias = 0) then begin\r
610 //    writeln('unixtimefloat init');\r
611     f := unixtimefloat_systemtime;\r
612     settc;\r
613     repeat g := unixtimefloat_systemtime; h := monotimefloat until g > f;\r
614     unsettc;\r
615     timefloatbias := g-h;\r
616     result := unixtimefloat;\r
617   end;\r
618 \r
619   {for small changes backwards, guarantee no steps backwards}\r
620   if (result <= lastunixtimefloat) and (result > lastunixtimefloat-1.5) then result := lastunixtimefloat + 0.0000001;\r
621   lastunixtimefloat := result;\r
622 end;\r
623 \r
624 function unixtimeint:tunixtimeint;\r
625 begin\r
626   result := trunc(unixtimefloat);\r
627 end;\r
628 \r
629 {$endif}\r
630 {-----------------------------------------------end of platform specific}\r
631 \r
632 function wintimefloat:float;\r
633 begin\r
634   result := monotimefloat;\r
635 end;\r
636 \r
637 function irctimefloat:float;\r
638 begin\r
639   result := unixtimefloat+settimebias;\r
640 end;\r
641 \r
642 function irctimeint:tunixtimeint;\r
643 begin\r
644   result := unixtimeint+settimebias;\r
645 end;\r
646 \r
647 \r
648 procedure settime(newtime:tunixtimeint);\r
649 var\r
650   a:tunixtimeint;\r
651 begin\r
652   a := irctimeint-settimebias;\r
653   if newtime = 0 then settimebias := 0 else settimebias := newtime-a;\r
654 \r
655   irctime := irctimeint;\r
656 end;\r
657 \r
658 procedure timehandler;\r
659 begin\r
660   if unixtime = 0 then init;\r
661   unixtime := unixtimeint;\r
662   irctime := irctimeint;\r
663   if unixtime and 63 = 0 then begin\r
664     {update everything, apply timezone changes, clock changes, etc}\r
665     gettimezone;\r
666     timefloatbias := 0;\r
667     unixtime := unixtimeint;\r
668     irctime := irctimeint;\r
669   end;\r
670 end;\r
671 \r
672 \r
673 procedure gettimezone;\r
674 var\r
675   {$ifdef UNIX}\r
676     {$ifndef ver1_9_4}\r
677       {$ifndef ver1_0}\r
678         {$define above194}\r
679       {$endif}\r
680     {$endif}\r
681     {$ifndef above194}\r
682       hh,mm,ss:word;\r
683     {$endif}\r
684   {$endif}\r
685   l:integer;\r
686 begin\r
687   {$ifdef UNIX}\r
688     {$ifdef above194}\r
689       timezone := tzseconds;\r
690     {$else}\r
691       gettime(hh,mm,ss);\r
692       timezone := (longint(hh) * 3600 + mm * 60 + ss) - (unixtimeint mod 86400);\r
693     {$endif}\r
694   {$else}\r
695   timezone := round((now-now_utc)*86400);\r
696   {$endif}\r
697 \r
698   while timezone > 43200 do dec(timezone,86400);\r
699   while timezone < -43200 do inc(timezone,86400);\r
700 \r
701   if timezone >= 0 then timezonestr := '+' else timezonestr := '-';\r
702   l := abs(timezone) div 60;\r
703   timezonestr := timezonestr + char(l div 600 mod 10+48)+char(l div 60 mod 10+48)+':'+char(l div 10 mod 6+48)+char(l mod 10+48);\r
704 end;\r
705 \r
706 function timestrshort(i:tunixtimeint):string;\r
707 const\r
708   weekday:array[0..6] of string[4]=('Thu','Fri','Sat','Sun','Mon','Tue','Wed');\r
709   month:array[0..11] of string[4]=('Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec');\r
710 var\r
711   y,m,d,h,min,sec,ms:word;\r
712   t:tdatetime;\r
713 begin\r
714   t := unixtoole(i+timezone);\r
715   decodedate(t,y,m,d);\r
716   decodetime(t,h,min,sec,ms);\r
717   result := weekday[(i+timezone) div 86400 mod 7]+' '+month[m-1]+' '+inttostr(d)+' '+\r
718   inttostr(h div 10)+inttostr(h mod 10)+':'+inttostr(min div 10)+inttostr(min mod 10)+':'+inttostr(sec div 10)+inttostr(sec mod 10)+' '+\r
719   inttostr(y);\r
720 end;\r
721 \r
722 function timestring(i:tunixtimeint):string;\r
723 const\r
724   weekday:array[0..6] of string[10]=('Thursday','Friday','Saturday','Sunday','Monday','Tuesday','Wednesday');\r
725   month:array[0..11] of string[10]=('January','February','March','April','May','June','July','August','September','October','November','December');\r
726 var\r
727   y,m,d,h,min,sec,ms:word;\r
728   t:tdatetime;\r
729 begin\r
730   t := unixtoole(i+timezone);\r
731   decodedate(t,y,m,d);\r
732   decodetime(t,h,min,sec,ms);\r
733   result := weekday[(i+timezone) div 86400 mod 7]+' '+month[m-1]+' '+inttostr(d)+' '+inttostr(y)+' -- '+\r
734   inttostr(h div 10)+inttostr(h mod 10)+':'+inttostr(min div 10)+inttostr(min mod 10)+':'+inttostr(sec div 10)+inttostr(sec mod 10)+' '+\r
735   timezonestr;\r
736 end;\r
737 \r
738 function timestriso(i:tunixtimeint):string;\r
739 var\r
740   y,m,d,h,min,sec,ms:word;\r
741   t:tdatetime;\r
742 begin\r
743   t := unixtoole(i+timezone);\r
744   decodedate(t,y,m,d);\r
745   decodetime(t,h,min,sec,ms);\r
746   result := inttostr(y)+'-'+inttostr(m div 10)+inttostr(m mod 10)+'-'+inttostr(d div 10)+inttostr(d mod 10)+' '+inttostr(h div 10)+inttostr(h mod 10)+':'+inttostr(min div 10)+inttostr(min mod 10)+':'+inttostr(sec div 10)+inttostr(sec mod 10);\r
747 end;\r
748 \r
749 function timestrisoutc(i:float):string;\r
750 var\r
751   y,m,d,h,min,sec,ms:word;\r
752   t:tdatetime;\r
753   fr:float;\r
754 begin\r
755   t := unixtoole(i);\r
756   decodedate(t,y,m,d);\r
757   decodetime(t,h,min,sec,ms);\r
758   result := inttostr(y)+'-'+inttostr(m div 10)+inttostr(m mod 10)+'-'+inttostr(d div 10)+inttostr(d mod 10)+'T'+inttostr(h div 10)+inttostr(h mod 10)+':'+inttostr(min div 10)+inttostr(min mod 10)+':'+inttostr(sec div 10)+inttostr(sec mod 10);\r
759   fr := frac(i);\r
760 \r
761   result := result + '.'+\r
762   inttostr(trunc(fr*10) mod 10)+\r
763   inttostr(trunc(fr*100) mod 10)+\r
764   inttostr(trunc(fr*1000) mod 10)+\r
765   inttostr(trunc(fr*10000) mod 10)+\r
766   inttostr(trunc(fr*100000) mod 10)+\r
767   inttostr(trunc(fr*1000000) mod 10)+'Z';\r
768 \r
769 end;\r
770 \r
771 procedure beginhightimerrate;\r
772 begin\r
773   {$ifdef mswindows}timebeginperiod(1);{$endif}\r
774 end;\r
775 \r
776 procedure endhightimerrate;\r
777 begin\r
778   {$ifdef mswindows}timeendperiod(1);{$endif}\r
779 end;\r
780 \r
781 procedure init;\r
782 begin\r
783   {$ifdef btimehighrate}beginhightimerrate;{$endif}\r
784   fillchar(mmtime_driftavg,sizeof(mmtime_driftavg),0);\r
785   settimebias := 0;\r
786   gettimezone;\r
787   unixtime := unixtimeint;\r
788   irctime := irctimeint;\r
789 end;\r
790 \r
791 initialization init;\r
792 \r
793 end.\r