112ad83aaa
Instead of a fixed number of arguments, a call info structure is passed to the handlers, which can be extended in the future without breaknig the API. This structure holds new.target value, so its getter function is removed. JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg.u-szeged@partner.samsung.com
74 lines
2.6 KiB
C++
74 lines
2.6 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 "jerryscript-mbed-drivers/setInterval-js.h"
|
|
#include "jerryscript-mbed-event-loop/EventLoop.h"
|
|
|
|
/**
|
|
* setInterval (native JavaScript function)
|
|
*
|
|
* Call a JavaScript function at fixed intervals.
|
|
*
|
|
* @param function Function to call
|
|
* @param interval Time between function calls, in ms.
|
|
*/
|
|
DECLARE_GLOBAL_FUNCTION(setInterval) {
|
|
CHECK_ARGUMENT_COUNT(global, setInterval, (args_count == 2));
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, setInterval, 0, function);
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, setInterval, 1, number);
|
|
|
|
int interval = int(jerry_get_number_value(args[1]));
|
|
|
|
int id = mbed::js::EventLoop::getInstance().getQueue().call_every(interval, jerry_call_function, args[0], jerry_create_null(), (jerry_value_t*)NULL, 0);
|
|
|
|
jerry_value_t result = jerry_set_property_by_index(call_info_p->function, id, args[0]);
|
|
|
|
if (jerry_value_is_error(result)) {
|
|
jerry_release_value(result);
|
|
mbed::js::EventLoop::getInstance().getQueue().cancel(id);
|
|
|
|
return jerry_create_error(JERRY_ERROR_TYPE, (const jerry_char_t *) "Failed to run setInterval");
|
|
}
|
|
|
|
jerry_release_value(result);
|
|
return jerry_create_number(id);
|
|
}
|
|
|
|
/**
|
|
* clearInterval (native JavaScript function)
|
|
*
|
|
* Cancel an event that was previously scheduled via setInterval.
|
|
*
|
|
* @param id ID of the timeout event, returned by setInterval.
|
|
*/
|
|
DECLARE_GLOBAL_FUNCTION(clearInterval) {
|
|
CHECK_ARGUMENT_COUNT(global, clearInterval, (args_count == 1));
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, clearInterval, 0, number);
|
|
|
|
int id = int(jerry_get_number_value(args[0]));
|
|
|
|
mbed::js::EventLoop::getInstance().getQueue().cancel(id);
|
|
|
|
jerry_value_t global_obj = jerry_get_global_object();
|
|
jerry_value_t prop_name = jerry_create_string((const jerry_char_t*)"setInterval");
|
|
jerry_value_t func_obj = jerry_get_property(global_obj, prop_name);
|
|
jerry_release_value(prop_name);
|
|
|
|
jerry_delete_property_by_index(func_obj, id);
|
|
jerry_release_value(func_obj);
|
|
jerry_release_value(global_obj);
|
|
|
|
return jerry_create_undefined();
|
|
}
|