fpc/rtl/android/unixandroid.inc
ondrej 569c36cfa4 * timezones android compilation
git-svn-id: trunk@47326 -
(cherry picked from commit 7ded8307c9)
2023-12-13 16:01:01 +01:00

154 lines
4.8 KiB
PHP

{
This file is part of the Free Pascal run time library.
Copyright (c) 2016 by Yury Sidorov,
member of the Free Pascal development team.
Android-specific part of the System unit.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
type
UErrorCode = SizeInt;
int32_t = longint;
uint32_t = longword;
UBool = LongBool;
UCalendar = pointer;
UCalendarType = longint;
UCalendarDisplayNameType = longint;
UCalendarDateFields = longint;
const
UCAL_STANDARD = 0;
UCAL_SHORT_STANDARD = 1;
UCAL_DST = 2;
UCAL_SHORT_DST = 3;
UCAL_ZONE_OFFSET = 15;
UCAL_DST_OFFSET = 16;
var
ucal_open: function (zoneID: PUnicodeChar; len: int32_t; locale: PAnsiChar; ctype: UCalendarType; var status: UErrorCode): UCalendar; cdecl;
ucal_close: procedure (cal: UCalendar); cdecl;
ucal_getTimeZoneDisplayName: function (cal: UCalendar; dtype: UCalendarDisplayNameType; locale: PAnsiChar; result: PUnicodeChar; resultLength: int32_t;
var status: UErrorCode): int32_t; cdecl;
ucal_inDaylightTime: function (cal: UCalendar; var status: UErrorCode): UBool; cdecl;
ucal_get: function (cal: UCalendar; field: UCalendarDateFields; var status: UErrorCode): int32_t; cdecl;
GetIcuProc: function (const Name: AnsiString; var ProcPtr; libId: longint): boolean; external name 'ANDROID_GET_ICU_PROC';
procedure ReadTimeZoneFromICU;
var
locale: utf8string;
tz: unicodestring;
res: unicodestring;
TZStandardName: utf8string;
TZDaylightName: utf8string;
err: UErrorCode;
cal: UCalendar;
lTZInfo: TTZInfo;
lTZInfoEx: TTZInfoEx;
begin
if not Assigned(GetIcuProc) then exit;
if not GetIcuProc('ucal_open', ucal_open, 1) then exit;
if not GetIcuProc('ucal_close', ucal_close, 1) then exit;
if not GetIcuProc('ucal_getTimeZoneDisplayName', ucal_getTimeZoneDisplayName, 1) then exit;
if not GetIcuProc('ucal_inDaylightTime', ucal_inDaylightTime, 1) then exit;
if not GetIcuProc('ucal_get', ucal_get, 1) then exit;
locale:='en_US';
tz:=unicodestring(GetSystemProperty('persist.sys.timezone'));
err:=0;
cal:=ucal_open(PUnicodeChar(tz), Length(tz), PAnsiChar(locale), 0, err);
if cal = nil then
exit;
lTzinfo.daylight:=ucal_inDaylightTime(cal, err);
SetLength(res, 200);
SetLength(res, ucal_getTimeZoneDisplayName(cal, UCAL_SHORT_STANDARD, PAnsiChar(locale), PUnicodeChar(res), Length(res), err));
TZStandardName:=utf8string(res);
lTZInfoEx.name[False]:=TZStandardName;
SetLength(res, 200);
SetLength(res, ucal_getTimeZoneDisplayName(cal, UCAL_SHORT_DST, PAnsiChar(locale), PUnicodeChar(res), Length(res), err));
TZDaylightName:=utf8string(res);
lTZInfoEx.name[True]:=TZDaylightName;
lTZInfoEx.leap_correct:=0;
lTZInfoEx.leap_hit:=0;
lTZInfo.seconds:=ucal_get(cal, UCAL_ZONE_OFFSET, err) div 1000;
if lTZInfo.daylight then
lTZInfo.seconds:=Tzinfo.seconds + ucal_get(cal, UCAL_DST_OFFSET, err) div 1000;
// ToDo: correct validsince/validuntil values
lTZInfo.validsince:=low(lTZInfo.validsince);
lTZInfo.validuntil:=high(lTZInfo.validuntil);
SetTZInfo(lTZInfo, lTZInfoEx);
ucal_close(cal);
end;
type
Ptm = ^tm;
tm = record
tm_sec : longint;
tm_min : longint;
tm_hour : longint;
tm_mday : longint;
tm_mon : longint;
tm_year : longint;
tm_wday : longint;
tm_yday : longint;
tm_isdst : longint;
case boolean of
false : (tm_gmtoff : longint;tm_zone : Pchar);
true : (__tm_gmtoff : longint;__tm_zone : Pchar);
end;
function localtime(t: Ptime_t): Ptm; cdecl; external 'c' name 'localtime';
var
c_tzname: array[0..1] of PAnsiChar; external 'c' name 'tzname';
function ReadTimeZoneFromLibC: boolean;
var
t: time_t;
tt: Ptm;
lTZInfo: TTZInfo;
lTZInfoEx: TTZInfoEx;
begin
ReadTimeZoneFromLibC:=False;
lTZInfo:=default(TTZInfo);
lTZInfoEx:=default(TTZInfoEx);
lTZInfoEx.name[false]:=c_tzname[0];
lTZInfoEx.name[true]:=c_tzname[1];
t:=fptime;
tt:=localtime(@t);
if tt <> nil then
begin
lTZInfo.daylight:=tt^.tm_isdst <> 0;
lTZInfo.seconds:=tt^.tm_gmtoff;
// ToDo: correct validsince/validuntil values
lTZInfo.validsince:=low(lTZInfo.validsince);
lTZInfo.validuntil:=high(lTZInfo.validuntil);
SetTZInfo(lTZInfo, lTZInfoEx);
ReadTimeZoneFromLibC:=lTZInfoEx.name[false] <> '';
end;
end;
procedure InitLocalTime;
begin
if (SystemApiLevel <= 10) or not ReadTimeZoneFromLibC then
// If current Android version is too old and does not support timezone
// in libc, use ICU library.
ReadTimeZoneFromICU;
end;