/* * Copyright (c) 2022 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_error.h" namespace OHOS::WallpaperNAPI { void JsError::ThrowError(napi_env env, int32_t errorCode, const std::string &errorMessage) { HILOG_DEBUG("ThrowError in."); napi_value message; NAPI_CALL_RETURN_VOID(env, napi_create_string_utf8(env, errorMessage.c_str(), NAPI_AUTO_LENGTH, &message)); napi_value error; NAPI_CALL_RETURN_VOID(env, napi_create_error(env, nullptr, message, &error)); napi_value code; NAPI_CALL_RETURN_VOID(env, napi_create_int32(env, errorCode, &code)); NAPI_CALL_RETURN_VOID(env, napi_set_named_property(env, error, "code", code)); NAPI_CALL_RETURN_VOID(env, napi_throw(env, error)); } JsErrorInfo JsError::ConvertErrorCode(ErrorCode wallpaperErrorCode) { HILOG_DEBUG("ConvertErrorCode in."); JsErrorInfo errorObject; switch (wallpaperErrorCode) { case E_PARAMETERS_INVALID: errorObject.code = static_cast<int32_t>(ErrorThrowType::PARAMETER_ERROR); errorObject.message = std::string(PARAMETER_ERROR_MESSAGE); break; case E_NO_PERMISSION: errorObject.code = static_cast<int32_t>(ErrorThrowType::PERMISSION_ERROR); errorObject.message = PERMISSION_DENIED_MESSAGE; break; case E_NOT_SYSTEM_APP: errorObject.code = static_cast<int32_t>(ErrorThrowType::SYSTEM_APP_PERMISSION_ERROR); errorObject.message = PERMISSION_FAILED_MESSAGE; break; default: HILOG_DEBUG("Non-existent error type!"); break; } return errorObject; } } // namespace OHOS::WallpaperNAPI