/* * Copyright (c) 2022-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. */ #define LOG_TAG "PasteBoardAsyncCall" #include "async_call.h" #include "pasteboard_hilog.h" using namespace OHOS::MiscServices; namespace OHOS::MiscServicesNapi { AsyncCall::AsyncCall(napi_env env, napi_callback_info info, std::shared_ptr context, size_t pos) : env_(env) { context_ = new AsyncContext(); size_t argc = 6; napi_value self = nullptr; napi_value argv[6] = { nullptr }; NAPI_CALL_RETURN_VOID(env, napi_get_cb_info(env, info, &argc, argv, &self, nullptr)); pos = ((pos == ASYNC_DEFAULT_POS) ? (argc - 1) : pos); if (pos >= 0 && pos < argc) { napi_valuetype valueType = napi_undefined; napi_typeof(env, argv[pos], &valueType); if (valueType == napi_function) { napi_create_reference(env, argv[pos], 1, &context_->callback); } } napi_status status = (*context)(env, argc, argv, self); if (status != napi_ok) { return; } context_->ctx = std::move(context); napi_create_reference(env, self, 1, &context_->self); } AsyncCall::~AsyncCall() { if (context_ == nullptr) { return; } DeleteContext(env_, context_); } napi_value AsyncCall::Call(napi_env env, Context::ExecAction exec) { if (context_ == nullptr) { PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "context_ is null"); return nullptr; } if (context_->ctx == nullptr) { PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "context_->ctx is null"); return nullptr; } context_->ctx->exec_ = std::move(exec); napi_value promise = nullptr; if (context_->callback == nullptr) { napi_create_promise(env, &context_->defer, &promise); } else { napi_get_undefined(env, &promise); } napi_async_work work = context_->work; napi_value resource = nullptr; napi_create_string_utf8(env, LOG_TAG, NAPI_AUTO_LENGTH, &resource); napi_create_async_work(env, nullptr, resource, AsyncCall::OnExecute, AsyncCall::OnComplete, context_, &work); context_->work = work; context_ = nullptr; napi_queue_async_work_with_qos(env, work, napi_qos_user_initiated); PASTEBOARD_HILOGD(PASTEBOARD_MODULE_JS_NAPI, "async call exec"); return promise; } napi_value AsyncCall::SyncCall(napi_env env, AsyncCall::Context::ExecAction exec) { if ((context_ == nullptr) || (context_->ctx == nullptr)) { PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "context_ or context_->ctx is null"); return nullptr; } context_->ctx->exec_ = std::move(exec); napi_value promise = nullptr; if (context_->callback == nullptr) { napi_create_promise(env, &context_->defer, &promise); } else { napi_get_undefined(env, &promise); } AsyncCall::OnExecute(env, context_); AsyncCall::OnComplete(env, napi_ok, context_); return promise; } void AsyncCall::OnExecute(napi_env env, void *data) { AsyncContext *context = reinterpret_cast(data); context->ctx->Exec(); } void AsyncCall::OnComplete(napi_env env, napi_status status, void *data) { AsyncContext *context = reinterpret_cast(data); napi_value output = nullptr; napi_status runStatus = (*context->ctx)(env, &output); napi_value result[ARG_BUTT] = { 0 }; PASTEBOARD_HILOGD(PASTEBOARD_MODULE_JS_NAPI, "run the js callback function:status[%{public}d]runStatus[%{public}d]", status, runStatus); if (status == napi_ok && runStatus == napi_ok) { napi_get_undefined(env, &result[ARG_ERROR]); if (output != nullptr) { result[ARG_DATA] = output; } else { PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "AsyncCall::OnComplete output == nullptr"); napi_get_undefined(env, &result[ARG_DATA]); } } else { napi_value errCode = nullptr; napi_value message = nullptr; std::string errMsg("async call failed"); if (context->ctx->errCode_ != 0) { napi_create_string_utf8(env, std::to_string(context->ctx->errCode_).c_str(), NAPI_AUTO_LENGTH, &errCode); } if (!context->ctx->errMsg_.empty()) { errMsg = context->ctx->errMsg_; } napi_create_string_utf8(env, errMsg.c_str(), NAPI_AUTO_LENGTH, &message); napi_create_error(env, errCode, message, &result[ARG_ERROR]); napi_get_undefined(env, &result[ARG_DATA]); } if (context->defer != nullptr) { // promise if (status == napi_ok && runStatus == napi_ok) { napi_resolve_deferred(env, context->defer, result[ARG_DATA]); } else { napi_reject_deferred(env, context->defer, result[ARG_ERROR]); } } else { // callback PASTEBOARD_HILOGI(PASTEBOARD_MODULE_JS_NAPI, "Callback to do!"); napi_value callback = nullptr; napi_get_reference_value(env, context->callback, &callback); napi_value returnValue; napi_call_function(env, nullptr, callback, ARG_BUTT, result, &returnValue); } DeleteContext(env, context); } void AsyncCall::DeleteContext(napi_env env, AsyncContext *context) { if (env != nullptr) { napi_delete_reference(env, context->callback); napi_delete_reference(env, context->self); napi_delete_async_work(env, context->work); } delete context; } } // namespace OHOS::MiscServicesNapi