1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
|
/*
* Copyright (C) 1999-2000 Harri Porten (porten@kde.org)
* Copyright (C) 2006-2021 Apple Inc. All rights reserved.
* Copyright (C) 2009 Google Inc. All rights reserved.
* Copyright (C) 2007-2009 Torch Mobile, Inc.
* Copyright (C) 2010 &yet, LLC. (nate@andyet.net)
*
* The Original Code is Mozilla Communicator client code, released
* March 31, 1998.
*
* The Initial Developer of the Original Code is
* Netscape Communications Corporation.
* Portions created by the Initial Developer are Copyright (C) 1998
* the Initial Developer. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
* Alternatively, the contents of this file may be used under the terms
* of either the Mozilla Public License Version 1.1, found at
* http://www.mozilla.org/MPL/ (the "MPL") or the GNU General Public
* License Version 2.0, found at http://www.fsf.org/copyleft/gpl.html
* (the "GPL"), in which case the provisions of the MPL or the GPL are
* applicable instead of those above. If you wish to allow use of your
* version of this file only under the terms of one of those two
* licenses (the MPL or the GPL) and not to allow others to use your
* version of this file under the LGPL, indicate your decision by
* deletingthe provisions above and replace them with the notice and
* other provisions required by the MPL or the GPL, as the case may be.
* If you do not delete the provisions above, a recipient may use your
* version of this file under any of the LGPL, the MPL or the GPL.
* Copyright 2006-2008 the V8 project authors. All rights reserved.
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of Google Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "JSDateMath.h"
#include "ExceptionHelpers.h"
#include "VM.h"
#include <limits>
#include <wtf/unicode/icu/ICUHelpers.h>
#if U_ICU_VERSION_MAJOR_NUM >= 69 || (U_ICU_VERSION_MAJOR_NUM == 68 && USE(APPLE_INTERNAL_SDK))
#define HAVE_ICU_C_TIMEZONE_API 1
#ifdef U_HIDE_DRAFT_API
#undef U_HIDE_DRAFT_API
#endif
#include <unicode/ucal.h>
#else
// icu::TimeZone and icu::BasicTimeZone features are only available in ICU C++ APIs.
// We use these C++ APIs as an exception.
#undef U_SHOW_CPLUSPLUS_API
#define U_SHOW_CPLUSPLUS_API 1
#include <unicode/basictz.h>
#include <unicode/timezone.h>
#include <unicode/unistr.h>
#undef U_SHOW_CPLUSPLUS_API
#define U_SHOW_CPLUSPLUS_API 0
#endif
namespace JSC {
#if HAVE(ICU_C_TIMEZONE_API)
class OpaqueICUTimeZone {
WTF_MAKE_FAST_ALLOCATED(OpaqueICUTimeZone);
public:
std::unique_ptr<UCalendar, ICUDeleter<ucal_close>> m_calendar;
String m_canonicalTimeZoneID;
};
#endif
void OpaqueICUTimeZoneDeleter::operator()(OpaqueICUTimeZone* timeZone)
{
if (timeZone) {
#if HAVE(ICU_C_TIMEZONE_API)
delete timeZone;
#else
delete bitwise_cast<icu::TimeZone*>(timeZone);
#endif
}
}
// Get the combined UTC + DST offset for the time passed in.
//
// NOTE: The implementation relies on the fact that no time zones have
// more than one daylight savings offset change per month.
// If this function is called with NaN it returns random value.
LocalTimeOffset DateCache::calculateLocalTimeOffset(double millisecondsFromEpoch, WTF::TimeType inputTimeType)
{
int32_t rawOffset = 0;
int32_t dstOffset = 0;
UErrorCode status = U_ZERO_ERROR;
// This function can fail input date is invalid: NaN etc.
// We can return any values in this case since later we fail when computing non timezone offset part anyway.
constexpr LocalTimeOffset failed { false, 0 };
#if HAVE(ICU_C_TIMEZONE_API)
auto& timeZoneCache = *this->timeZoneCache();
ucal_setMillis(timeZoneCache.m_calendar.get(), millisecondsFromEpoch, &status);
if (U_FAILURE(status))
return failed;
if (inputTimeType != WTF::LocalTime) {
rawOffset = ucal_get(timeZoneCache.m_calendar.get(), UCAL_ZONE_OFFSET, &status);
if (U_FAILURE(status))
return failed;
dstOffset = ucal_get(timeZoneCache.m_calendar.get(), UCAL_DST_OFFSET, &status);
if (U_FAILURE(status))
return failed;
} else {
ucal_getTimeZoneOffsetFromLocal(timeZoneCache.m_calendar.get(), UCAL_TZ_LOCAL_FORMER, UCAL_TZ_LOCAL_FORMER, &rawOffset, &dstOffset, &status);
if (U_FAILURE(status))
return failed;
}
#else
auto& timeZoneCache = *bitwise_cast<icu::TimeZone*>(this->timeZoneCache());
if (inputTimeType != WTF::LocalTime) {
constexpr bool isLocalTime = false;
timeZoneCache.getOffset(millisecondsFromEpoch, isLocalTime, rawOffset, dstOffset, status);
if (U_FAILURE(status))
return failed;
} else {
// icu::TimeZone is a timezone instance which inherits icu::BasicTimeZone.
// https://unicode-org.atlassian.net/browse/ICU-13705 will move getOffsetFromLocal to icu::TimeZone.
static_cast<const icu::BasicTimeZone&>(timeZoneCache).getOffsetFromLocal(millisecondsFromEpoch, icu::BasicTimeZone::kFormer, icu::BasicTimeZone::kFormer, rawOffset, dstOffset, status);
if (U_FAILURE(status))
return failed;
}
#endif
return { !!dstOffset, rawOffset + dstOffset };
}
LocalTimeOffset DateCache::localTimeOffset(double millisecondsFromEpoch, WTF::TimeType inputTimeType)
{
LocalTimeOffsetCache& cache = inputTimeType == WTF::LocalTime ? m_localTimeOffsetCache : m_utcTimeOffsetCache;
double start = cache.start;
double end = cache.end;
auto resetCache = [&]() {
// Compute the DST offset for the time and shrink the cache interval
// to only contain the time. This allows fast repeated DST offset
// computations for the same time.
LocalTimeOffset offset = calculateLocalTimeOffset(millisecondsFromEpoch, inputTimeType);
cache.offset = offset;
cache.start = millisecondsFromEpoch;
cache.end = millisecondsFromEpoch;
cache.incrementStart = WTF::msPerMonth;
cache.incrementEnd = WTF::msPerMonth;
return offset;
};
// If the time fits in the cached interval, return the cached offset.
if (start <= millisecondsFromEpoch && millisecondsFromEpoch <= end)
return cache.offset;
if (start <= millisecondsFromEpoch) {
// Compute a possible new interval end.
double newEnd = end + cache.incrementEnd;
if (!(millisecondsFromEpoch <= newEnd))
return resetCache();
LocalTimeOffset endOffset = calculateLocalTimeOffset(newEnd, inputTimeType);
if (cache.offset == endOffset) {
// If the offset at the end of the new interval still matches
// the offset in the cache, we grow the cached time interval
// and return the offset.
cache.end = newEnd;
cache.incrementStart = WTF::msPerMonth;
cache.incrementEnd = WTF::msPerMonth;
return endOffset;
}
LocalTimeOffset offset = calculateLocalTimeOffset(millisecondsFromEpoch, inputTimeType);
if (offset == endOffset) {
// The offset at the given time is equal to the offset at the
// new end of the interval, so that means that we've just skipped
// the point in time where the DST offset change occurred. Update
// the interval to reflect this and reset the increment.
cache.start = millisecondsFromEpoch;
cache.end = newEnd;
cache.incrementStart = WTF::msPerMonth;
cache.incrementEnd = WTF::msPerMonth;
} else {
// The interval contains a DST offset change and the given time is
// before it. Adjust the increment to avoid a linear search for
// the offset change point and change the end of the interval.
cache.incrementEnd /= 3;
cache.end = millisecondsFromEpoch;
}
// Update the offset in the cache and return it.
cache.offset = offset;
return offset;
}
// Compute a possible new interval start.
double newStart = start - cache.incrementStart;
if (!(newStart <= millisecondsFromEpoch))
return resetCache();
LocalTimeOffset startOffset = calculateLocalTimeOffset(newStart, inputTimeType);
if (cache.offset == startOffset) {
// If the offset at the start of the new interval still matches
// the offset in the cache, we grow the cached time interval
// and return the offset.
cache.start = newStart;
cache.incrementStart = WTF::msPerMonth;
cache.incrementEnd = WTF::msPerMonth;
return startOffset;
}
LocalTimeOffset offset = calculateLocalTimeOffset(millisecondsFromEpoch, inputTimeType);
if (offset == startOffset) {
// The offset at the given time is equal to the offset at the
// new start of the interval, so that means that we've just skipped
// the point in time where the DST offset change occurred. Update
// the interval to reflect this and reset the increment.
cache.start = newStart;
cache.end = millisecondsFromEpoch;
cache.incrementStart = WTF::msPerMonth;
cache.incrementEnd = WTF::msPerMonth;
} else {
// The interval contains a DST offset change and the given time is
// before it. Adjust the increment to avoid a linear search for
// the offset change point and change the end of the interval.
cache.incrementStart /= 3;
cache.start = millisecondsFromEpoch;
}
// Update the offset in the cache and return it.
cache.offset = offset;
return offset;
}
static inline double timeToMS(double hour, double min, double sec, double ms)
{
return (((hour * WTF::minutesPerHour + min) * WTF::secondsPerMinute + sec) * WTF::msPerSecond + ms);
}
double DateCache::gregorianDateTimeToMS(const GregorianDateTime& t, double milliseconds, WTF::TimeType inputTimeType)
{
double day = dateToDaysFrom1970(t.year(), t.month(), t.monthDay());
double ms = timeToMS(t.hour(), t.minute(), t.second(), milliseconds);
double localTimeResult = (day * WTF::msPerDay) + ms;
double localToUTCTimeOffset = inputTimeType == WTF::LocalTime ? localTimeOffset(localTimeResult, inputTimeType).offset : 0;
return localTimeResult - localToUTCTimeOffset;
}
// input is UTC
void DateCache::msToGregorianDateTime(double millisecondsFromEpoch, WTF::TimeType outputTimeType, GregorianDateTime& tm)
{
LocalTimeOffset localTime;
if (outputTimeType == WTF::LocalTime) {
localTime = localTimeOffset(millisecondsFromEpoch);
millisecondsFromEpoch += localTime.offset;
}
tm = GregorianDateTime(millisecondsFromEpoch, localTime);
}
double DateCache::parseDate(JSGlobalObject* globalObject, VM& vm, const String& date)
{
auto scope = DECLARE_THROW_SCOPE(vm);
if (date == m_cachedDateString)
return m_cachedDateStringValue;
auto expectedString = date.tryGetUtf8();
if (!expectedString) {
if (expectedString.error() == UTF8ConversionError::OutOfMemory)
throwOutOfMemoryError(globalObject, scope);
// https://tc39.github.io/ecma262/#sec-date-objects section 20.3.3.2 states that:
// "Unrecognizable Strings or dates containing illegal element values in the
// format String shall cause Date.parse to return NaN."
return std::numeric_limits<double>::quiet_NaN();
}
auto parseDateImpl = [this] (const char* dateString) {
bool isLocalTime;
double value = WTF::parseES5DateFromNullTerminatedCharacters(dateString, isLocalTime);
if (std::isnan(value))
value = WTF::parseDateFromNullTerminatedCharacters(dateString, isLocalTime);
if (isLocalTime)
value -= localTimeOffset(value, WTF::LocalTime).offset;
return value;
};
auto dateUtf8 = expectedString.value();
double value = parseDateImpl(dateUtf8.data());
m_cachedDateString = date;
m_cachedDateStringValue = value;
return value;
}
// https://tc39.es/ecma402/#sec-defaulttimezone
String DateCache::defaultTimeZone()
{
#if HAVE(ICU_C_TIMEZONE_API)
return timeZoneCache()->m_canonicalTimeZoneID;
#else
icu::UnicodeString timeZoneID;
icu::UnicodeString canonicalTimeZoneID;
auto& timeZone = *bitwise_cast<icu::TimeZone*>(timeZoneCache());
timeZone.getID(timeZoneID);
UErrorCode status = U_ZERO_ERROR;
UBool isSystem = false;
icu::TimeZone::getCanonicalID(timeZoneID, canonicalTimeZoneID, isSystem, status);
if (U_FAILURE(status))
return "UTC"_s;
String canonical = String(canonicalTimeZoneID.getBuffer(), canonicalTimeZoneID.length());
if (isUTCEquivalent(canonical))
return "UTC"_s;
return canonical;
#endif
}
// To confine icu::TimeZone destructor invocation in this file.
DateCache::DateCache() = default;
DateCache::~DateCache() = default;
Ref<DateInstanceData> DateCache::cachedDateInstanceData(double millisecondsFromEpoch)
{
return *m_dateInstanceCache.add(millisecondsFromEpoch);
}
void DateCache::timeZoneCacheSlow()
{
ASSERT(!m_timeZoneCache);
#if HAVE(ICU_C_TIMEZONE_API)
auto* cache = new OpaqueICUTimeZone;
String canonical;
Vector<UChar, 32> timeZoneID;
auto status = callBufferProducingFunction(ucal_getHostTimeZone, timeZoneID);
if (U_SUCCESS(status)) {
Vector<UChar, 32> canonicalBuffer;
auto status = callBufferProducingFunction(ucal_getCanonicalTimeZoneID, timeZoneID.data(), timeZoneID.size(), canonicalBuffer, nullptr);
if (U_SUCCESS(status))
canonical = String(canonicalBuffer);
}
if (canonical.isNull() || isUTCEquivalent(canonical))
canonical = "UTC"_s;
cache->m_canonicalTimeZoneID = WTFMove(canonical);
status = U_ZERO_ERROR;
cache->m_calendar = std::unique_ptr<UCalendar, ICUDeleter<ucal_close>>(ucal_open(timeZoneID.data(), timeZoneID.size(), "", UCAL_DEFAULT, &status));
ASSERT_UNUSED(status, U_SUCCESS(status));
ucal_setGregorianChange(cache->m_calendar.get(), minECMAScriptTime, &status); // Ignore "unsupported" error.
m_timeZoneCache = std::unique_ptr<OpaqueICUTimeZone, OpaqueICUTimeZoneDeleter>(cache);
#else
// Do not use icu::TimeZone::createDefault. ICU internally has a cache for timezone and createDefault returns this cached value.
m_timeZoneCache = std::unique_ptr<OpaqueICUTimeZone, OpaqueICUTimeZoneDeleter>(bitwise_cast<OpaqueICUTimeZone*>(icu::TimeZone::detectHostTimeZone()));
#endif
}
void DateCache::reset()
{
m_timeZoneCache.reset();
m_utcTimeOffsetCache = LocalTimeOffsetCache();
m_localTimeOffsetCache = LocalTimeOffsetCache();
m_cachedDateString = String();
m_cachedDateStringValue = std::numeric_limits<double>::quiet_NaN();
m_dateInstanceCache.reset();
}
} // namespace JSC
|