/* * Copyright (C) 2024 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 "country_code_callback_napi.h" #include "common_utils.h" #include "ipc_skeleton.h" #include "location_log.h" #include "napi/native_api.h" #include "country_code.h" #include "napi_util.h" namespace OHOS { namespace Location { static std::mutex g_regCallbackMutex; static std::vector g_registerCallbacks; CountryCodeCallbackNapi::CountryCodeCallbackNapi() { env_ = nullptr; handlerCb_ = nullptr; } CountryCodeCallbackNapi::~CountryCodeCallbackNapi() { } int CountryCodeCallbackNapi::OnRemoteRequest( uint32_t code, MessageParcel& data, MessageParcel& reply, MessageOption& option) { LBSLOGD(COUNTRY_CODE_CALLBACK, "CountryCodeCallbackNapi::OnRemoteRequest!"); if (data.ReadInterfaceToken() != GetDescriptor()) { LBSLOGE(COUNTRY_CODE_CALLBACK, "invalid token."); return -1; } switch (code) { case COUNTRY_CODE_CHANGE_EVENT: { auto countryCodePtr = CountryCode::Unmarshalling(data); OnCountryCodeChange(countryCodePtr); break; } default: { IPCObjectStub::OnRemoteRequest(code, data, reply, option); break; } } return 0; } bool FindCountryCodeCallback(napi_ref cb) { std::unique_lock guard(g_regCallbackMutex); auto iter = std::find(g_registerCallbacks.begin(), g_registerCallbacks.end(), cb); if (iter == g_registerCallbacks.end()) { return false; } return true; } void DeleteCountryCodeCallback(napi_ref cb) { std::unique_lock guard(g_regCallbackMutex); for (auto iter = g_registerCallbacks.begin(); iter != g_registerCallbacks.end(); iter++) { if (*iter == cb) { iter = g_registerCallbacks.erase(iter); break; } } } bool CountryCodeCallbackNapi::Send(const std::shared_ptr& country) { std::unique_lock guard(mutex_); uv_loop_s *loop = nullptr; if (env_ == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "env_ == nullptr."); return false; } if (handlerCb_ == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "handler is nullptr."); return false; } if (country == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "country == nullptr."); return false; } NAPI_CALL_BASE(env_, napi_get_uv_event_loop(env_, &loop), false); if (loop == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "loop == nullptr."); return false; } uv_work_t *work = new (std::nothrow) uv_work_t; if (work == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "work == nullptr."); return false; } auto context = new (std::nothrow) CountryCodeContext(env_); if (context == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "context == nullptr."); delete work; return false; } if (!InitContext(context)) { LBSLOGE(COUNTRY_CODE_CALLBACK, "InitContext fail"); return false; } context->country = country; work->data = context; UvQueueWork(loop, work); return true; } void CountryCodeCallbackNapi::UvQueueWork(uv_loop_s* loop, uv_work_t* work) { uv_queue_work( loop, work, [](uv_work_t *work) {}, [](uv_work_t *work, int status) { CountryCodeContext *context = nullptr; napi_handle_scope scope = nullptr; if (work == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "work is nullptr!"); return; } context = static_cast(work->data); if (context == nullptr || context->env == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "context is nullptr!"); delete work; return; } if (!FindCountryCodeCallback(context->callback[0])) { LBSLOGE(COUNTRY_CODE_CALLBACK, "no valid callback"); delete context; delete work; return; } NAPI_CALL_RETURN_VOID(context->env, napi_open_handle_scope(context->env, &scope)); if (scope == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "scope is nullptr"); delete context; delete work; return; } napi_value jsEvent; CHK_NAPI_ERR_CLOSE_SCOPE(context->env, napi_create_object(context->env, &jsEvent), scope, context, work); if (context->country) { CountryCodeToJs(context->env, context->country, jsEvent); } else { LBSLOGE(LOCATOR_STANDARD, "country is nullptr!"); } if (context->callback[0] != nullptr) { napi_value undefine; napi_value handler = nullptr; CHK_NAPI_ERR_CLOSE_SCOPE(context->env, napi_get_undefined(context->env, &undefine), scope, context, work); CHK_NAPI_ERR_CLOSE_SCOPE(context->env, napi_get_reference_value(context->env, context->callback[SUCCESS_CALLBACK], &handler), scope, context, work); if (napi_call_function(context->env, nullptr, handler, 1, &jsEvent, &undefine) != napi_ok) { LBSLOGE(COUNTRY_CODE_CALLBACK, "Report event failed"); } } NAPI_CALL_RETURN_VOID(context->env, napi_close_handle_scope(context->env, scope)); delete context; delete work; }); } void CountryCodeCallbackNapi::OnCountryCodeChange(const std::shared_ptr& country) { LBSLOGD(COUNTRY_CODE_CALLBACK, "CountryCodeCallbackNapi::OnCountryCodeChange"); Send(country); } void CountryCodeCallbackNapi::SetEnv(napi_env env) { std::unique_lock guard(mutex_); env_ = env; } void CountryCodeCallbackNapi::SetCallback(napi_ref cb) { { std::unique_lock guard(mutex_); handlerCb_ = cb; } std::unique_lock guard(g_regCallbackMutex); g_registerCallbacks.emplace_back(cb); } void CountryCodeCallbackNapi::DeleteHandler() { std::unique_lock guard(mutex_); if (handlerCb_ == nullptr || env_ == nullptr) { LBSLOGE(COUNTRY_CODE_CALLBACK, "handler or env is nullptr."); return; } DeleteCountryCodeCallback(handlerCb_); NAPI_CALL_RETURN_VOID(env_, napi_delete_reference(env_, handlerCb_)); handlerCb_ = nullptr; } } // namespace Location } // namespace OHOS