Erlang library for conversion from one local time to another based on google cctz
The application is compatible with both rebar
or rebar3
. Add elocaltime
as a rebar dependency to your project:
{deps, [
{elocaltime, ".*", {git, "https://github.com/silviucpp/elocaltime.git", "master"}},
}.
All public functions exported accepts the datetime in both formats: calendar:datetime()
or unix timestamp (number of seconds since 1 Jan 970).
Timezones can be one of the following:
- Any named timezone part of the tz database: For example :
<<"Europe/Bucharest">>
. - Local timezone: Use
?TIMEZONE_LOCAL
(automatically detects the local timezone if not fallback onUTC
). - UTC : Use
?TIMEZONE_UTC
to specify the UTC timezone. - Fixed timezone: a time zone that is a fixed offset (seconds east) from UTC. Note: If the absolute value of the offset is greater than
24 hours you'll get UTC (i.e., zero offset) instead. In order to specify this use
?TIMEZONE_FIXED(Seconds)
.
utc2local_datetime/2
– Converts UTC to local time and return the result ascalendar:datetime()
utc2local_ts/2
– Converts UTC to local time and return the result as unix timestamplocal2utc_datetime/3
– Converts a local time to UTC and return the result ascalendar:datetime()
local2utc_ts/3
– Converts a local time to UTC and return the result as unix timestamp
Note: for local2utc_xxx/3
functions, the third parameter indicates what to return in case the date is ambiguous. Sometimes,
when you are converting a datetime from one timezone to another, there are potentially two different results if the conversion happens
to land on in a timezone that's in the middle of a Daylight Saving conversion.
By default disambiguation is disabled, and elocaltime
will just guess as to it's best choice. But if you so desire, you can make
sure elocaltime does both conversions, and returns both.
You can change this behaviour using the parameter:
?DS_STANDARD
: (default) If an ambiguous result occurs, will return the date in standard time rather than daylight time.?DS_DAYLIGHT
: If an ambiguous result occurs, will return the preferred daylight time.?DS_BOTH
: If an ambiguous result occurs both will be returned as a tuple of 3 elements{ok, Standard, Daylight}
This API Formats the given DateTime
in the given timezone according to the provided format string. Uses strftime()-like formatting options,
with the following extensions:
%Ez
- RFC3339-compatible numeric UTC offset (+hh:mm or -hh:mm)%E*z
- Full-resolution numeric UTC offset (+hh:mm:ss or -hh:mm:ss)%E#S
- Seconds with # digits of fractional precision%E*S
- Seconds with full fractional precision (a literal '*')%E#f
- Fractional seconds with # digits of precision%E*f
- Fractional seconds with full precision (a literal '*')%E4Y
- Four-character years (-999 ... -001, 0000, 0001 ... 9999)
Notes:
%E0S
behaves like%S
, and%E0f
produces no characters. In contrast%E*f
always produces at least one digit, which may be '0'.%Y
produces as many characters as it takes to fully render the year. A year outside of [-999:9999] when formatted with%E4Y
will produce more than four characters, just like%Y
.
A civil_lookup represents the absolute time(s) that correspond to the given civil time within this time_zone. Usually the given civil time represents a unique instant in time, in which case the conversion is unambiguous. However, within this time zone, the given civil time may be skipped (e.g., during a positive UTC offset shift), or repeated (e.g., during a negative UTC offset shift). To account for these possibilities, civil_lookup is richer than just a single timestamp.
Returns the result as a record defined as follow:
-record(civil_lookup, {
civil_kind :: civil_kind(),
pre ::timestamp(),
trans :: timestamp(),
post :: timestamp()
}).
Where :
civil_kind
- Indicate if it's unique instant in time, in which case the conversion is unambiguous or the given civil time may be skipped (during a positive UTC offset shift), or repeated (during a negative UTC offset shift)pre
- timestamp that uses the pre-transition offsettrans
- timestamp representing the instant of civil-offset changepost
- timestamp uses the post-transition offset
Examples:
- A unique civil time
{ok,{civil_lookup,unique,1293868800,1293868800,1293868800}} =
elocaltime:civil_lookup({{2011, 1, 1}, {0, 0, 0}}, <<"America/Los_Angeles">>).
- A Spring DST transition, when there is a gap in civil time
{ok,{civil_lookup,skipped,1300011300,1300010400,1300007700}} =
elocaltime:civil_lookup({{2011, 3, 13}, {2, 15, 0}}, <<"America/Los_Angeles">>)
In this example pre
is 2011/03/13 03:15:00 -0700
, trans
is 2011/03/13 03:00:00 -0700
and post
is 2011/03/13 01:15:00 -0800
- A Fall DST transition, when civil times are repeated.
{ok,{civil_lookup,repeated,1320567300,1320570000,1320570900}} =
elocaltime:civil_lookup({{2011, 11, 6}, {1, 15, 0}}, <<"America/Los_Angeles">>).
In this example pre
is 2011/11/06 01:15:00 -0700
, trans
is 2011/11/06 01:00:00 -0800
and post
is 2011/11/06 01:15:00 -0800
An absolute_lookup represents the civil time within this timezone at the given absolute time. There are additionally a
few other fields that may be useful as well. The result is returned as absolute_lookup
record:
-record(absolute_lookup, {
date :: calendar:datetime(),
offset :: integer(),
is_dst ::boolean(),
tz_abbreviation :: binary()
}).
Where:
date
: the datetime in the new timezoneoffset
: the timezone offsetis_dst
: indicates if the offset is non-standardtz_abbreviation
: time-zone abbreviation (e.g.,<<"PST">>
)
In order to run the tests just use rebar3 ct
from project root.