2020-03-29 23:21:56 +00:00
/*
2023-03-01 14:48:12 +00:00
* Copyright ( c ) 2020 - 2023 , Linus Groh < linusg @ serenityos . org >
2024-11-21 01:06:42 +00:00
* Copyright ( c ) 2022 - 2024 , Tim Flynn < trflynn89 @ ladybird . org >
2020-03-29 23:21:56 +00:00
*
2021-04-22 08:24:48 +00:00
* SPDX - License - Identifier : BSD - 2 - Clause
2020-03-29 23:21:56 +00:00
*/
2022-01-15 22:37:36 +00:00
# include <AK/NumericLimits.h>
2020-08-20 20:29:27 +00:00
# include <AK/StringBuilder.h>
2022-01-05 17:26:15 +00:00
# include <AK/Time.h>
2021-11-16 19:40:03 +00:00
# include <LibJS/Runtime/AbstractOperations.h>
2020-03-29 23:21:56 +00:00
# include <LibJS/Runtime/Date.h>
2020-04-17 17:07:59 +00:00
# include <LibJS/Runtime/GlobalObject.h>
2024-06-25 15:06:08 +00:00
# include <LibJS/Runtime/Intl/AbstractOperations.h>
2024-11-21 01:06:42 +00:00
# include <LibJS/Runtime/Temporal/ISO8601.h>
# include <LibJS/Runtime/Temporal/TimeZone.h>
2021-06-06 12:42:19 +00:00
# include <time.h>
2020-03-29 23:21:56 +00:00
namespace JS {
2024-11-14 15:01:23 +00:00
GC_DEFINE_ALLOCATOR ( Date ) ;
2023-11-19 08:45:05 +00:00
2022-10-14 13:23:43 +00:00
static Crypto : : SignedBigInteger const s_one_billion_bigint { 1'000'000'000 } ;
static Crypto : : SignedBigInteger const s_one_million_bigint { 1'000'000 } ;
static Crypto : : SignedBigInteger const s_one_thousand_bigint { 1'000 } ;
2023-01-28 16:12:54 +00:00
Crypto : : SignedBigInteger const ns_per_day_bigint { static_cast < i64 > ( ns_per_day ) } ;
2024-11-14 15:01:23 +00:00
GC : : Ref < Date > Date : : create ( Realm & realm , double date_value )
2022-01-14 22:42:42 +00:00
{
2024-11-13 16:50:17 +00:00
return realm . create < Date > ( date_value , realm . intrinsics ( ) . date_prototype ( ) ) ;
2022-01-14 22:42:42 +00:00
}
Date : : Date ( double date_value , Object & prototype )
2022-12-14 11:17:58 +00:00
: Object ( ConstructWithPrototypeTag : : Tag , prototype )
2022-01-14 22:42:42 +00:00
, m_date_value ( date_value )
{
}
2024-01-09 23:01:28 +00:00
Date : : ~ Date ( ) = default ;
2023-05-19 00:46:01 +00:00
ErrorOr < String > Date : : iso_date_string ( ) const
2020-08-23 17:30:18 +00:00
{
2022-01-14 22:42:42 +00:00
int year = year_from_time ( m_date_value ) ;
2020-08-20 20:29:27 +00:00
StringBuilder builder ;
if ( year < 0 )
2021-05-07 09:51:57 +00:00
builder . appendff ( " -{:06} " , - year ) ;
2020-08-20 20:29:27 +00:00
else if ( year > 9999 )
2021-05-07 09:51:57 +00:00
builder . appendff ( " +{:06} " , year ) ;
2020-08-20 20:29:27 +00:00
else
2021-05-07 09:51:57 +00:00
builder . appendff ( " {:04} " , year ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' - ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:02} " , month_from_time ( m_date_value ) + 1 ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' - ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:02} " , date_from_time ( m_date_value ) ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' T ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:02} " , hour_from_time ( m_date_value ) ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' : ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:02} " , min_from_time ( m_date_value ) ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' : ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:02} " , sec_from_time ( m_date_value ) ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' . ' ) ;
2022-01-14 22:42:42 +00:00
builder . appendff ( " {:03} " , ms_from_time ( m_date_value ) ) ;
2020-08-20 20:29:27 +00:00
builder . append ( ' Z ' ) ;
2023-05-19 00:46:01 +00:00
return builder . to_string ( ) ;
2020-08-20 20:29:27 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.3 Day ( t ), https://tc39.es/ecma262/#sec-day
double day ( double time_value )
2021-07-25 19:47:40 +00:00
{
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (floor(ℝ (t / msPerDay))).
return floor ( time_value / ms_per_day ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.4 TimeWithinDay ( t ), https://tc39.es/ecma262/#sec-timewithinday
double time_within_day ( double time )
2021-07-25 19:47:40 +00:00
{
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (ℝ (t) modulo ℝ (msPerDay)).
return modulo ( time , ms_per_day ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.5 DaysInYear ( y ), https://tc39.es/ecma262/#sec-daysinyear
2021-07-25 19:47:40 +00:00
u16 days_in_year ( i32 y )
{
2023-10-03 15:01:19 +00:00
// 1. Let ry be ℝ (y).
auto ry = static_cast < double > ( y ) ;
// 2. If (ry modulo 400) = 0, return 366𝔽 .
if ( modulo ( ry , 400.0 ) = = 0 )
2021-07-25 19:47:40 +00:00
return 366 ;
2023-10-03 15:01:19 +00:00
// 3. If (ry modulo 100) = 0, return 365𝔽 .
if ( modulo ( ry , 100.0 ) = = 0 )
2021-07-25 19:47:40 +00:00
return 365 ;
2023-10-03 15:01:19 +00:00
// 4. If (ry modulo 4) = 0, return 366𝔽 .
if ( modulo ( ry , 4.0 ) = = 0 )
2021-07-25 19:47:40 +00:00
return 366 ;
2023-10-03 15:01:19 +00:00
// 5. Return 365𝔽 .
return 365 ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.6 DayFromYear ( y ), https://tc39.es/ecma262/#sec-dayfromyear
2021-07-25 19:47:40 +00:00
double day_from_year ( i32 y )
{
2023-10-03 15:01:19 +00:00
// 1. Let ry be ℝ (y).
auto ry = static_cast < double > ( y ) ;
// 2. NOTE: In the following steps, each _numYearsN_ is the number of years divisible by N that occur between the
// epoch and the start of year y. (The number is negative if y is before the epoch.)
// 3. Let numYears1 be (ry - 1970).
auto num_years_1 = ry - 1970 ;
// 4. Let numYears4 be floor((ry - 1969) / 4).
auto num_years_4 = floor ( ( ry - 1969 ) / 4.0 ) ;
// 5. Let numYears100 be floor((ry - 1901) / 100).
auto num_years_100 = floor ( ( ry - 1901 ) / 100.0 ) ;
// 6. Let numYears400 be floor((ry - 1601) / 400).
auto num_years_400 = floor ( ( ry - 1601 ) / 400.0 ) ;
// 7. Return 𝔽 (365 × numYears1 + numYears4 - numYears100 + numYears400).
return 365.0 * num_years_1 + num_years_4 - num_years_100 + num_years_400 ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.7 TimeFromYear ( y ), https://tc39.es/ecma262/#sec-timefromyear
2021-11-05 00:18:27 +00:00
double time_from_year ( i32 y )
{
2023-10-03 15:01:19 +00:00
// 1. Return msPerDay × DayFromYear(y).
2022-05-06 17:10:34 +00:00
return ms_per_day * day_from_year ( y ) ;
2021-11-05 00:18:27 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.8 YearFromTime ( t ), https://tc39.es/ecma262/#sec-yearfromtime
2021-07-25 19:47:40 +00:00
i32 year_from_time ( double t )
{
2023-10-03 15:01:19 +00:00
// 1. Return the largest integral Number y (closest to +∞) such that TimeFromYear(y) ≤ t.
2022-01-15 22:37:36 +00:00
if ( ! Value ( t ) . is_finite_number ( ) )
return NumericLimits < i32 > : : max ( ) ;
2021-11-05 00:18:27 +00:00
// Approximation using average number of milliseconds per year. We might have to adjust this guess afterwards.
2023-10-22 20:01:38 +00:00
auto year = static_cast < i32 > ( floor ( t / ( 365.2425 * ms_per_day ) + 1970 ) ) ;
2021-11-05 00:18:27 +00:00
auto year_t = time_from_year ( year ) ;
if ( year_t > t )
year - - ;
2022-05-06 17:10:34 +00:00
else if ( year_t + days_in_year ( year ) * ms_per_day < = t )
2021-11-05 00:18:27 +00:00
year + + ;
return year ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.9 DayWithinYear ( t ), https://tc39.es/ecma262/#sec-daywithinyear
u16 day_within_year ( double t )
{
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
// 1. Return Day(t) - DayFromYear(YearFromTime(t)).
return static_cast < u16 > ( day ( t ) - day_from_year ( year_from_time ( t ) ) ) ;
}
// 21.4.1.10 InLeapYear ( t ), https://tc39.es/ecma262/#sec-inleapyear
2021-07-25 19:47:40 +00:00
bool in_leap_year ( double t )
{
2023-10-03 15:01:19 +00:00
// 1. If DaysInYear(YearFromTime(t)) is 366𝔽 , return 1𝔽 ; else return +0𝔽 .
2021-07-25 19:47:40 +00:00
return days_in_year ( year_from_time ( t ) ) = = 366 ;
}
2023-10-03 15:01:19 +00:00
// 21.4.1.11 MonthFromTime ( t ), https://tc39.es/ecma262/#sec-monthfromtime
2021-07-25 19:47:40 +00:00
u8 month_from_time ( double t )
{
2023-10-03 15:01:19 +00:00
// 1. Let inLeapYear be InLeapYear(t).
auto in_leap_year = static_cast < unsigned > ( JS : : in_leap_year ( t ) ) ;
// 2. Let dayWithinYear be DayWithinYear(t).
2021-07-25 19:47:40 +00:00
auto day_within_year = JS : : day_within_year ( t ) ;
2023-10-03 15:01:19 +00:00
// 3. If dayWithinYear < 31𝔽 , return +0𝔽 .
2021-07-25 19:47:40 +00:00
if ( day_within_year < 31 )
return 0 ;
2023-10-03 15:01:19 +00:00
// 4. If dayWithinYear < 59𝔽 + inLeapYear, return 1𝔽 .
if ( day_within_year < ( 59 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 1 ;
2023-10-03 15:01:19 +00:00
// 5. If dayWithinYear < 90𝔽 + inLeapYear, return 2𝔽 .
if ( day_within_year < ( 90 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 2 ;
2023-10-03 15:01:19 +00:00
// 6. If dayWithinYear < 120𝔽 + inLeapYear, return 3𝔽 .
if ( day_within_year < ( 120 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 3 ;
2023-10-03 15:01:19 +00:00
// 7. If dayWithinYear < 151𝔽 + inLeapYear, return 4𝔽 .
if ( day_within_year < ( 151 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 4 ;
2023-10-03 15:01:19 +00:00
// 8. If dayWithinYear < 181𝔽 + inLeapYear, return 5𝔽 .
if ( day_within_year < ( 181 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 5 ;
2023-10-03 15:01:19 +00:00
// 9. If dayWithinYear < 212𝔽 + inLeapYear, return 6𝔽 .
if ( day_within_year < ( 212 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 6 ;
2023-10-03 15:01:19 +00:00
// 10. If dayWithinYear < 243𝔽 + inLeapYear, return 7𝔽 .
if ( day_within_year < ( 243 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 7 ;
2023-10-03 15:01:19 +00:00
// 11. If dayWithinYear < 273𝔽 + inLeapYear, return 8𝔽 .
if ( day_within_year < ( 273 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 8 ;
2023-10-03 15:01:19 +00:00
// 12. If dayWithinYear < 304𝔽 + inLeapYear, return 9𝔽 .
if ( day_within_year < ( 304 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 9 ;
2023-10-03 15:01:19 +00:00
// 13. If dayWithinYear < 334𝔽 + inLeapYear, return 10𝔽 .
if ( day_within_year < ( 334 + in_leap_year ) )
2021-07-25 19:47:40 +00:00
return 10 ;
2023-10-03 15:01:19 +00:00
// 14. Assert: dayWithinYear < 365𝔽 + inLeapYear.
VERIFY ( day_within_year < ( 365 + in_leap_year ) ) ;
// 15. Return 11𝔽 .
return 11 ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.12 DateFromTime ( t ), https://tc39.es/ecma262/#sec-datefromtime
u8 date_from_time ( double t )
{
// 1. Let inLeapYear be InLeapYear(t).
auto in_leap_year = static_cast < unsigned > ( JS : : in_leap_year ( t ) ) ;
// 2. Let dayWithinYear be DayWithinYear(t).
auto day_within_year = JS : : day_within_year ( t ) ;
// 3. Let month be MonthFromTime(t).
auto month = month_from_time ( t ) ;
// 4. If month is +0𝔽 , return dayWithinYear + 1𝔽 .
if ( month = = 0 )
return day_within_year + 1 ;
// 5. If month is 1𝔽 , return dayWithinYear - 30𝔽 .
if ( month = = 1 )
return day_within_year - 30 ;
// 6. If month is 2𝔽 , return dayWithinYear - 58𝔽 - inLeapYear.
if ( month = = 2 )
return day_within_year - 58 - in_leap_year ;
// 7. If month is 3𝔽 , return dayWithinYear - 89𝔽 - inLeapYear.
if ( month = = 3 )
return day_within_year - 89 - in_leap_year ;
// 8. If month is 4𝔽 , return dayWithinYear - 119𝔽 - inLeapYear.
if ( month = = 4 )
return day_within_year - 119 - in_leap_year ;
// 9. If month is 5𝔽 , return dayWithinYear - 150𝔽 - inLeapYear.
if ( month = = 5 )
return day_within_year - 150 - in_leap_year ;
// 10. If month is 6𝔽 , return dayWithinYear - 180𝔽 - inLeapYear.
if ( month = = 6 )
return day_within_year - 180 - in_leap_year ;
// 11. If month is 7𝔽 , return dayWithinYear - 211𝔽 - inLeapYear.
if ( month = = 7 )
return day_within_year - 211 - in_leap_year ;
// 12. If month is 8𝔽 , return dayWithinYear - 242𝔽 - inLeapYear.
if ( month = = 8 )
return day_within_year - 242 - in_leap_year ;
// 13. If month is 9𝔽 , return dayWithinYear - 272𝔽 - inLeapYear.
if ( month = = 9 )
return day_within_year - 272 - in_leap_year ;
// 14. If month is 10𝔽 , return dayWithinYear - 303𝔽 - inLeapYear.
if ( month = = 10 )
return day_within_year - 303 - in_leap_year ;
// 15. Assert: month is 11𝔽 .
VERIFY ( month = = 11 ) ;
// 16. Return dayWithinYear - 333𝔽 - inLeapYear.
return day_within_year - 333 - in_leap_year ;
}
// 21.4.1.13 WeekDay ( t ), https://tc39.es/ecma262/#sec-weekday
u8 week_day ( double t )
{
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
// 1. Return 𝔽 (ℝ (Day(t) + 4𝔽 ) modulo 7).
return static_cast < u8 > ( modulo ( day ( t ) + 4 , 7 ) ) ;
}
// 21.4.1.14 HourFromTime ( t ), https://tc39.es/ecma262/#sec-hourfromtime
2021-07-25 19:47:40 +00:00
u8 hour_from_time ( double t )
{
2022-01-16 06:15:46 +00:00
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (floor(ℝ (t / msPerHour)) modulo HoursPerDay).
2022-05-06 17:10:34 +00:00
return static_cast < u8 > ( modulo ( floor ( t / ms_per_hour ) , hours_per_day ) ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.15 MinFromTime ( t ), https://tc39.es/ecma262/#sec-minfromtime
2021-07-25 19:47:40 +00:00
u8 min_from_time ( double t )
{
2022-01-16 06:15:46 +00:00
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (floor(ℝ (t / msPerMinute)) modulo MinutesPerHour).
2022-05-06 17:10:34 +00:00
return static_cast < u8 > ( modulo ( floor ( t / ms_per_minute ) , minutes_per_hour ) ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.16 SecFromTime ( t ), https://tc39.es/ecma262/#sec-secfromtime
2021-07-25 19:47:40 +00:00
u8 sec_from_time ( double t )
{
2022-01-16 06:15:46 +00:00
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (floor(ℝ (t / msPerSecond)) modulo SecondsPerMinute).
2022-05-06 17:10:34 +00:00
return static_cast < u8 > ( modulo ( floor ( t / ms_per_second ) , seconds_per_minute ) ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.17 msFromTime ( t ), https://tc39.es/ecma262/#sec-msfromtime
2021-07-25 19:47:40 +00:00
u16 ms_from_time ( double t )
{
2022-01-16 06:15:46 +00:00
if ( ! Value ( t ) . is_finite_number ( ) )
return 0 ;
2023-10-03 15:01:19 +00:00
// 1. Return 𝔽 (ℝ (t) modulo ℝ (msPerSecond)).
2022-05-06 17:10:34 +00:00
return static_cast < u16 > ( modulo ( t , ms_per_second ) ) ;
2021-07-25 19:47:40 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.18 GetUTCEpochNanoseconds ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond ), https://tc39.es/ecma262/#sec-getutcepochnanoseconds
2022-10-14 13:23:43 +00:00
Crypto : : SignedBigInteger get_utc_epoch_nanoseconds ( i32 year , u8 month , u8 day , u8 hour , u8 minute , u8 second , u16 millisecond , u16 microsecond , u16 nanosecond )
{
// 1. Let date be MakeDay(𝔽 (year), 𝔽 (month - 1), 𝔽 (day)).
auto date = make_day ( year , month - 1 , day ) ;
// 2. Let time be MakeTime(𝔽 (hour), 𝔽 (minute), 𝔽 (second), 𝔽 (millisecond)).
auto time = make_time ( hour , minute , second , millisecond ) ;
// 3. Let ms be MakeDate(date, time).
auto ms = make_date ( date , time ) ;
// 4. Assert: ms is an integral Number.
VERIFY ( ms = = trunc ( ms ) ) ;
// 5. Return ℤ (ℝ (ms) × 10^6 + microsecond × 10^3 + nanosecond).
auto result = Crypto : : SignedBigInteger { ms } . multiplied_by ( s_one_million_bigint ) ;
result = result . plus ( Crypto : : SignedBigInteger { static_cast < i32 > ( microsecond ) } . multiplied_by ( s_one_thousand_bigint ) ) ;
result = result . plus ( Crypto : : SignedBigInteger { static_cast < i32 > ( nanosecond ) } ) ;
return result ;
}
static i64 clip_bigint_to_sane_time ( Crypto : : SignedBigInteger const & value )
{
static Crypto : : SignedBigInteger const min_bigint { NumericLimits < i64 > : : min ( ) } ;
static Crypto : : SignedBigInteger const max_bigint { NumericLimits < i64 > : : max ( ) } ;
2023-03-13 15:30:34 +00:00
// The provided epoch (nano)seconds value is potentially out of range for AK::Duration and subsequently
2022-10-14 13:23:43 +00:00
// get_time_zone_offset(). We can safely assume that the TZDB has no useful information that far
// into the past and future anyway, so clamp it to the i64 range.
if ( value < min_bigint )
return NumericLimits < i64 > : : min ( ) ;
if ( value > max_bigint )
return NumericLimits < i64 > : : max ( ) ;
// FIXME: Can we do this without string conversion?
2023-12-23 02:59:14 +00:00
return value . to_base_deprecated ( 10 ) . to_number < i64 > ( ) . value ( ) ;
2022-10-14 13:23:43 +00:00
}
2024-09-03 14:26:03 +00:00
static i64 clip_double_to_sane_time ( double value )
{
static constexpr auto min_double = static_cast < double > ( NumericLimits < i64 > : : min ( ) ) ;
static constexpr auto max_double = static_cast < double > ( NumericLimits < i64 > : : max ( ) ) ;
// The provided epoch millseconds value is potentially out of range for AK::Duration and subsequently
// get_time_zone_offset(). We can safely assume that the TZDB has no useful information that far
// into the past and future anyway, so clamp it to the i64 range.
if ( value < min_double )
return NumericLimits < i64 > : : min ( ) ;
if ( value > max_double )
return NumericLimits < i64 > : : max ( ) ;
return static_cast < i64 > ( value ) ;
}
2023-10-03 15:01:19 +00:00
// 21.4.1.20 GetNamedTimeZoneEpochNanoseconds ( timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond ), https://tc39.es/ecma262/#sec-getnamedtimezoneepochnanoseconds
2022-10-14 13:23:43 +00:00
Vector < Crypto : : SignedBigInteger > get_named_time_zone_epoch_nanoseconds ( StringView time_zone_identifier , i32 year , u8 month , u8 day , u8 hour , u8 minute , u8 second , u16 millisecond , u16 microsecond , u16 nanosecond )
{
auto local_nanoseconds = get_utc_epoch_nanoseconds ( year , month , day , hour , minute , second , millisecond , microsecond , nanosecond ) ;
2023-03-13 21:28:08 +00:00
auto local_time = UnixDateTime : : from_nanoseconds_since_epoch ( clip_bigint_to_sane_time ( local_nanoseconds ) ) ;
2022-10-14 13:23:43 +00:00
2024-06-25 19:27:20 +00:00
// FIXME: LibUnicode does not behave exactly as the spec expects. It does not consider repeated or skipped time points.
auto offset = Unicode : : time_zone_offset ( time_zone_identifier , local_time ) ;
2022-10-14 13:23:43 +00:00
// Can only fail if the time zone identifier is invalid, which cannot be the case here.
VERIFY ( offset . has_value ( ) ) ;
2024-06-25 19:27:20 +00:00
return { local_nanoseconds . minus ( Crypto : : SignedBigInteger { offset - > offset . to_nanoseconds ( ) } ) } ;
2022-10-14 13:23:43 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.21 GetNamedTimeZoneOffsetNanoseconds ( timeZoneIdentifier, epochNanoseconds ), https://tc39.es/ecma262/#sec-getnamedtimezoneoffsetnanoseconds
2024-06-25 19:27:20 +00:00
Unicode : : TimeZoneOffset get_named_time_zone_offset_nanoseconds ( StringView time_zone_identifier , Crypto : : SignedBigInteger const & epoch_nanoseconds )
2022-10-14 13:23:43 +00:00
{
2023-03-13 21:28:08 +00:00
// Since UnixDateTime::from_seconds_since_epoch() and UnixDateTime::from_nanoseconds_since_epoch() both take an i64, converting to
2022-10-14 13:23:43 +00:00
// seconds first gives us a greater range. The TZDB doesn't have sub-second offsets.
auto seconds = epoch_nanoseconds . divided_by ( s_one_billion_bigint ) . quotient ;
2023-03-13 21:28:08 +00:00
auto time = UnixDateTime : : from_seconds_since_epoch ( clip_bigint_to_sane_time ( seconds ) ) ;
2022-10-14 13:23:43 +00:00
2024-06-25 19:27:20 +00:00
auto offset = Unicode : : time_zone_offset ( time_zone_identifier , time ) ;
2022-10-14 13:23:43 +00:00
VERIFY ( offset . has_value ( ) ) ;
2024-06-25 19:27:20 +00:00
return offset . release_value ( ) ;
2022-10-14 13:23:43 +00:00
}
2024-09-03 14:26:03 +00:00
// 21.4.1.21 GetNamedTimeZoneOffsetNanoseconds ( timeZoneIdentifier, epochNanoseconds ), https://tc39.es/ecma262/#sec-getnamedtimezoneoffsetnanoseconds
// OPTIMIZATION: This overload is provided to allow callers to avoid BigInt construction if they do not need infinitely precise nanosecond resolution.
Unicode : : TimeZoneOffset get_named_time_zone_offset_milliseconds ( StringView time_zone_identifier , double epoch_milliseconds )
{
auto seconds = epoch_milliseconds / 1000.0 ;
auto time = UnixDateTime : : from_seconds_since_epoch ( clip_double_to_sane_time ( seconds ) ) ;
auto offset = Unicode : : time_zone_offset ( time_zone_identifier , time ) ;
VERIFY ( offset . has_value ( ) ) ;
return offset . release_value ( ) ;
}
2024-09-03 14:18:43 +00:00
static Optional < String > cached_system_time_zone_identifier ;
2024-06-25 15:06:08 +00:00
// 21.4.1.24 SystemTimeZoneIdentifier ( ), https://tc39.es/ecma262/#sec-systemtimezoneidentifier
String system_time_zone_identifier ( )
2023-10-03 16:14:59 +00:00
{
2024-09-03 14:18:43 +00:00
// OPTIMIZATION: We cache the system time zone to avoid the expensive lookups below.
if ( cached_system_time_zone_identifier . has_value ( ) )
return * cached_system_time_zone_identifier ;
2024-06-25 15:06:08 +00:00
// 1. If the implementation only supports the UTC time zone, return "UTC".
2023-10-03 16:14:59 +00:00
2024-06-25 15:06:08 +00:00
// 2. Let systemTimeZoneString be the String representing the host environment's current time zone, either a primary
// time zone identifier or an offset time zone identifier.
auto system_time_zone_string = Unicode : : current_time_zone ( ) ;
2023-10-03 16:14:59 +00:00
2024-11-21 01:06:42 +00:00
if ( ! is_offset_time_zone_identifier ( system_time_zone_string ) ) {
2024-06-25 15:06:08 +00:00
auto time_zone_identifier = Intl : : get_available_named_time_zone_identifier ( system_time_zone_string ) ;
if ( ! time_zone_identifier . has_value ( ) )
return " UTC " _string ;
2023-10-03 16:14:59 +00:00
2024-06-25 15:06:08 +00:00
system_time_zone_string = time_zone_identifier - > primary_identifier ;
2023-10-03 16:14:59 +00:00
}
2024-06-25 15:06:08 +00:00
// 3. Return systemTimeZoneString.
2024-09-03 14:18:43 +00:00
cached_system_time_zone_identifier = move ( system_time_zone_string ) ;
return * cached_system_time_zone_identifier ;
}
void clear_system_time_zone_cache ( )
{
cached_system_time_zone_identifier . clear ( ) ;
2022-10-14 13:23:43 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.25 LocalTime ( t ), https://tc39.es/ecma262/#sec-localtime
2024-11-21 01:06:42 +00:00
// 14.5.6 LocalTime ( t ), https://tc39.es/proposal-temporal/#sec-localtime
2022-01-14 18:10:07 +00:00
double local_time ( double time )
{
2023-10-03 16:14:59 +00:00
// 1. Let systemTimeZoneIdentifier be SystemTimeZoneIdentifier().
auto system_time_zone_identifier = JS : : system_time_zone_identifier ( ) ;
2022-10-14 13:23:43 +00:00
2024-11-21 01:06:42 +00:00
// 2. Let parseResult be ! ParseTimeZoneIdentifier(systemTimeZoneIdentifier).
auto parse_result = Temporal : : parse_time_zone_identifier ( system_time_zone_identifier ) ;
2022-10-14 13:23:43 +00:00
double offset_nanoseconds { 0 } ;
2024-11-21 01:06:42 +00:00
// 3. If parseResult.[[OffsetMinutes]] is not EMPTY, then
if ( parse_result . offset_minutes . has_value ( ) ) {
// a. Let offsetNs be parseResult.[[OffsetMinutes]] × (60 × 10**9).
offset_nanoseconds = static_cast < double > ( * parse_result . offset_minutes ) * 60'000'000'000 ;
2022-10-14 13:23:43 +00:00
}
2024-11-21 01:06:42 +00:00
// 4. Else,
2022-10-14 13:23:43 +00:00
else {
2023-10-03 16:14:59 +00:00
// a. Let offsetNs be GetNamedTimeZoneOffsetNanoseconds(systemTimeZoneIdentifier, ℤ (ℝ (t) × 10^6)).
2024-09-03 14:26:03 +00:00
auto offset = get_named_time_zone_offset_milliseconds ( system_time_zone_identifier , time ) ;
2024-06-25 19:27:20 +00:00
offset_nanoseconds = static_cast < double > ( offset . offset . to_nanoseconds ( ) ) ;
2022-10-14 13:23:43 +00:00
}
2024-11-21 01:06:42 +00:00
// 5. Let offsetMs be truncate(offsetNs / 10^6).
2022-10-14 13:23:43 +00:00
auto offset_milliseconds = trunc ( offset_nanoseconds / 1e6 ) ;
2024-11-21 01:06:42 +00:00
// 6. Return t + 𝔽 (offsetMs).
2022-10-14 13:23:43 +00:00
return time + offset_milliseconds ;
2022-01-14 18:10:07 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.26 UTC ( t ), https://tc39.es/ecma262/#sec-utc-t
2024-11-21 01:06:42 +00:00
// 14.5.7 UTC ( t ), https://tc39.es/proposal-temporal/#sec-localtime
// FIXME: Update the rest of this AO for Temporal once we have the required Temporal objects.
2022-01-14 18:10:07 +00:00
double utc_time ( double time )
{
2023-10-03 16:14:59 +00:00
// 1. Let systemTimeZoneIdentifier be SystemTimeZoneIdentifier().
auto system_time_zone_identifier = JS : : system_time_zone_identifier ( ) ;
2022-10-14 13:23:43 +00:00
2024-11-21 01:06:42 +00:00
// 2. Let parseResult be ! ParseTimeZoneIdentifier(systemTimeZoneIdentifier).
auto parse_result = Temporal : : parse_time_zone_identifier ( system_time_zone_identifier ) ;
2022-10-14 13:23:43 +00:00
double offset_nanoseconds { 0 } ;
2024-11-21 01:06:42 +00:00
// 3. If parseResult.[[OffsetMinutes]] is not EMPTY, then
if ( parse_result . offset_minutes . has_value ( ) ) {
// a. Let offsetNs be parseResult.[[OffsetMinutes]] × (60 × 10**9).
offset_nanoseconds = static_cast < double > ( * parse_result . offset_minutes ) * 60'000'000'000 ;
2022-10-14 13:23:43 +00:00
}
2024-11-21 01:06:42 +00:00
// 4. Else,
2022-10-14 13:23:43 +00:00
else {
2023-10-03 16:14:59 +00:00
// a. Let possibleInstants be GetNamedTimeZoneEpochNanoseconds(systemTimeZoneIdentifier, ℝ (YearFromTime(t)), ℝ (MonthFromTime(t)) + 1, ℝ (DateFromTime(t)), ℝ (HourFromTime(t)), ℝ (MinFromTime(t)), ℝ (SecFromTime(t)), ℝ (msFromTime(t)), 0, 0).
auto possible_instants = get_named_time_zone_epoch_nanoseconds ( system_time_zone_identifier , year_from_time ( time ) , month_from_time ( time ) + 1 , date_from_time ( time ) , hour_from_time ( time ) , min_from_time ( time ) , sec_from_time ( time ) , ms_from_time ( time ) , 0 , 0 ) ;
2022-10-14 13:23:43 +00:00
// b. NOTE: The following steps ensure that when t represents local time repeating multiple times at a negative time zone transition (e.g. when the daylight saving time ends or the time zone offset is decreased due to a time zone rule change) or skipped local time at a positive time zone transition (e.g. when the daylight saving time starts or the time zone offset is increased due to a time zone rule change), t is interpreted using the time zone offset before the transition.
Crypto : : SignedBigInteger disambiguated_instant ;
// c. If possibleInstants is not empty, then
if ( ! possible_instants . is_empty ( ) ) {
// i. Let disambiguatedInstant be possibleInstants[0].
disambiguated_instant = move ( possible_instants . first ( ) ) ;
}
// d. Else,
else {
// i. NOTE: t represents a local time skipped at a positive time zone transition (e.g. due to daylight saving time starting or a time zone rule change increasing the UTC offset).
2023-10-03 16:14:59 +00:00
// ii. Let possibleInstantsBefore be GetNamedTimeZoneEpochNanoseconds(systemTimeZoneIdentifier, ℝ (YearFromTime(tBefore)), ℝ (MonthFromTime(tBefore)) + 1, ℝ (DateFromTime(tBefore)), ℝ (HourFromTime(tBefore)), ℝ (MinFromTime(tBefore)), ℝ (SecFromTime(tBefore)), ℝ (msFromTime(tBefore)), 0, 0), where tBefore is the largest integral Number < t for which possibleInstantsBefore is not empty (i.e., tBefore represents the last local time before the transition).
2022-10-14 13:23:43 +00:00
// iii. Let disambiguatedInstant be the last element of possibleInstantsBefore.
2024-06-25 19:27:20 +00:00
// FIXME: This branch currently cannot be reached with our implementation, because LibUnicode does not handle skipped time points.
// When GetNamedTimeZoneEpochNanoseconds is updated to use a LibUnicode API which does handle them, implement these steps.
2022-10-14 13:23:43 +00:00
VERIFY_NOT_REACHED ( ) ;
}
2023-10-03 16:14:59 +00:00
// e. Let offsetNs be GetNamedTimeZoneOffsetNanoseconds(systemTimeZoneIdentifier, disambiguatedInstant).
2024-06-25 19:27:20 +00:00
auto offset = get_named_time_zone_offset_nanoseconds ( system_time_zone_identifier , disambiguated_instant ) ;
offset_nanoseconds = static_cast < double > ( offset . offset . to_nanoseconds ( ) ) ;
2022-10-14 13:23:43 +00:00
}
2024-11-21 01:06:42 +00:00
// 5. Let offsetMs be truncate(offsetNs / 10^6).
2022-10-14 13:23:43 +00:00
auto offset_milliseconds = trunc ( offset_nanoseconds / 1e6 ) ;
2024-11-21 01:06:42 +00:00
// 6. Return t - 𝔽 (offsetMs).
2022-10-14 13:23:43 +00:00
return time - offset_milliseconds ;
2022-01-14 18:10:07 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.27 MakeTime ( hour, min, sec, ms ), https://tc39.es/ecma262/#sec-maketime
2022-05-06 18:45:25 +00:00
double make_time ( double hour , double min , double sec , double ms )
2021-07-11 18:04:11 +00:00
{
// 1. If hour is not finite or min is not finite or sec is not finite or ms is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( hour ) | | ! isfinite ( min ) | | ! isfinite ( sec ) | | ! isfinite ( ms ) )
return NAN ;
2021-07-11 18:04:11 +00:00
// 2. Let h be 𝔽 (! ToIntegerOrInfinity(hour)).
2022-05-06 18:45:25 +00:00
auto h = to_integer_or_infinity ( hour ) ;
2021-07-11 18:04:11 +00:00
// 3. Let m be 𝔽 (! ToIntegerOrInfinity(min)).
2022-05-06 18:45:25 +00:00
auto m = to_integer_or_infinity ( min ) ;
2021-07-11 18:04:11 +00:00
// 4. Let s be 𝔽 (! ToIntegerOrInfinity(sec)).
2022-05-06 18:45:25 +00:00
auto s = to_integer_or_infinity ( sec ) ;
2021-07-11 18:04:11 +00:00
// 5. Let milli be 𝔽 (! ToIntegerOrInfinity(ms)).
2022-05-06 18:45:25 +00:00
auto milli = to_integer_or_infinity ( ms ) ;
2021-07-11 18:04:11 +00:00
// 6. Let t be ((h * msPerHour + m * msPerMinute) + s * msPerSecond) + milli, performing the arithmetic according to IEEE 754-2019 rules (that is, as if using the ECMAScript operators * and +).
// NOTE: C++ arithmetic abides by IEEE 754 rules
2022-05-06 17:10:34 +00:00
auto t = ( ( h * ms_per_hour + m * ms_per_minute ) + s * ms_per_second ) + milli ;
2021-07-11 18:04:11 +00:00
// 7. Return t.
2022-05-06 18:45:25 +00:00
return t ;
2021-07-11 18:04:11 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.28 MakeDay ( year, month, date ), https://tc39.es/ecma262/#sec-makeday
2022-05-06 18:45:25 +00:00
double make_day ( double year , double month , double date )
2021-07-11 18:04:11 +00:00
{
// 1. If year is not finite or month is not finite or date is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( year ) | | ! isfinite ( month ) | | ! isfinite ( date ) )
return NAN ;
2021-07-11 18:04:11 +00:00
// 2. Let y be 𝔽 (! ToIntegerOrInfinity(year)).
2022-05-06 18:45:25 +00:00
auto y = to_integer_or_infinity ( year ) ;
2021-07-11 18:04:11 +00:00
// 3. Let m be 𝔽 (! ToIntegerOrInfinity(month)).
2022-05-06 18:45:25 +00:00
auto m = to_integer_or_infinity ( month ) ;
2021-07-11 18:04:11 +00:00
// 4. Let dt be 𝔽 (! ToIntegerOrInfinity(date)).
2022-05-06 18:45:25 +00:00
auto dt = to_integer_or_infinity ( date ) ;
2021-07-11 18:04:11 +00:00
// 5. Let ym be y + 𝔽 (floor(ℝ (m) / 12)).
2022-01-05 17:26:15 +00:00
auto ym = y + floor ( m / 12 ) ;
2021-07-11 18:04:11 +00:00
// 6. If ym is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( ym ) )
return NAN ;
2021-07-11 18:04:11 +00:00
// 7. Let mn be 𝔽 (ℝ (m) modulo 12).
2022-01-05 17:26:15 +00:00
auto mn = modulo ( m , 12 ) ;
2021-07-11 18:04:11 +00:00
// 8. Find a finite time value t such that YearFromTime(t) is ym and MonthFromTime(t) is mn and DateFromTime(t) is 1𝔽 ; but if this is not possible (because some argument is out of range), return NaN.
2022-01-05 17:26:15 +00:00
if ( ! AK : : is_within_range < int > ( ym ) | | ! AK : : is_within_range < int > ( mn + 1 ) )
2022-05-06 18:45:25 +00:00
return NAN ;
2023-01-02 18:51:15 +00:00
auto t = days_since_epoch ( static_cast < int > ( ym ) , static_cast < int > ( mn ) + 1 , 1 ) * ms_per_day ;
2022-01-05 17:26:15 +00:00
2021-07-11 18:04:11 +00:00
// 9. Return Day(t) + dt - 1𝔽 .
2022-05-06 18:45:25 +00:00
return day ( static_cast < double > ( t ) ) + dt - 1 ;
2021-07-11 18:04:11 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.29 MakeDate ( day, time ), https://tc39.es/ecma262/#sec-makedate
2022-05-06 18:45:25 +00:00
double make_date ( double day , double time )
2021-07-11 18:04:11 +00:00
{
// 1. If day is not finite or time is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( day ) | | ! isfinite ( time ) )
return NAN ;
2021-07-11 18:04:11 +00:00
// 2. Let tv be day × msPerDay + time.
2022-05-06 18:45:25 +00:00
auto tv = day * ms_per_day + time ;
2021-07-11 18:04:11 +00:00
// 3. If tv is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( tv ) )
return NAN ;
2021-07-11 18:04:11 +00:00
// 4. Return tv.
return tv ;
}
2023-10-03 15:01:19 +00:00
// 21.4.1.31 TimeClip ( time ), https://tc39.es/ecma262/#sec-timeclip
2022-05-06 18:45:25 +00:00
double time_clip ( double time )
2021-12-04 23:55:59 +00:00
{
// 1. If time is not finite, return NaN.
2022-05-06 18:45:25 +00:00
if ( ! isfinite ( time ) )
return NAN ;
2021-12-04 23:55:59 +00:00
// 2. If abs(ℝ (time)) > 8.64 × 10^15, return NaN.
2022-05-06 18:45:25 +00:00
if ( fabs ( time ) > 8.64E15 )
return NAN ;
2021-12-04 23:55:59 +00:00
// 3. Return 𝔽 (! ToIntegerOrInfinity(time)).
2022-05-06 18:45:25 +00:00
return to_integer_or_infinity ( time ) ;
2021-12-04 23:55:59 +00:00
}
2024-11-21 01:06:42 +00:00
// 21.4.1.33.1 IsTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-istimezoneoffsetstring
// 14.5.10 IsOffsetTimeZoneIdentifier ( offsetString ), https://tc39.es/proposal-temporal/#sec-isoffsettimezoneidentifier
bool is_offset_time_zone_identifier ( StringView offset_string )
2024-11-16 21:21:51 +00:00
{
2024-11-21 01:06:42 +00:00
// 1. Let parseResult be ParseText(StringToCodePoints(offsetString), UTCOffset[~SubMinutePrecision]).
auto parse_result = Temporal : : parse_utc_offset ( offset_string , Temporal : : SubMinutePrecision : : No ) ;
2024-11-16 21:21:51 +00:00
2024-11-21 01:06:42 +00:00
// 2. If parseResult is a List of errors, return false.
// 3. Return true.
return parse_result . has_value ( ) ;
}
2024-11-16 21:21:51 +00:00
2024-11-21 01:06:42 +00:00
// 21.4.1.33.2 ParseTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-parsetimezoneoffsetstring
// 14.5.11 ParseDateTimeUTCOffset ( offsetString ), https://tc39.es/proposal-temporal/#sec-parsedatetimeutcoffset
ThrowCompletionOr < double > parse_date_time_utc_offset ( VM & vm , StringView offset_string )
{
// 1. Let parseResult be ParseText(offsetString, UTCOffset[+SubMinutePrecision]).
auto parse_result = Temporal : : parse_utc_offset ( offset_string , Temporal : : SubMinutePrecision : : Yes ) ;
2024-11-16 21:21:51 +00:00
2024-11-21 01:06:42 +00:00
// 2. If parseResult is a List of errors, throw a RangeError exception.
if ( ! parse_result . has_value ( ) )
return vm . throw_completion < RangeError > ( ErrorType : : TemporalInvalidTimeZoneString , offset_string ) ;
2024-11-16 21:21:51 +00:00
2024-11-21 01:06:42 +00:00
return parse_date_time_utc_offset ( * parse_result ) ;
2024-11-16 21:21:51 +00:00
}
2024-11-21 01:06:42 +00:00
// 21.4.1.33.2 ParseTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-parsetimezoneoffsetstring
// 14.5.11 ParseDateTimeUTCOffset ( offsetString ), https://tc39.es/proposal-temporal/#sec-parsedatetimeutcoffset
double parse_date_time_utc_offset ( StringView offset_string )
2022-10-14 13:23:43 +00:00
{
2024-11-21 01:06:42 +00:00
// OPTIMIZATION: Some callers can assume that parsing will succeed.
2022-10-14 13:23:43 +00:00
2024-11-21 01:06:42 +00:00
// 1. Let parseResult be ParseText(offsetString, UTCOffset[+SubMinutePrecision]).
auto parse_result = Temporal : : parse_utc_offset ( offset_string , Temporal : : SubMinutePrecision : : Yes ) ;
VERIFY ( parse_result . has_value ( ) ) ;
return parse_date_time_utc_offset ( * parse_result ) ;
2022-10-14 13:23:43 +00:00
}
2023-10-03 15:01:19 +00:00
// 21.4.1.33.2 ParseTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-parsetimezoneoffsetstring
2024-11-21 01:06:42 +00:00
// 14.5.11 ParseDateTimeUTCOffset ( offsetString ), https://tc39.es/proposal-temporal/#sec-parsedatetimeutcoffset
double parse_date_time_utc_offset ( Temporal : : TimeZoneOffset const & parse_result )
2022-10-14 13:23:43 +00:00
{
2024-11-21 01:06:42 +00:00
// OPTIMIZATION: Some callers will have already parsed and validated the time zone identifier.
2022-10-14 13:23:43 +00:00
2024-08-13 14:24:23 +00:00
// 3. Assert: parseResult contains a ASCIISign Parse Node.
2024-11-21 01:06:42 +00:00
VERIFY ( parse_result . sign . has_value ( ) ) ;
2022-10-14 13:23:43 +00:00
2024-08-13 14:24:23 +00:00
// 4. Let parsedSign be the source text matched by the ASCIISign Parse Node contained within parseResult.
// 5. If parsedSign is the single code point U+002D (HYPHEN-MINUS), then
2024-11-21 01:06:42 +00:00
// a. Let sign be -1.
2022-10-14 13:23:43 +00:00
// 6. Else,
2024-11-21 01:06:42 +00:00
// a. Let sign be 1.
auto sign = parse_result . sign = = ' - ' ? - 1 : 1 ;
2022-10-14 13:23:43 +00:00
2024-11-21 01:06:42 +00:00
// 7. NOTE: Applications of StringToNumber below do not lose precision, since each of the parsed values is guaranteed
// to be a sufficiently short string of decimal digits.
2022-10-14 13:23:43 +00:00
// 8. Assert: parseResult contains an Hour Parse Node.
2024-11-21 01:06:42 +00:00
VERIFY ( parse_result . hours . has_value ( ) ) ;
2022-10-14 13:23:43 +00:00
// 9. Let parsedHours be the source text matched by the Hour Parse Node contained within parseResult.
// 10. Let hours be ℝ (StringToNumber(CodePointsToString(parsedHours))).
2024-11-21 01:06:42 +00:00
auto hours = parse_result . hours - > to_number < u8 > ( ) . value ( ) ;
2022-10-14 13:23:43 +00:00
// 11. If parseResult does not contain a MinuteSecond Parse Node, then
2024-11-16 21:21:51 +00:00
// a. Let minutes be 0.
2022-10-14 13:23:43 +00:00
// 12. Else,
2024-11-16 21:21:51 +00:00
// a. Let parsedMinutes be the source text matched by the first MinuteSecond Parse Node contained within parseResult.
// b. Let minutes be ℝ (StringToNumber(CodePointsToString(parsedMinutes))).
2024-11-21 01:06:42 +00:00
double minutes = parse_result . minutes . has_value ( ) ? parse_result . minutes - > to_number < u8 > ( ) . value ( ) : 0 ;
2022-10-14 13:23:43 +00:00
// 13. If parseResult does not contain two MinuteSecond Parse Nodes, then
2024-11-16 21:21:51 +00:00
// a. Let seconds be 0.
2022-10-14 13:23:43 +00:00
// 14. Else,
2024-11-16 21:21:51 +00:00
// a. Let parsedSeconds be the source text matched by the second secondSecond Parse Node contained within parseResult.
// b. Let seconds be ℝ (StringToNumber(CodePointsToString(parsedSeconds))).
2024-11-21 01:06:42 +00:00
double seconds = parse_result . seconds . has_value ( ) ? parse_result . seconds - > to_number < u8 > ( ) . value ( ) : 0 ;
2022-10-14 13:23:43 +00:00
2024-11-16 21:21:51 +00:00
double nanoseconds = 0 ;
2022-10-14 13:23:43 +00:00
// 15. If parseResult does not contain a TemporalDecimalFraction Parse Node, then
2024-11-21 01:06:42 +00:00
if ( ! parse_result . fraction . has_value ( ) ) {
2022-10-14 13:23:43 +00:00
// a. Let nanoseconds be 0.
nanoseconds = 0 ;
}
// 16. Else,
else {
// a. Let parsedFraction be the source text matched by the TemporalDecimalFraction Parse Node contained within parseResult.
2024-11-21 01:06:42 +00:00
auto parsed_fraction = * parse_result . fraction ;
2022-10-14 13:23:43 +00:00
// b. Let fraction be the string-concatenation of CodePointsToString(parsedFraction) and "000000000".
2023-12-16 14:19:34 +00:00
auto fraction = ByteString : : formatted ( " {}000000000 " , parsed_fraction ) ;
2022-10-14 13:23:43 +00:00
// c. Let nanosecondsString be the substring of fraction from 1 to 10.
auto nanoseconds_string = fraction . substring_view ( 1 , 9 ) ;
// d. Let nanoseconds be ℝ (StringToNumber(nanosecondsString)).
2023-03-01 14:48:12 +00:00
nanoseconds = string_to_number ( nanoseconds_string ) ;
2022-10-14 13:23:43 +00:00
}
// 17. Return sign × (((hours × 60 + minutes) × 60 + seconds) × 10^9 + nanoseconds).
// NOTE: Using scientific notation (1e9) ensures the result of this expression is a double,
// which is important - otherwise it's all integers and the result overflows!
return sign * ( ( ( hours * 60 + minutes ) * 60 + seconds ) * 1e9 + nanoseconds ) ;
}
2020-03-29 23:21:56 +00:00
}