mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
'Date.now()' should return an integer value. Fixes #2272 JerryScript-DCO-1.0-Signed-off-by: Tibor Dusnoki tdusnoki@inf.u-szeged.hu
576 lines
17 KiB
C
576 lines
17 KiB
C
/* Copyright JS Foundation and other contributors, http://js.foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#include "ecma-alloc.h"
|
|
#include "ecma-builtin-helpers.h"
|
|
#include "ecma-conversion.h"
|
|
#include "ecma-exceptions.h"
|
|
#include "ecma-gc.h"
|
|
#include "ecma-globals.h"
|
|
#include "ecma-helpers.h"
|
|
#include "ecma-try-catch-macro.h"
|
|
#include "lit-char-helpers.h"
|
|
#include "math.h"
|
|
|
|
#ifndef CONFIG_DISABLE_DATE_BUILTIN
|
|
|
|
#define ECMA_BUILTINS_INTERNAL
|
|
#include "ecma-builtins-internal.h"
|
|
|
|
#define BUILTIN_INC_HEADER_NAME "ecma-builtin-date.inc.h"
|
|
#define BUILTIN_UNDERSCORED_ID date
|
|
#include "ecma-builtin-internal-routines-template.inc.h"
|
|
|
|
/** \addtogroup ecma ECMA
|
|
* @{
|
|
*
|
|
* \addtogroup ecmabuiltins
|
|
* @{
|
|
*
|
|
* \addtogroup date ECMA Date object built-in
|
|
* @{
|
|
*/
|
|
|
|
/**
|
|
* Helper function to try to parse a part of a date string
|
|
*
|
|
* @return NaN if cannot read from string, ToNumber() otherwise
|
|
*/
|
|
static ecma_number_t
|
|
ecma_date_parse_date_chars (const lit_utf8_byte_t **str_p, /**< pointer to the cesu8 string */
|
|
const lit_utf8_byte_t *str_end_p, /**< pointer to the end of the string */
|
|
uint32_t num_of_chars) /**< number of characters to read and convert */
|
|
{
|
|
JERRY_ASSERT (num_of_chars > 0);
|
|
const lit_utf8_byte_t *str_start_p = *str_p;
|
|
|
|
while (num_of_chars--)
|
|
{
|
|
if (*str_p >= str_end_p || !lit_char_is_decimal_digit (lit_utf8_read_next (str_p)))
|
|
{
|
|
return ecma_number_make_nan ();
|
|
}
|
|
}
|
|
|
|
return ecma_utf8_string_to_number (str_start_p, (lit_utf8_size_t) (*str_p - str_start_p));
|
|
} /* ecma_date_parse_date_chars */
|
|
|
|
/**
|
|
* Calculate MakeDate(MakeDay(yr, m, dt), MakeTime(h, min, s, milli)) for Date constructor and UTC
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.3.1
|
|
* ECMA-262 v5, 15.9.4.3
|
|
*
|
|
* @return result of MakeDate(MakeDay(yr, m, dt), MakeTime(h, min, s, milli))
|
|
*/
|
|
static ecma_value_t
|
|
ecma_date_construct_helper (const ecma_value_t *args, /**< arguments passed to the Date constructor */
|
|
ecma_length_t args_len) /**< number of arguments */
|
|
{
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
ecma_number_t prim_value = ecma_number_make_nan ();
|
|
|
|
ECMA_TRY_CATCH (year_value, ecma_op_to_number (args[0]), ret_value);
|
|
ECMA_TRY_CATCH (month_value, ecma_op_to_number (args[1]), ret_value);
|
|
|
|
ecma_number_t year = ecma_get_number_from_value (year_value);
|
|
ecma_number_t month = ecma_get_number_from_value (month_value);
|
|
ecma_number_t date = ECMA_NUMBER_ONE;
|
|
ecma_number_t hours = ECMA_NUMBER_ZERO;
|
|
ecma_number_t minutes = ECMA_NUMBER_ZERO;
|
|
ecma_number_t seconds = ECMA_NUMBER_ZERO;
|
|
ecma_number_t milliseconds = ECMA_NUMBER_ZERO;
|
|
|
|
/* 3. */
|
|
if (args_len >= 3 && ecma_is_value_empty (ret_value))
|
|
{
|
|
ECMA_TRY_CATCH (date_value, ecma_op_to_number (args[2]), ret_value);
|
|
date = ecma_get_number_from_value (date_value);
|
|
ECMA_FINALIZE (date_value);
|
|
}
|
|
|
|
/* 4. */
|
|
if (args_len >= 4 && ecma_is_value_empty (ret_value))
|
|
{
|
|
ECMA_TRY_CATCH (hours_value, ecma_op_to_number (args[3]), ret_value);
|
|
hours = ecma_get_number_from_value (hours_value);
|
|
ECMA_FINALIZE (hours_value);
|
|
}
|
|
|
|
/* 5. */
|
|
if (args_len >= 5 && ecma_is_value_empty (ret_value))
|
|
{
|
|
ECMA_TRY_CATCH (minutes_value, ecma_op_to_number (args[4]), ret_value);
|
|
minutes = ecma_get_number_from_value (minutes_value);
|
|
ECMA_FINALIZE (minutes_value);
|
|
}
|
|
|
|
/* 6. */
|
|
if (args_len >= 6 && ecma_is_value_empty (ret_value))
|
|
{
|
|
ECMA_TRY_CATCH (seconds_value, ecma_op_to_number (args[5]), ret_value);
|
|
seconds = ecma_get_number_from_value (seconds_value);
|
|
ECMA_FINALIZE (seconds_value);
|
|
}
|
|
|
|
/* 7. */
|
|
if (args_len >= 7 && ecma_is_value_empty (ret_value))
|
|
{
|
|
ECMA_TRY_CATCH (milliseconds_value, ecma_op_to_number (args[6]), ret_value);
|
|
milliseconds = ecma_get_number_from_value (milliseconds_value);
|
|
ECMA_FINALIZE (milliseconds_value);
|
|
}
|
|
|
|
if (ecma_is_value_empty (ret_value))
|
|
{
|
|
if (!ecma_number_is_nan (year))
|
|
{
|
|
/* 8. */
|
|
ecma_number_t y = ecma_number_trunc (year);
|
|
|
|
if (y >= 0 && y <= 99)
|
|
{
|
|
year = 1900 + y;
|
|
}
|
|
}
|
|
|
|
prim_value = ecma_date_make_date (ecma_date_make_day (year,
|
|
month,
|
|
date),
|
|
ecma_date_make_time (hours,
|
|
minutes,
|
|
seconds,
|
|
milliseconds));
|
|
}
|
|
|
|
ECMA_FINALIZE (month_value);
|
|
ECMA_FINALIZE (year_value);
|
|
|
|
if (ecma_is_value_empty (ret_value))
|
|
{
|
|
ret_value = ecma_make_number_value (prim_value);
|
|
}
|
|
|
|
return ret_value;
|
|
} /* ecma_date_construct_helper */
|
|
|
|
/**
|
|
* The Date object's 'parse' routine
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.4.2
|
|
* ECMA-262 v5, 15.9.1.15
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value.
|
|
*/
|
|
static ecma_value_t
|
|
ecma_builtin_date_parse (ecma_value_t this_arg, /**< this argument */
|
|
ecma_value_t arg) /**< string */
|
|
{
|
|
JERRY_UNUSED (this_arg);
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
ecma_number_t date_num = ecma_number_make_nan ();
|
|
|
|
/* Date Time String fromat (ECMA-262 v5, 15.9.1.15) */
|
|
ECMA_TRY_CATCH (date_str_value,
|
|
ecma_op_to_string (arg),
|
|
ret_value);
|
|
|
|
ecma_string_t *date_str_p = ecma_get_string_from_value (date_str_value);
|
|
|
|
ECMA_STRING_TO_UTF8_STRING (date_str_p, date_start_p, date_start_size);
|
|
|
|
const lit_utf8_byte_t *date_str_curr_p = date_start_p;
|
|
const lit_utf8_byte_t *date_str_end_p = date_start_p + date_start_size;
|
|
|
|
/* 1. read year */
|
|
ecma_number_t year = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 4);
|
|
|
|
if (!ecma_number_is_nan (year)
|
|
&& year >= 0)
|
|
{
|
|
ecma_number_t month = ECMA_NUMBER_ONE;
|
|
ecma_number_t day = ECMA_NUMBER_ONE;
|
|
ecma_number_t time = ECMA_NUMBER_ZERO;
|
|
|
|
/* 2. read month if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == '-')
|
|
{
|
|
/* eat up '-' */
|
|
date_str_curr_p++;
|
|
month = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (month > 12 || month < 1)
|
|
{
|
|
month = ecma_number_make_nan ();
|
|
}
|
|
}
|
|
|
|
/* 3. read day if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == '-')
|
|
{
|
|
/* eat up '-' */
|
|
date_str_curr_p++;
|
|
day = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (day < 1 || day > 31)
|
|
{
|
|
day = ecma_number_make_nan ();
|
|
}
|
|
}
|
|
|
|
/* 4. read time if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == 'T')
|
|
{
|
|
/* eat up 'T' */
|
|
date_str_curr_p++;
|
|
|
|
ecma_number_t hours = ECMA_NUMBER_ZERO;
|
|
ecma_number_t minutes = ECMA_NUMBER_ZERO;
|
|
ecma_number_t seconds = ECMA_NUMBER_ZERO;
|
|
ecma_number_t milliseconds = ECMA_NUMBER_ZERO;
|
|
|
|
ecma_length_t remaining_length = lit_utf8_string_length (date_str_curr_p,
|
|
(lit_utf8_size_t) (date_str_end_p - date_str_curr_p));
|
|
|
|
if (remaining_length >= 5)
|
|
{
|
|
/* 4.1 read hours and minutes */
|
|
hours = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (hours < 0 || hours > 24)
|
|
{
|
|
hours = ecma_number_make_nan ();
|
|
}
|
|
else if (hours == 24)
|
|
{
|
|
hours = ECMA_NUMBER_ZERO;
|
|
}
|
|
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == ':')
|
|
{
|
|
/* eat up ':' */
|
|
date_str_curr_p++;
|
|
|
|
minutes = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (minutes < 0 || minutes > 59)
|
|
{
|
|
minutes = ecma_number_make_nan ();
|
|
}
|
|
|
|
/* 4.2 read seconds if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == ':')
|
|
{
|
|
/* eat up ':' */
|
|
date_str_curr_p++;
|
|
seconds = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (seconds < 0 || seconds > 59)
|
|
{
|
|
seconds = ecma_number_make_nan ();
|
|
}
|
|
|
|
/* 4.3 read milliseconds if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == '.')
|
|
{
|
|
/* eat up '.' */
|
|
date_str_curr_p++;
|
|
milliseconds = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 3);
|
|
|
|
if (milliseconds < 0)
|
|
{
|
|
milliseconds = ecma_number_make_nan ();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
time = ecma_date_make_time (hours, minutes, seconds, milliseconds);
|
|
}
|
|
else
|
|
{
|
|
time = ecma_number_make_nan ();
|
|
}
|
|
|
|
/* 4.4 read timezone if any */
|
|
if (date_str_curr_p < date_str_end_p
|
|
&& *date_str_curr_p == 'Z'
|
|
&& !ecma_number_is_nan (time))
|
|
{
|
|
date_str_curr_p++;
|
|
time = ecma_date_make_time (hours, minutes, seconds, milliseconds);
|
|
}
|
|
else if (date_str_curr_p < date_str_end_p
|
|
&& (*date_str_curr_p == '+' || *date_str_curr_p == '-'))
|
|
{
|
|
ecma_length_t remaining_date_length;
|
|
remaining_date_length = lit_utf8_string_length (date_str_curr_p,
|
|
(lit_utf8_size_t) (date_str_end_p - date_str_curr_p)) - 1;
|
|
|
|
if (remaining_date_length == 5)
|
|
{
|
|
bool is_negative = false;
|
|
|
|
if (*date_str_curr_p == '-')
|
|
{
|
|
is_negative = true;
|
|
}
|
|
|
|
/* eat up '+/-' */
|
|
date_str_curr_p++;
|
|
|
|
/* read hours and minutes */
|
|
hours = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (hours < 0 || hours > 24)
|
|
{
|
|
hours = ecma_number_make_nan ();
|
|
}
|
|
else if (hours == 24)
|
|
{
|
|
hours = ECMA_NUMBER_ZERO;
|
|
}
|
|
|
|
/* eat up ':' */
|
|
date_str_curr_p++;
|
|
|
|
minutes = ecma_date_parse_date_chars (&date_str_curr_p, date_str_end_p, 2);
|
|
|
|
if (minutes < 0 || minutes > 59)
|
|
{
|
|
minutes = ecma_number_make_nan ();
|
|
}
|
|
|
|
if (is_negative)
|
|
{
|
|
time += ecma_date_make_time (hours, minutes, ECMA_NUMBER_ZERO, ECMA_NUMBER_ZERO);
|
|
}
|
|
else
|
|
{
|
|
time -= ecma_date_make_time (hours, minutes, ECMA_NUMBER_ZERO, ECMA_NUMBER_ZERO);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (date_str_curr_p >= date_str_end_p)
|
|
{
|
|
ecma_number_t date = ecma_date_make_day (year, month - 1, day);
|
|
date_num = ecma_date_make_date (date, time);
|
|
}
|
|
}
|
|
|
|
ret_value = ecma_make_number_value (date_num);
|
|
|
|
ECMA_FINALIZE_UTF8_STRING (date_start_p, date_start_size);
|
|
ECMA_FINALIZE (date_str_value);
|
|
|
|
return ret_value;
|
|
} /* ecma_builtin_date_parse */
|
|
|
|
/**
|
|
* The Date object's 'UTC' routine
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.4.3
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value.
|
|
*/
|
|
static ecma_value_t
|
|
ecma_builtin_date_utc (ecma_value_t this_arg, /**< this argument */
|
|
const ecma_value_t args[], /**< arguments list */
|
|
ecma_length_t args_number) /**< number of arguments */
|
|
{
|
|
JERRY_UNUSED (this_arg);
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
|
|
if (args_number < 2)
|
|
{
|
|
/* Note:
|
|
* When the UTC function is called with fewer than two arguments,
|
|
* the behaviour is implementation-dependent, so just return NaN.
|
|
*/
|
|
return ecma_make_number_value (ecma_number_make_nan ());
|
|
}
|
|
|
|
ECMA_TRY_CATCH (time_value, ecma_date_construct_helper (args, args_number), ret_value);
|
|
|
|
ecma_number_t time = ecma_get_number_from_value (time_value);
|
|
ret_value = ecma_make_number_value (ecma_date_time_clip (time));
|
|
|
|
ECMA_FINALIZE (time_value);
|
|
|
|
return ret_value;
|
|
} /* ecma_builtin_date_utc */
|
|
|
|
/**
|
|
* The Date object's 'now' routine
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.4.4
|
|
*
|
|
* @return ecma value
|
|
* Returned value must be freed with ecma_free_value.
|
|
*/
|
|
static ecma_value_t
|
|
ecma_builtin_date_now (ecma_value_t this_arg) /**< this argument */
|
|
{
|
|
JERRY_UNUSED (this_arg);
|
|
return ecma_make_number_value (floor (DOUBLE_TO_ECMA_NUMBER_T (jerry_port_get_current_time ())));
|
|
} /* ecma_builtin_date_now */
|
|
|
|
/**
|
|
* Handle calling [[Call]] of built-in Date object
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.2.1
|
|
*
|
|
* @return ecma value
|
|
*/
|
|
ecma_value_t
|
|
ecma_builtin_date_dispatch_call (const ecma_value_t *arguments_list_p, /**< arguments list */
|
|
ecma_length_t arguments_list_len) /**< number of arguments */
|
|
{
|
|
JERRY_UNUSED (arguments_list_p);
|
|
JERRY_UNUSED (arguments_list_len);
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
|
|
ECMA_TRY_CATCH (now_val,
|
|
ecma_builtin_date_now (ECMA_VALUE_UNDEFINED),
|
|
ret_value);
|
|
|
|
ret_value = ecma_date_value_to_string (ecma_get_number_from_value (now_val));
|
|
|
|
ECMA_FINALIZE (now_val);
|
|
|
|
return ret_value;
|
|
} /* ecma_builtin_date_dispatch_call */
|
|
|
|
/**
|
|
* Handle calling [[Construct]] of built-in Date object
|
|
*
|
|
* See also:
|
|
* ECMA-262 v5, 15.9.3.1
|
|
*
|
|
* @return ecma value
|
|
*/
|
|
ecma_value_t
|
|
ecma_builtin_date_dispatch_construct (const ecma_value_t *arguments_list_p, /**< arguments list */
|
|
ecma_length_t arguments_list_len) /**< number of arguments */
|
|
{
|
|
ecma_value_t ret_value = ECMA_VALUE_EMPTY;
|
|
ecma_number_t prim_value_num = ECMA_NUMBER_ZERO;
|
|
|
|
ecma_object_t *prototype_obj_p = ecma_builtin_get (ECMA_BUILTIN_ID_DATE_PROTOTYPE);
|
|
ecma_object_t *obj_p = ecma_create_object (prototype_obj_p,
|
|
sizeof (ecma_extended_object_t),
|
|
ECMA_OBJECT_TYPE_CLASS);
|
|
|
|
ecma_extended_object_t *ext_object_p = (ecma_extended_object_t *) obj_p;
|
|
ext_object_p->u.class_prop.class_id = LIT_MAGIC_STRING_UNDEFINED;
|
|
|
|
ecma_deref_object (prototype_obj_p);
|
|
|
|
if (arguments_list_len == 0)
|
|
{
|
|
ECMA_TRY_CATCH (parse_res_value,
|
|
ecma_builtin_date_now (ecma_make_object_value (obj_p)),
|
|
ret_value);
|
|
|
|
prim_value_num = ecma_get_number_from_value (parse_res_value);
|
|
|
|
ECMA_FINALIZE (parse_res_value)
|
|
}
|
|
else if (arguments_list_len == 1)
|
|
{
|
|
ECMA_TRY_CATCH (prim_comp_value,
|
|
ecma_op_to_primitive (arguments_list_p[0], ECMA_PREFERRED_TYPE_NUMBER),
|
|
ret_value);
|
|
|
|
if (ecma_is_value_string (prim_comp_value))
|
|
{
|
|
ECMA_TRY_CATCH (parse_res_value,
|
|
ecma_builtin_date_parse (ecma_make_object_value (obj_p), prim_comp_value),
|
|
ret_value);
|
|
|
|
prim_value_num = ecma_get_number_from_value (parse_res_value);
|
|
|
|
ECMA_FINALIZE (parse_res_value);
|
|
}
|
|
else
|
|
{
|
|
ECMA_TRY_CATCH (prim_value, ecma_op_to_number (arguments_list_p[0]), ret_value);
|
|
|
|
prim_value_num = ecma_date_time_clip (ecma_get_number_from_value (prim_value));
|
|
|
|
ECMA_FINALIZE (prim_value);
|
|
}
|
|
|
|
ECMA_FINALIZE (prim_comp_value);
|
|
}
|
|
else
|
|
{
|
|
ECMA_TRY_CATCH (time_value,
|
|
ecma_date_construct_helper (arguments_list_p, arguments_list_len),
|
|
ret_value);
|
|
|
|
ecma_number_t time = ecma_get_number_from_value (time_value);
|
|
prim_value_num = ecma_date_time_clip (ecma_date_utc (time));
|
|
|
|
ECMA_FINALIZE (time_value);
|
|
}
|
|
|
|
if (ecma_is_value_empty (ret_value))
|
|
{
|
|
if (!ecma_number_is_nan (prim_value_num) && ecma_number_is_infinity (prim_value_num))
|
|
{
|
|
prim_value_num = ecma_number_make_nan ();
|
|
}
|
|
|
|
ext_object_p->u.class_prop.class_id = LIT_MAGIC_STRING_DATE_UL;
|
|
|
|
ecma_number_t *date_num_p = ecma_alloc_number ();
|
|
*date_num_p = prim_value_num;
|
|
ECMA_SET_INTERNAL_VALUE_POINTER (ext_object_p->u.class_prop.u.value, date_num_p);
|
|
|
|
ret_value = ecma_make_object_value (obj_p);
|
|
}
|
|
else
|
|
{
|
|
JERRY_ASSERT (ECMA_IS_VALUE_ERROR (ret_value));
|
|
ecma_deref_object (obj_p);
|
|
}
|
|
|
|
return ret_value;
|
|
} /* ecma_builtin_date_dispatch_construct */
|
|
|
|
/**
|
|
* @}
|
|
* @}
|
|
* @}
|
|
*/
|
|
|
|
#endif /* !CONFIG_DISABLE_DATE_BUILTIN */
|