/* * Copyright (c) 2023 Huawei Device Co., Ltd. * 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 "js_callback_handler.h" namespace OHOS { namespace MiscServices { constexpr size_t MAX_ARGV_COUNT = 10; void JsCallbackHandler::Execute( const std::shared_ptr &object, const ArgContainer &argContainer, napi_value &output) { if (object->threadId_ != std::this_thread::get_id()) { return; } napi_value argv[MAX_ARGV_COUNT] = { nullptr }; if (argContainer.argvProvider != nullptr && !argContainer.argvProvider(object->env_, argv, MAX_ARGV_COUNT)) { return; } napi_value callback = nullptr; napi_value global = nullptr; napi_get_reference_value(object->env_, object->callback_, &callback); if (callback != nullptr) { napi_get_global(object->env_, &global); InputMethodSyncTrace tracer("Execute napi_call_function"); auto status = napi_call_function(object->env_, global, callback, argContainer.argc, argv, &output); if (status != napi_ok) { output = nullptr; } } } } // namespace MiscServices } // namespace OHOS