mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
Update mbed OS target to latest version of mbed OS (5.2.3). Also rename all files in jerryscript-mbed-drivers/ to include -js.cpp, as our build tools now generate warnings for C++ files with the same name. mbed-events library is now mainlined, so no longer required to pull this library in as a separate dependency. JerryScript-DCO-1.0-Signed-off-by: Jan Jongboom janjongboom@gmail.com
56 lines
1.9 KiB
C++
56 lines
1.9 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/setTimeout-js.h"
|
|
#include "jerryscript-mbed-event-loop/EventLoop.h"
|
|
|
|
/**
|
|
* setTimeout (native JavaScript function)
|
|
*
|
|
* Call a JavaScript function once, after a fixed time period.
|
|
*
|
|
* @param function Function to call
|
|
* @param wait_time Time before function is called, in ms.
|
|
*/
|
|
DECLARE_GLOBAL_FUNCTION(setTimeout) {
|
|
CHECK_ARGUMENT_COUNT(global, setTimeout, (args_count == 2));
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, setTimeout, 0, function);
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, setTimeout, 1, number);
|
|
|
|
jerry_acquire_value(args[0]);
|
|
int interval = int(jerry_get_number_value(args[1]));
|
|
|
|
int id = mbed::js::EventLoop::getInstance().getQueue().call_in(interval, jerry_call_function, args[0], jerry_create_null(), (jerry_value_t*)NULL, 0);
|
|
|
|
return jerry_create_number(id);
|
|
}
|
|
|
|
/**
|
|
* clearTimeout (native JavaScript function)
|
|
*
|
|
* Cancel an event that was previously scheduled via setTimeout.
|
|
*
|
|
* @param id ID of the timeout event, returned by setTimeout.
|
|
*/
|
|
DECLARE_GLOBAL_FUNCTION(clearTimeout) {
|
|
CHECK_ARGUMENT_COUNT(global, clearTimeout, (args_count == 1));
|
|
CHECK_ARGUMENT_TYPE_ALWAYS(global, clearTimeout, 0, number);
|
|
|
|
int id = int(jerry_get_number_value(args[0]));
|
|
|
|
mbed::js::EventLoop::getInstance().getQueue().cancel(id);
|
|
|
|
return jerry_create_undefined();
|
|
}
|