/* * Copyright (c) 2022, Tim Flynn * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include #include #include #include #include #include namespace TimeZone { enum class InDST { No, Yes, }; struct Offset { i64 seconds { 0 }; InDST in_dst { InDST::No }; }; struct NamedOffset : public Offset { DeprecatedString name; }; struct Coordinate { constexpr float decimal_coordinate() const { return static_cast(degrees) + (static_cast(minutes) / 60.0f) + (static_cast(seconds) / 3'600.0f); } i16 degrees { 0 }; u8 minutes { 0 }; u8 seconds { 0 }; }; struct Location { Coordinate latitude; Coordinate longitude; }; StringView system_time_zone(); StringView current_time_zone(); ErrorOr change_time_zone(StringView time_zone); Span all_time_zones(); Optional time_zone_from_string(StringView time_zone); StringView time_zone_to_string(TimeZone time_zone); Optional canonicalize_time_zone(StringView time_zone); Optional daylight_savings_rule_from_string(StringView daylight_savings_rule); StringView daylight_savings_rule_to_string(DaylightSavingsRule daylight_savings_rule); Optional get_time_zone_offset(TimeZone time_zone, AK::Time time); Optional get_time_zone_offset(StringView time_zone, AK::Time time); Optional> get_named_time_zone_offsets(TimeZone time_zone, AK::Time time); Optional> get_named_time_zone_offsets(StringView time_zone, AK::Time time); Optional get_time_zone_location(TimeZone time_zone); Optional get_time_zone_location(StringView time_zone); Optional region_from_string(StringView region); StringView region_to_string(Region region); Vector time_zones_in_region(StringView region); }