forked from synopse/mORMot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SynFPCLinux.pas
426 lines (348 loc) · 12.2 KB
/
SynFPCLinux.pas
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/// wrapper for Windows functions translated to Linux for FPC
unit SynFPCLinux;
{
This file is part of Synopse mORMot framework.
Synopse mORMot framework. Copyright (C) 2017 Arnaud Bouchez
Synopse Informatique - http://synopse.info
*** BEGIN LICENSE BLOCK *****
Version: MPL 1.1/GPL 2.0/LGPL 2.1
The contents of this file are subject to the Mozilla Public License Version
1.1 (the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.mozilla.org/MPL
Software distributed under the License is distributed on an "AS IS" basis,
WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the License.
The Original Code is Synopse mORMot framework.
The Initial Developer of the Original Code is Alfred Glaenzer.
Portions created by the Initial Developer are Copyright (C) 2017
the Initial Developer. All Rights Reserved.
Contributor(s):
- Arnaud Bouchez
Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
in which case the provisions of the GPL or the LGPL are applicable instead
of those above. if you wish to allow use of your version of this file only
under the terms of either the GPL or the LGPL, and not to allow others to
use your version of this file under the terms of the MPL, indicate your
decision by deleting the provisions above and replace them with the notice
and other provisions required by the GPL or the LGPL. if you do not delete
the provisions above, a recipient may use your version of this file under
the terms of any one of the MPL, the GPL or the LGPL.
***** END LICENSE BLOCK *****
Version 1.18
- initial revision
}
interface
{$MODE objfpc}
{$inline on}
{$h+}
{$R-} // disable Range checking in our code
{$S-} // disable Stack checking in our code
{$ifdef ANDROID}
{$define LINUX}
{$endif}
{$ifdef BSD}
{$define LINUX}
{$endif}
uses
SysUtils
{$ifdef Linux}
,UnixType
{$endif};
const
{ HRESULT codes, delphi-like }
NOERROR = 0;
NO_ERROR = 0;
INVALID_HANDLE_VALUE = THandle(-1);
LOCALE_USER_DEFAULT = $400;
NORM_IGNORECASE = 1;
/// compatibility function, wrapping Win32 API mutex initialization
procedure InitializeCriticalSection(var cs : TRTLCriticalSection); inline;
/// compatibility function, wrapping Win32 API mutex finalization
procedure DeleteCriticalSection(var cs : TRTLCriticalSection); inline;
{$ifdef Linux}
{$ifndef BSD}
const
CLOCK_MONOTONIC = 1;
CLOCK_MONOTONIC_COARSE = 6; // see http://lwn.net/Articles/347811
var
// contains CLOCK_MONOTONIC_COARSE since kernel 2.6.32
CLOCK_MONOTONIC_TICKCOUNT: integer = CLOCK_MONOTONIC;
{$endif}
/// compatibility function, wrapping Win32 API high resolution timer
procedure QueryPerformanceCounter(var Value: Int64); inline;
/// compatibility function, wrapping Win32 API high resolution timer
function QueryPerformanceFrequency(var Value: Int64): boolean;
/// compatibility function, wrapping Win32 API file position change
function SetFilePointer(hFile: cInt; lDistanceToMove: TOff;
lpDistanceToMoveHigh: Pointer; dwMoveMethod: cint): TOff; inline;
/// compatibility function, wrapping Win32 API file size retrieval
function GetFileSize(hFile: cInt; lpFileSizeHigh: PDWORD): DWORD;
/// compatibility function, wrapping Win32 API file truncate at current position
procedure SetEndOfFile(hFile: cInt); inline;
/// compatibility function, wrapping Win32 API last error code
function GetLastError: longint; inline;
/// compatibility function, wrapping Win32 API last error code
procedure SetLastError(error: longint); inline;
/// compatibility function, wrapping Win32 API text comparison
function CompareStringW(GetThreadLocale: DWORD; dwCmpFlags: DWORD; lpString1: Pwidechar;
cchCount1: longint; lpString2: Pwidechar; cchCount2: longint): longint; inline;
/// returns the current UTC time
function GetNowUTC: TDateTime;
/// returns the current UTC time, as Unix Epoch seconds
function GetUnixUTC: cardinal;
/// returns the current UTC time as TSystemTime
procedure GetNowUTCSystem(var result: TSystemTime);
var
/// will contain the current Linux kernel revision, as one integer
// - e.g. $030d02 for 3.13.2, or $020620 for 2.6.32
KernelRevision: cardinal;
{$endif Linux}
/// compatibility function, to be implemented according to the running OS
// - expect more or less the same result as the homonymous Win32 API function
function GetTickCount64: Int64;
/// compatibility function, to be implemented according to the running OS
// - expect more or less the same result as the homonymous Win32 API function
function GetTickCount: cardinal; inline;
/// similar to Windows sleep() API call, to be truly cross-platform
// - it should have a millisecond resolution, and handle ms=0 as a switch to
// another pending thread, i.e. call sched_yield() API
procedure SleepHiRes(ms: cardinal); inline;
implementation
{$ifdef Linux}
uses
Classes, Unix, BaseUnix, {$ifndef BSD}linux,{$endif} dynlibs;
{$endif}
procedure InitializeCriticalSection(var cs : TRTLCriticalSection);
begin
InitCriticalSection(cs);
end;
procedure DeleteCriticalSection(var cs : TRTLCriticalSection);
begin
{$ifndef BSD}
if cs.__m_kind<>0 then
{$endif}
DoneCriticalSection(cs);
end;
{$ifdef Linux}
const // Date Translation - see http://en.wikipedia.org/wiki/Julian_day
HoursPerDay = 24;
MinsPerHour = 60;
SecsPerMin = 60;
MinsPerDay = HoursPerDay*MinsPerHour;
SecsPerDay = MinsPerDay*SecsPerMin;
SecsPerHour = MinsPerHour*SecsPerMin;
C1970 = 2440588;
D0 = 1461;
D1 = 146097;
D2 = 1721119;
procedure JulianToGregorian(JulianDN: integer; out Year,Month,Day: Word);
var YYear,XYear,Temp,TempMonth: integer;
begin
Temp := ((JulianDN-D2) shl 2)-1;
JulianDN := Temp div D1;
XYear := (Temp mod D1) or 3;
YYear := (XYear div D0);
Temp := ((((XYear mod D0)+4) shr 2)*5)-3;
Day := ((Temp mod 153)+5) div 5;
TempMonth := Temp div 153;
if TempMonth>=10 then begin
inc(YYear);
dec(TempMonth,12);
end;
inc(TempMonth,3);
Month := TempMonth;
Year := YYear+(JulianDN*100);
end;
procedure EpochToLocal(epoch: cardinal; out year,month,day,hour,minute,second: Word);
begin
JulianToGregorian((epoch div SecsPerDay)+C1970,year,month,day);
epoch := abs(epoch mod SecsPerDay);
Hour := epoch div SecsPerHour;
epoch := epoch mod SecsPerHour;
Minute := epoch div SecsPerMin;
Second := epoch mod SecsPerMin;
end;
function GetNowUTC: TDateTime;
var SystemTime: TSystemTime;
begin
GetNowUTCSystem(SystemTime);
result := SystemTimeToDateTime(SystemTime);
end;
procedure GetNowUTCSystem(var result: TSystemTime);
var tz: timeval;
begin
fpgettimeofday(@tz,nil);
EpochToLocal(tz.tv_sec,
result.year,result.month,result.day,result.hour,result.Minute,result.Second);
result.MilliSecond := tz.tv_usec div 1000;
end;
function GetUnixUTC: cardinal;
var tz: timeval;
begin
fpgettimeofday(@tz,nil);
result := tz.tv_sec;
end;
function GetTickCount: cardinal;
begin
result := cardinal(GetTickCount64);
end;
const
C_THOUSAND = Int64(1000);
C_MILLION = Int64(C_THOUSAND * C_THOUSAND);
C_BILLION = Int64(C_THOUSAND * C_THOUSAND * C_THOUSAND);
{$ifdef Darwin}
// clock_gettime() is not implemented: http://stackoverflow.com/a/5167506/458259
type
TTimebaseInfoData = record
Numer: cardinal;
Denom: cardinal;
end;
function mach_absolute_time: UInt64;
cdecl external 'libc.dylib' name 'mach_absolute_time';
function mach_timebase_info(var TimebaseInfoData: TTimebaseInfoData): Integer;
cdecl external 'libc.dylib' name 'mach_timebase_info';
var
mach_timeinfo: TTimebaseInfoData;
mach_timecoeff: double;
procedure QueryPerformanceCounter(var Value: Int64);
begin // returns time in nano second resolution
Value := mach_absolute_time;
if mach_timeinfo.Denom=1 then
if mach_timeinfo.Numer=1 then
// seems to be the case on Intel CPUs
exit else
Value := Value*mach_timeinfo.Numer else
// use floating point to avoid potential overflow
Value := round(Value*mach_timecoeff);
end;
function QueryPerformanceFrequency(var Value: Int64):boolean;
begin
Value := C_BILLION; // 1 second = 1e9 nanoseconds
result := true;
end;
function GetTickCount64: Int64;
begin
QueryPerformanceCounter(result);
result := result div C_MILLION; // 1 millisecond = 1e6 nanoseconds
end;
{$else}
{$ifdef BSD}
function clock_gettime(ID: cardinal; r: ptimespec): Integer;
cdecl external 'libc.so' name 'clock_gettime';
function clock_getres(ID: cardinal; r: ptimespec): Integer;
cdecl external 'libc.so' name 'clock_getres';
const
CLOCK_MONOTONIC = 4;
CLOCK_MONOTONIC_FAST = 12; // FreeBSD specific
CLOCK_MONOTONIC_TICKCOUNT = CLOCK_MONOTONIC;
{$endif}
function GetTickCount64: Int64;
var tp: timespec;
begin
clock_gettime(CLOCK_MONOTONIC_TICKCOUNT,@tp);
Result := (Int64(tp.tv_sec) * 1000) + (tp.tv_nsec div 1000000);
end;
procedure QueryPerformanceCounter(var Value: Int64);
var r : TTimeSpec;
begin
clock_gettime(CLOCK_MONOTONIC,@r);
value := r.tv_nsec+r.tv_sec*C_BILLION;
end;
function QueryPerformanceFrequency(var Value: Int64): boolean;
var r : TTimeSpec;
FIsHighResolution : boolean;
begin
FIsHighResolution := (clock_getres(CLOCK_MONOTONIC,@r) = 0);
FIsHighResolution := FIsHighResolution and (r.tv_nsec <> 0);
if (r.tv_nsec <> 0) then
value := C_BILLION div (r.tv_nsec+(r.tv_sec*C_BILLION));
result := FIsHighResolution;
end;
{$endif Darwin}
function SetFilePointer(hFile: cInt; lDistanceToMove: TOff;
lpDistanceToMoveHigh: Pointer; dwMoveMethod: cint): TOff;
var offs: Int64;
begin
Int64Rec(offs).Lo := lDistanceToMove;
if lpDistanceToMoveHigh=nil then
Int64Rec(offs).Hi := 0 else
Int64Rec(offs).Hi := PDWord(lpDistanceToMoveHigh)^;
offs := FpLseek(hFile,offs,dwMoveMethod);
result := Int64Rec(offs).Lo;
if lpDistanceToMoveHigh<>nil then
PDWord(lpDistanceToMoveHigh)^ := Int64Rec(offs).Hi;
end;
procedure SetEndOfFile(hFile: cInt);
begin
FpFtruncate(hFile,FPLseek(hFile,0,SEEK_CUR));
end;
function GetLastError: longint;
begin
result := fpgeterrno;
end;
procedure SetLastError(error: longint);
begin
fpseterrno(error);
end;
function CompareStringW(GetThreadLocale: DWORD; dwCmpFlags: DWORD; lpString1: Pwidechar;
cchCount1: longint; lpString2: Pwidechar; cchCount2: longint): longint;
var W1,W2: UnicodeString; // faster than WideString under Windows
begin
W1 := lpString1;
W2 := lpString2;
if dwCmpFlags and NORM_IGNORECASE<>0 then
result := WideCompareText(W1,W2) else
result := WideCompareStr(W1,W2);
end;
function GetFileSize(hFile: cInt; lpFileSizeHigh: PDWORD): DWORD;
var FileInfo: TStat;
begin
if fpFstat(hFile,FileInfo)<>0 then
FileInfo.st_Size := 0; // returns 0 on error
result := Int64Rec(FileInfo.st_Size).Lo;
if lpFileSizeHigh<>nil then
lpFileSizeHigh^ := Int64Rec(FileInfo.st_Size).Hi;
end;
procedure SleepHiRes(ms: cardinal);
begin
SysUtils.Sleep(ms);
end;
procedure GetKernelRevision;
var uts: UtsName;
P: PAnsiChar;
function GetNext: cardinal;
var c: cardinal;
begin
result := 0;
repeat
c := ord(P^)-48;
if c>9 then
break else
result := result*10+c;
inc(P);
until false;
if P^='.' then
inc(P);
end;
begin
if fpuname(uts)=0 then begin
P := @uts.release;
KernelRevision := GetNext shl 16+GetNext shl 8+GetNext;
{$ifndef BSD}
if KernelRevision>=$020620 then // expects kernel 2.6.32 or higher
CLOCK_MONOTONIC_TICKCOUNT := CLOCK_MONOTONIC_COARSE else
CLOCK_MONOTONIC_TICKCOUNT := CLOCK_MONOTONIC;
{$endif BSD}
end;
{$ifdef Darwin}
mach_timebase_info(mach_timeinfo);
mach_timecoeff := mach_timeinfo.Numer/mach_timeinfo.Denom;
{$endif}
end;
initialization
GetKernelRevision;
{$endif Linux}
end.