2021-11-27 16:54:48 -03:00
|
|
|
/*
|
2026-03-09 09:39:15 -03:00
|
|
|
* Copyright (c) 2021-2026, Tim Flynn <trflynn89@ladybird.org>
|
2021-11-27 16:54:48 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
2024-11-27 18:09:41 -03:00
|
|
|
#include <AK/IterationDecision.h>
|
2021-11-27 16:54:48 -03:00
|
|
|
#include <AK/Optional.h>
|
2026-03-09 09:39:15 -03:00
|
|
|
#include <AK/String.h>
|
2022-01-11 13:35:50 -03:00
|
|
|
#include <AK/Time.h>
|
2021-11-27 16:54:48 -03:00
|
|
|
#include <AK/Types.h>
|
2025-07-23 15:24:25 -03:00
|
|
|
#include <AK/Utf16String.h>
|
2026-06-21 14:03:06 -03:00
|
|
|
#include <AK/Utf16View.h>
|
2021-11-27 19:31:31 -03:00
|
|
|
#include <AK/Vector.h>
|
2024-06-23 10:14:27 -03:00
|
|
|
#include <LibUnicode/Forward.h>
|
2021-11-27 16:54:48 -03:00
|
|
|
|
2024-06-23 10:14:27 -03:00
|
|
|
namespace Unicode {
|
2021-11-27 16:54:48 -03:00
|
|
|
|
2024-06-12 11:47:20 -03:00
|
|
|
enum class DateTimeStyle {
|
|
|
|
|
Full,
|
|
|
|
|
Long,
|
|
|
|
|
Medium,
|
|
|
|
|
Short,
|
2021-12-06 14:22:39 -03:00
|
|
|
};
|
2026-06-21 14:03:06 -03:00
|
|
|
DateTimeStyle date_time_style_from_string(Utf16View);
|
2026-06-21 14:03:10 -03:00
|
|
|
Utf16String date_time_style_to_string(DateTimeStyle);
|
2021-12-06 14:22:39 -03:00
|
|
|
|
2024-06-15 22:04:55 -03:00
|
|
|
enum class Weekday {
|
2021-12-06 14:22:39 -03:00
|
|
|
Sunday,
|
|
|
|
|
Monday,
|
|
|
|
|
Tuesday,
|
|
|
|
|
Wednesday,
|
|
|
|
|
Thursday,
|
|
|
|
|
Friday,
|
|
|
|
|
Saturday,
|
|
|
|
|
};
|
|
|
|
|
|
2024-06-15 22:04:55 -03:00
|
|
|
enum class HourCycle {
|
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-27 22:57:21 -03:00
|
|
|
H11,
|
|
|
|
|
H12,
|
|
|
|
|
H23,
|
|
|
|
|
H24,
|
|
|
|
|
};
|
2026-06-21 14:03:10 -03:00
|
|
|
HourCycle hour_cycle_from_string(Utf16View hour_cycle);
|
|
|
|
|
Utf16String hour_cycle_to_string(HourCycle hour_cycle);
|
|
|
|
|
Optional<HourCycle> default_hour_cycle(Utf16View 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-27 22:57:21 -03:00
|
|
|
|
2024-06-15 22:04:55 -03:00
|
|
|
enum class CalendarPatternStyle {
|
2021-11-27 16:54:48 -03:00
|
|
|
Narrow,
|
|
|
|
|
Short,
|
|
|
|
|
Long,
|
|
|
|
|
Numeric,
|
|
|
|
|
TwoDigit,
|
2022-01-02 16:23:24 -03:00
|
|
|
ShortOffset,
|
|
|
|
|
LongOffset,
|
|
|
|
|
ShortGeneric,
|
|
|
|
|
LongGeneric,
|
2021-11-27 16:54:48 -03:00
|
|
|
};
|
2026-06-21 14:03:06 -03:00
|
|
|
CalendarPatternStyle calendar_pattern_style_from_string(Utf16View style);
|
2026-06-21 14:03:10 -03:00
|
|
|
Utf16String calendar_pattern_style_to_string(CalendarPatternStyle style);
|
2021-11-27 16:54:48 -03:00
|
|
|
|
|
|
|
|
struct CalendarPattern {
|
2024-11-27 18:09:41 -03:00
|
|
|
enum class Field {
|
|
|
|
|
Era,
|
|
|
|
|
Year,
|
|
|
|
|
Month,
|
|
|
|
|
Weekday,
|
|
|
|
|
Day,
|
|
|
|
|
DayPeriod,
|
|
|
|
|
Hour,
|
|
|
|
|
Minute,
|
|
|
|
|
Second,
|
|
|
|
|
FractionalSecondDigits,
|
|
|
|
|
TimeZoneName,
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-09 09:39:15 -03:00
|
|
|
static CalendarPattern create_from_pattern(String);
|
2024-06-12 11:47:20 -03:00
|
|
|
String to_pattern() const;
|
2021-12-07 10:40:06 -03:00
|
|
|
|
2024-11-27 18:09:41 -03:00
|
|
|
template<typename Callback>
|
|
|
|
|
void for_each_calendar_field_zipped_with(CalendarPattern& other, ReadonlySpan<Field> filter, Callback&& callback) const
|
|
|
|
|
{
|
|
|
|
|
auto invoke_callback_for_field = [&](auto field) {
|
|
|
|
|
switch (field) {
|
|
|
|
|
case Field::Era:
|
|
|
|
|
return callback(era, other.era);
|
|
|
|
|
case Field::Year:
|
|
|
|
|
return callback(year, other.year);
|
|
|
|
|
case Field::Month:
|
|
|
|
|
return callback(month, other.month);
|
|
|
|
|
case Field::Weekday:
|
|
|
|
|
return callback(weekday, other.weekday);
|
|
|
|
|
case Field::Day:
|
|
|
|
|
return callback(day, other.day);
|
|
|
|
|
case Field::DayPeriod:
|
|
|
|
|
return callback(day_period, other.day_period);
|
|
|
|
|
case Field::Hour:
|
|
|
|
|
return callback(hour, other.hour);
|
|
|
|
|
case Field::Minute:
|
|
|
|
|
return callback(minute, other.minute);
|
|
|
|
|
case Field::Second:
|
|
|
|
|
return callback(second, other.second);
|
|
|
|
|
case Field::FractionalSecondDigits:
|
|
|
|
|
return callback(fractional_second_digits, other.fractional_second_digits);
|
|
|
|
|
case Field::TimeZoneName:
|
|
|
|
|
return callback(time_zone_name, other.time_zone_name);
|
|
|
|
|
}
|
|
|
|
|
VERIFY_NOT_REACHED();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
for (auto field : filter) {
|
|
|
|
|
if (invoke_callback_for_field(field) == IterationDecision::Break)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-12 11:47:20 -03:00
|
|
|
Optional<HourCycle> hour_cycle;
|
|
|
|
|
Optional<bool> hour12;
|
2021-11-27 16:54:48 -03:00
|
|
|
|
|
|
|
|
// https://unicode.org/reports/tr35/tr35-dates.html#Calendar_Fields
|
2024-06-12 11:47:20 -03: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;
|
2026-03-09 09:39:15 -03:00
|
|
|
|
|
|
|
|
Optional<String> pattern;
|
2021-12-11 17:31:33 -03:00
|
|
|
};
|
|
|
|
|
|
2024-06-12 11:47:20 -03:00
|
|
|
class DateTimeFormat {
|
|
|
|
|
public:
|
|
|
|
|
static NonnullOwnPtr<DateTimeFormat> create_for_date_and_time_style(
|
Libraries: Clean up UTF-16 source text paths
Store parser errors, source range filenames, source code filenames,
module source, and Rust parser errors as UTF-16 where they flow back
into JavaScript-visible strings. Keep byte-oriented source buffers
byte-backed.
Remove temporary PrimitiveString, ByteString, and UTF-8 detours from
JSON, RegExp, module debug logging, print formatting, and tests.
2026-06-21 14:03:19 -03:00
|
|
|
Utf16View locale,
|
|
|
|
|
Utf16View time_zone_identifier,
|
2024-06-12 11:47:20 -03:00
|
|
|
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(
|
Libraries: Clean up UTF-16 source text paths
Store parser errors, source range filenames, source code filenames,
module source, and Rust parser errors as UTF-16 where they flow back
into JavaScript-visible strings. Keep byte-oriented source buffers
byte-backed.
Remove temporary PrimitiveString, ByteString, and UTF-8 detours from
JSON, RegExp, module debug logging, print formatting, and tests.
2026-06-21 14:03:19 -03:00
|
|
|
Utf16View locale,
|
|
|
|
|
Utf16View time_zone_identifier,
|
2024-06-12 11:47:20 -03:00
|
|
|
CalendarPattern const&);
|
|
|
|
|
|
|
|
|
|
virtual ~DateTimeFormat() = default;
|
|
|
|
|
|
|
|
|
|
struct Partition {
|
2026-06-21 14:03:10 -03:00
|
|
|
Utf16String type;
|
2025-07-23 15:24:25 -03:00
|
|
|
Utf16String value;
|
2026-06-21 14:03:10 -03:00
|
|
|
Utf16String source;
|
2024-06-12 11:47:20 -03:00
|
|
|
};
|
2023-08-22 17:41:36 -03:00
|
|
|
|
2024-06-12 11:47:20 -03:00
|
|
|
virtual CalendarPattern const& chosen_pattern() const = 0;
|
2023-08-22 17:41:36 -03:00
|
|
|
|
2025-07-23 15:24:25 -03:00
|
|
|
virtual Utf16String format(double) const = 0;
|
2024-06-12 11:47:20 -03:00
|
|
|
virtual Vector<Partition> format_to_parts(double) const = 0;
|
|
|
|
|
|
2025-07-23 15:24:25 -03:00
|
|
|
virtual Utf16String format_range(double, double) const = 0;
|
2024-06-12 11:47:20 -03:00
|
|
|
virtual Vector<Partition> format_range_to_parts(double, double) const = 0;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
DateTimeFormat() = default;
|
|
|
|
|
};
|
2021-11-27 16:54:48 -03:00
|
|
|
|
2024-06-12 18:00:45 -03:00
|
|
|
struct WeekInfo {
|
|
|
|
|
u8 minimal_days_in_first_week { 1 };
|
|
|
|
|
Optional<Weekday> first_day_of_week;
|
|
|
|
|
Vector<Weekday> weekend_days;
|
|
|
|
|
};
|
2026-06-21 14:03:10 -03:00
|
|
|
WeekInfo week_info_of_locale(Utf16View locale);
|
2024-06-12 18:00:45 -03:00
|
|
|
|
2021-11-27 16:54:48 -03:00
|
|
|
}
|