* 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.
*/
#ifndef INTERFACE_KITS_JS_UTILS_H
#define INTERFACE_KITS_JS_UTILS_H
#include "ability.h"
#include "error_code_map.h"
#include "extra_config.h"
#include "input_method_panel.h"
#include "input_method_utils.h"
#include "js_callback_object.h"
#include "js_util.h"
#include "napi/native_api.h"
#include "napi/native_common.h"
#include "napi/native_node_api.h"
#include "string_ex.h"
using Ability = OHOS::AppExecFwk::Ability;
namespace OHOS {
namespace MiscServices {
enum TypeCode : int32_t {
TYPE_NONE = 0,
TYPE_UNDEFINED,
TYPE_NULL,
TYPE_BOOLEAN,
TYPE_NUMBER,
TYPE_STRING,
TYPE_SYMBOL,
TYPE_OBJECT,
TYPE_FUNCTION,
TYPE_EXTERNAL,
TYPE_BIGINT,
TYPE_ARRAY_BUFFER,
TYPE_ARRAY,
};
#define PARAM_CHECK_RETURN(env, condition, message, typeCode, retVal) \
do { \
if (!(condition)) { \
JsUtils::ThrowException(env, IMFErrorCode::EXCEPTION_PARAMCHECK, message, typeCode); \
return retVal; \
} \
} while (0)
#define PARAM_CHECK_RETURN_VOID(env, condition, message, typeCode) \
do { \
if (!(condition)) { \
JsUtils::ThrowException(env, IMFErrorCode::EXCEPTION_PARAMCHECK, message, typeCode); \
return; \
} \
} while (0)
#define RESULT_CHECK_RETURN(env, condition, errCode, message, typeCode, retVal) \
do { \
if (!(condition)) { \
JsUtils::ThrowException(env, errCode, message, typeCode); \
return retVal; \
} \
} while (0)
#define RESULT_CHECK_RETURN_VOID(env, condition, errCode, message, typeCode) \
do { \
if (!(condition)) { \
JsUtils::ThrowException(env, errCode, message, typeCode); \
return; \
} \
} while (0)
#define CHECK_RETURN_VOID(condition, message) \
do { \
if (!(condition)) { \
IMSA_HILOGE("test (" #condition ") failed: " message); \
return; \
} \
} while (0)
#define CHECK_RETURN(condition, message, retVal) \
do { \
if (!(condition)) { \
IMSA_HILOGE("test (" #condition ") failed: " message); \
return retVal; \
} \
} while (0)
struct JsPropertyInfo {
napi_valuetype type;
TypeCode typeCode;
std::string propertyName;
};
class JsUtils {
public:
static void ThrowException(napi_env env, int32_t err, const std::string &msg, TypeCode type);
static napi_value ToError(napi_env env, int32_t code, const std::string &msg);
static int32_t Convert(int32_t code);
static bool Equals(napi_env env, napi_value value, napi_ref copy, std::thread::id threadId);
static void *GetNativeSelf(napi_env env, napi_callback_info info);
static const std::string ToMessage(int32_t code);
template<typename T>
static bool ReadOptionalProperty(napi_env env, napi_value object, const JsPropertyInfo &jsPropInfo, T &value)
{
if (!JsUtil::HasProperty(env, object, jsPropInfo.propertyName.c_str())) {
return false;
}
napi_value jsObject = nullptr;
napi_get_named_property(env, object, jsPropInfo.propertyName.c_str(), &jsObject);
PARAM_CHECK_RETURN(env, JsUtil::GetType(env, jsObject) == jsPropInfo.type, jsPropInfo.propertyName,
jsPropInfo.typeCode, false);
PARAM_CHECK_RETURN(env, JsUtils::GetValue(env, jsObject, value) == napi_ok,
"failed to convert " + jsPropInfo.propertyName, TYPE_NONE, false);
return true;
}
static napi_status GetValue(napi_env env, napi_value in, int32_t &out);
static napi_status GetValue(napi_env env, napi_value in, uint32_t &out);
static napi_status GetValue(napi_env env, napi_value in, bool &out);
static napi_status GetValue(napi_env env, napi_value in, double &out);
static napi_status GetValue(napi_env env, napi_value in, std::string &out);
static napi_status GetValue(napi_env env, napi_value in, std::unordered_map<std::string, PrivateDataValue> &out);
static napi_status GetValue(napi_env env, napi_value in, PrivateDataValue &out);
static napi_status GetValue(napi_env env, napi_value in, const std::string &type, napi_value &out);
static napi_status GetValue(napi_env env, napi_value in, PanelInfo &out);
static napi_status GetValue(napi_env env, napi_value in, Rosen::Rect &out);
static napi_status GetValue(napi_env env, napi_value in, std::vector<uint8_t> &out);
static napi_value GetValue(napi_env env, const std::vector<InputWindowInfo> &in);
static napi_value GetValue(napi_env env, const InputWindowInfo &in);
static napi_value GetValue(napi_env env, const Rosen::Rect &in);
static napi_value GetValue(napi_env env, const CursorInfo &in);
static napi_value GetJsPrivateCommand(napi_env env, const std::unordered_map<std::string, PrivateDataValue> &in);
static napi_value GetValue(napi_env env, const std::vector<uint8_t> &in);
static napi_status GetValue(napi_env env, const std::string &in, napi_value &out);
static napi_status GetMessageHandlerCallbackParam(napi_value *argv,
const std::shared_ptr<JSMsgHandlerCallbackObject> &jsMessageHandler, const ArrayBuffer &arrayBuffer,
size_t size);
private:
static const std::map<int32_t, std::string> ERROR_CODE_CONVERT_MESSAGE_MAP;
static const std::map<int32_t, std::string> PARAMETER_TYPE;
static constexpr int32_t ERROR_CODE_QUERY_FAILED = 1;
static constexpr uint8_t MAX_ARGMENT_COUNT = 10;
};
}
}
#endif