2021-11-27 19:54:48 +00:00
|
|
|
/*
|
2024-06-12 14:47:20 +00:00
|
|
|
* Copyright (c) 2021-2024, Tim Flynn <trflynn89@serenityos.org>
|
2021-11-27 19:54:48 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/Optional.h>
|
2023-01-27 15:18:11 +00:00
|
|
|
#include <AK/String.h>
|
2021-11-27 19:54:48 +00:00
|
|
|
#include <AK/StringView.h>
|
2022-01-11 16:35:50 +00:00
|
|
|
#include <AK/Time.h>
|
2021-11-27 19:54:48 +00:00
|
|
|
#include <AK/Types.h>
|
2021-11-27 22:31:31 +00:00
|
|
|
#include <AK/Vector.h>
|
2022-09-02 16:11:30 +00:00
|
|
|
#include <LibLocale/Forward.h>
|
2021-11-27 19:54:48 +00:00
|
|
|
|
2022-09-02 16:01:10 +00:00
|
|
|
namespace Locale {
|
2021-11-27 19:54:48 +00:00
|
|
|
|
2024-06-12 14:47:20 +00:00
|
|
|
enum class DateTimeStyle {
|
|
|
|
Full,
|
|
|
|
Long,
|
|
|
|
Medium,
|
|
|
|
Short,
|
2021-12-06 17:22:39 +00:00
|
|
|
};
|
2024-06-12 14:47:20 +00:00
|
|
|
DateTimeStyle date_time_style_from_string(StringView);
|
|
|
|
StringView date_time_style_to_string(DateTimeStyle);
|
2021-12-06 17:22:39 +00:00
|
|
|
|
|
|
|
enum class Weekday : u8 {
|
|
|
|
Sunday,
|
|
|
|
Monday,
|
|
|
|
Tuesday,
|
|
|
|
Wednesday,
|
|
|
|
Thursday,
|
|
|
|
Friday,
|
|
|
|
Saturday,
|
|
|
|
};
|
|
|
|
|
LibUnicode: Parse and generate regional hour cycles
Unlike most data in the CLDR, hour cycles are not stored on a per-locale
basis. Instead, they are keyed by a string that is usually a region, but
sometimes is a locale. Therefore, given a locale, to determine the hour
cycles for that locale, we:
1. Check if the locale itself is assigned hour cycles.
2. If the locale has a region, check if that region is assigned hour
cycles.
3. Otherwise, maximize that locale, and if the maximized locale has
a region, check if that region is assigned hour cycles.
4. If the above all fail, fallback to the "001" region.
Further, each locale's default hour cycle is the first assigned hour
cycle.
2021-11-28 01:57:21 +00:00
|
|
|
enum class HourCycle : u8 {
|
|
|
|
H11,
|
|
|
|
H12,
|
|
|
|
H23,
|
|
|
|
H24,
|
|
|
|
};
|
2024-06-12 14:47:20 +00:00
|
|
|
HourCycle hour_cycle_from_string(StringView hour_cycle);
|
|
|
|
StringView hour_cycle_to_string(HourCycle hour_cycle);
|
2024-06-12 20:16:49 +00:00
|
|
|
Optional<HourCycle> default_hour_cycle(StringView locale);
|
LibUnicode: Parse and generate regional hour cycles
Unlike most data in the CLDR, hour cycles are not stored on a per-locale
basis. Instead, they are keyed by a string that is usually a region, but
sometimes is a locale. Therefore, given a locale, to determine the hour
cycles for that locale, we:
1. Check if the locale itself is assigned hour cycles.
2. If the locale has a region, check if that region is assigned hour
cycles.
3. Otherwise, maximize that locale, and if the maximized locale has
a region, check if that region is assigned hour cycles.
4. If the above all fail, fallback to the "001" region.
Further, each locale's default hour cycle is the first assigned hour
cycle.
2021-11-28 01:57:21 +00:00
|
|
|
|
2021-11-27 19:54:48 +00:00
|
|
|
enum class CalendarPatternStyle : u8 {
|
|
|
|
Narrow,
|
|
|
|
Short,
|
|
|
|
Long,
|
|
|
|
Numeric,
|
|
|
|
TwoDigit,
|
2022-01-02 19:23:24 +00:00
|
|
|
ShortOffset,
|
|
|
|
LongOffset,
|
|
|
|
ShortGeneric,
|
|
|
|
LongGeneric,
|
2021-11-27 19:54:48 +00:00
|
|
|
};
|
2024-06-12 14:47:20 +00:00
|
|
|
CalendarPatternStyle calendar_pattern_style_from_string(StringView style);
|
|
|
|
StringView calendar_pattern_style_to_string(CalendarPatternStyle style);
|
2021-11-27 19:54:48 +00:00
|
|
|
|
|
|
|
struct CalendarPattern {
|
2024-06-12 14:47:20 +00:00
|
|
|
static CalendarPattern create_from_pattern(StringView);
|
|
|
|
String to_pattern() const;
|
2021-12-07 13:40:06 +00:00
|
|
|
|
2021-11-28 22:55:47 +00:00
|
|
|
template<typename Callback>
|
|
|
|
void for_each_calendar_field_zipped_with(CalendarPattern const& other, Callback&& callback)
|
|
|
|
{
|
2024-06-12 14:47:20 +00:00
|
|
|
callback(hour_cycle, other.hour_cycle);
|
|
|
|
callback(era, other.era);
|
|
|
|
callback(year, other.year);
|
|
|
|
callback(month, other.month);
|
|
|
|
callback(weekday, other.weekday);
|
|
|
|
callback(day, other.day);
|
|
|
|
callback(day_period, other.day_period);
|
|
|
|
callback(hour, other.hour);
|
|
|
|
callback(minute, other.minute);
|
|
|
|
callback(second, other.second);
|
|
|
|
callback(fractional_second_digits, other.fractional_second_digits);
|
|
|
|
callback(time_zone_name, other.time_zone_name);
|
2021-11-28 22:55:47 +00:00
|
|
|
}
|
|
|
|
|
2024-06-12 14:47:20 +00:00
|
|
|
Optional<HourCycle> hour_cycle;
|
|
|
|
Optional<bool> hour12;
|
2021-11-27 19:54:48 +00:00
|
|
|
|
|
|
|
// https://unicode.org/reports/tr35/tr35-dates.html#Calendar_Fields
|
2024-06-12 14:47:20 +00:00
|
|
|
Optional<CalendarPatternStyle> era;
|
|
|
|
Optional<CalendarPatternStyle> year;
|
|
|
|
Optional<CalendarPatternStyle> month;
|
|
|
|
Optional<CalendarPatternStyle> weekday;
|
|
|
|
Optional<CalendarPatternStyle> day;
|
|
|
|
Optional<CalendarPatternStyle> day_period;
|
|
|
|
Optional<CalendarPatternStyle> hour;
|
|
|
|
Optional<CalendarPatternStyle> minute;
|
|
|
|
Optional<CalendarPatternStyle> second;
|
|
|
|
Optional<u8> fractional_second_digits;
|
|
|
|
Optional<CalendarPatternStyle> time_zone_name;
|
2021-12-11 20:31:33 +00:00
|
|
|
};
|
|
|
|
|
2024-06-12 14:47:20 +00:00
|
|
|
class DateTimeFormat {
|
|
|
|
public:
|
|
|
|
static NonnullOwnPtr<DateTimeFormat> create_for_date_and_time_style(
|
|
|
|
StringView locale,
|
|
|
|
StringView time_zone_identifier,
|
|
|
|
Optional<HourCycle> const& hour_cycle,
|
|
|
|
Optional<bool> const& hour12,
|
|
|
|
Optional<DateTimeStyle> const& date_style,
|
|
|
|
Optional<DateTimeStyle> const& time_style);
|
|
|
|
|
|
|
|
static NonnullOwnPtr<DateTimeFormat> create_for_pattern_options(
|
|
|
|
StringView locale,
|
|
|
|
StringView time_zone_identifier,
|
|
|
|
CalendarPattern const&);
|
|
|
|
|
|
|
|
virtual ~DateTimeFormat() = default;
|
|
|
|
|
|
|
|
struct Partition {
|
|
|
|
StringView type;
|
|
|
|
String value;
|
|
|
|
StringView source;
|
|
|
|
};
|
2023-08-22 20:41:36 +00:00
|
|
|
|
2024-06-12 14:47:20 +00:00
|
|
|
virtual CalendarPattern const& chosen_pattern() const = 0;
|
2023-08-22 20:41:36 +00:00
|
|
|
|
2024-06-12 14:47:20 +00:00
|
|
|
virtual String format(double) const = 0;
|
|
|
|
virtual Vector<Partition> format_to_parts(double) const = 0;
|
|
|
|
|
|
|
|
virtual String format_range(double, double) const = 0;
|
|
|
|
virtual Vector<Partition> format_range_to_parts(double, double) const = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
DateTimeFormat() = default;
|
|
|
|
};
|
2021-11-27 19:54:48 +00:00
|
|
|
|
2024-06-12 21:00:45 +00:00
|
|
|
struct WeekInfo {
|
|
|
|
u8 minimal_days_in_first_week { 1 };
|
|
|
|
Optional<Weekday> first_day_of_week;
|
|
|
|
Vector<Weekday> weekend_days;
|
|
|
|
};
|
|
|
|
WeekInfo week_info_of_locale(StringView locale);
|
|
|
|
|
2021-11-27 19:54:48 +00:00
|
|
|
}
|