往期鸿蒙5.0全套实战文章必看:(文中附带全栈鸿蒙5.0学习资料)
使用JSVM-API接口进行primitive类相关开发
简介
在使用JSVM-API接口时,开发人员可以实现在JSVM模块中与JavaScript对象的交互,并进行数据转换和获取特定对象的操作,它们在不同的场景中发挥着重要的作用,使开发人员能够更灵活地处理JavaScript值和对象。
基本概念
在使用JSVM操作JavaScript对象时,有一些基本概念需要了解:
- JavaScript值到C/C++类型的转换: 在JSVM模块中,可以使用JSVM函数将JavaScript值转换为C/C++的数据类型,如将JavaScript数值转换为C/C++的整数、将JavaScript字符串转换为C/C++的字符数组等。同样,也可以将C/C++的数据类型转换为JavaScript值,以便将结果返回给JavaScript代码。
接口说明
接口 | 功能说明 |
---|---|
OH_JSVM_CoerceToBool | 将目标值转换为Boolean类型对象。 |
OH_JSVM_CoerceToNumber | 将目标值转换为Number类型对象。 |
OH_JSVM_CoerceToObject | 将目标值转换为Object类型对象。 |
OH_JSVM_CoerceToString | 将目标值转换为String类型对象。 |
OH_JSVM_GetBoolean | 获取JavaScript单例对象。 |
OH_JSVM_GetValueBool | 获取给定JavaScript Boolean的C布尔基础类型值。 |
OH_JSVM_GetGlobal | 获取当前环境中的全局global对象。 |
OH_JSVM_GetNull | 获取JavaScript null。 |
OH_JSVM_GetUndefined | 获取JavaScript undefined。 |
使用示例
JSVM-API接口开发流程参考使用JSVM-API实现JS与C/C++语言交互开发流程,本文仅对接口对应C++及ArkTS相关代码进行展示。
OH_JSVM_CoerceToBool
用于将一个给定的JavaScript值强制转为JavaScript boolean值。
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// CoerceToBool注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = CoerceToBool},
};
static JSVM_CallbackStruct *method = param;
// CoerceToBool方法别名,ArkTS侧调用
static JSVM_PropertyDescriptor descriptor[] = {
{"coerceToBool", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_CoerceToBool的样例方法
static JSVM_Value CoerceToBool(JSVM_Env env, JSVM_CallbackInfo info)
{
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
JSVM_Value boolean = nullptr;
JSVM_Status status = OH_JSVM_CoerceToBool(env, args[0], &boolean);
if (status != JSVM_OK) {
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_CoerceToBool failed");
} else {
bool result = false;
OH_JSVM_GetValueBool(env, boolean, &result);
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_CoerceToBool success:%{public}d", result);
}
return boolean;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
let script: string = `coerceToBool("123")`;
try {
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'CoerceToBool: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'CoerceToBool: %{public}s', error.message);
}
OH_JSVM_CoerceToNumber
用于将给定的JavaScript value强转为JavaScript number。
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// CoerceToNumber注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = CoerceToNumber},
};
static JSVM_CallbackStruct *method = param;
// CoerceToNumber方法别名,ArkTS侧调用
static JSVM_PropertyDescriptor descriptor[] = {
{"coerceToNumber", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_CoerceToNumber的样例方法
static JSVM_Value CoerceToNumber(JSVM_Env env, JSVM_CallbackInfo info)
{
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
JSVM_Value number = nullptr;
JSVM_Status status = OH_JSVM_CoerceToNumber(env, args[0], &number);
if (status != JSVM_OK) {
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_CoerceToNumber failed");
} else {
int32_t result = 0;
OH_JSVM_GetValueInt32(env, number, &result);
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_CoerceToNumber success:%{public}d", result);
}
return number;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
let script: string = `coerceToNumber(true)`;
try {
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'CoerceToNumber: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'CoerceToNumber: %{public}s', error.message);
}
OH_JSVM_CoerceToObject
用于将给定的JavaScript value强转为JavaScript Object类型。
cpp 部分代码:
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// CoerceToObjec注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = CoerceToObject},
};
static JSVM_CallbackStruct *method = param;
// CoerceToObject方法别名,ArkTS侧调用
static JSVM_PropertyDescriptor descriptor[] = {
{"coerceToObject", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_CoerceToObject的样例方法
static JSVM_Value CoerceToObject(JSVM_Env env, JSVM_CallbackInfo info)
{
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
JSVM_Value obj = nullptr;
JSVM_Status status = OH_JSVM_CoerceToObject(env, args[0], &obj);
if (status != JSVM_OK) {
OH_JSVM_ThrowError(env, nullptr, "JSVM OH_JSVM_CoerceToObject failed");
return nullptr;
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_CoerceToObject success");
}
return obj;
}
ArkTS侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
let script: string = `coerceToObject(123)`;
try {
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'CoerceToObject001: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'CoerceToObject001: %{public}s', error.message);
}
OH_JSVM_CoerceToString
用于将给定的JavaScript value强转为JavaScript string类型。
cpp部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// CoerceToString注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = CoerceToString},
};
static JSVM_CallbackStruct *method = param;
// CoerceToString方法别名,ArkTS侧调用
static JSVM_PropertyDescriptor descriptor[] = {
{"coerceToString", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_CoerceToString的样例方法
static JSVM_Value CoerceToString(JSVM_Env env, JSVM_CallbackInfo info)
{
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
JSVM_Value str = nullptr;
JSVM_Status status = OH_JSVM_CoerceToString(env, args[0], &str);
if (status != JSVM_OK) {
OH_JSVM_ThrowError(env, nullptr, "JSVM OH_JSVM_CoerceToString fail");
return nullptr;
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_CoerceToString success");
}
return str;
}
ArkTS侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
let script: string = `coerceToString(22222)`;
try {
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'CoerceToString: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'CoerceToString: %{public}s', error.message);
}
OH_JSVM_GetBoolean
获取给定布尔值的JavaScript单例对象。
cpp部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// GetBoolean注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = GetBoolean},
};
static JSVM_CallbackStruct *method = param;
// GetBoolean方法别名,供JS调用
static JSVM_PropertyDescriptor descriptor[] = {
{"getBoolean", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_GetBoolean的样例方法
static JSVM_Value GetBoolean(JSVM_Env env, JSVM_CallbackInfo info)
{
// 传入两个参数并解析
size_t argc = 2;
JSVM_Value argv[2] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, argv, nullptr, nullptr);
int32_t paramData = 0;
OH_JSVM_GetValueInt32(env, argv[0], ¶mData);
int32_t paramValue = 0;
OH_JSVM_GetValueInt32(env, argv[1], ¶mValue);
JSVM_Value returnValue = nullptr;
bool type = false;
if (paramData == paramValue) {
OH_LOG_INFO(LOG_APP, "JSVM resultType equal");
type = true;
}
JSVM_Status status = OH_JSVM_GetBoolean(env, type, &returnValue);
if (status != JSVM_OK) {
OH_JSVM_ThrowError(env, nullptr, "JSVM OH_JSVM_CoerceToNumber fail");
} else {
bool result = false;
OH_JSVM_GetValueBool(env, returnValue, &result);
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_CoerceToNumber success:%{public}d", result);
}
// 返回结果
return returnValue;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
try {
let data = 1;
let compareData = 2;
let script: string = `getBoolean(${data}, ${compareData})`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetBoolean: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetBoolean: %{public}s', error.message);
}
try {
let data = 1;
let compareData = 1;
let script: string = `getBoolean(${data}, ${compareData})`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetBoolean: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetBoolean: %{public}s', error.message);
}
OH_JSVM_GetValueBool
使用这个函数将JavaScript中的布尔值转为等价的C布尔值。
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// GetValueBool注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = GetValueBool},
};
static JSVM_CallbackStruct *method = param;
// GetValueBool方法别名,供JS调用
static JSVM_PropertyDescriptor descriptor[] = {
{"getValueBool", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_GetValueBool的样例方法
static JSVM_Value GetValueBool(JSVM_Env env, JSVM_CallbackInfo info)
{
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
bool result = false;
JSVM_Status status = OH_JSVM_GetValueBool(env, args[0], &result);
if (status == JSVM_BOOLEAN_EXPECTED || status != JSVM_OK) {
// 如果OH_JSVM_GetValueBool成功会返回JSVM_OK,如果传入一个非布尔值则会返回JSVM_BOOLEAN_EXPECTED
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_GetValueBool fail:%{public}d", status);
return nullptr;
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_GetValueBool success:%{public}d", result);
}
JSVM_Value boolJv = nullptr;
OH_JSVM_GetBoolean(env, result, &boolJv);
return boolJv;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
// 分别传入布尔值和非布尔值检测接口,传入布尔值将返回原布尔值,传入其他类型返回undefined
try {
let data = `"abc"`;
let script: string = `getValueBool(${data})`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetValueBool: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetValueBool: %{public}s', error.message);
}
try {
let data = true;
let script: string = `getValueBool(${data})`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetValueBool: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetValueBool: %{public}s', error.message);
}
try {
let data = false;
let script: string = `getValueBool(${data})`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetValueBool: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetValueBool: %{public}s', error.message);
}
OH_JSVM_GetGlobal
用于获取全局JavaScript对象。该函数的主要作用是获取表示JavaScript全局对象的JSVM_Value,使得JSVM模块能够与JavaScript运行时的全局对象进行交互。
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// GetGlobal注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = GetGlobal},
};
static JSVM_CallbackStruct *method = param;
// GetGlobal方法别名,供JS调用
static JSVM_PropertyDescriptor descriptor[] = {
{"getGlobal", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_GetGlobal的样例方法
static JSVM_Value GetGlobal(JSVM_Env env, JSVM_CallbackInfo info)
{
// 获取全局对象
JSVM_Value value = nullptr;
JSVM_Value global = nullptr;
OH_JSVM_CreateInt32(env, 1, &value);
JSVM_Status status = OH_JSVM_GetGlobal(env, &global);
OH_JSVM_SetNamedProperty(env, global, "Row", value);
if (status != JSVM_OK) {
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_GetGlobal fail");
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_GetGlobal success");
}
return global;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
let script: string = `getGlobal()`
try {
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetGlobal: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetGlobal: %{public}s', error.message);
}
OH_JSVM_GetNull
用于获取JavaScript null
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// GetNull注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = GetNull},
};
static JSVM_CallbackStruct *method = param;
// GetNull方法别名,供JS调用
static JSVM_PropertyDescriptor descriptor[] = {
{"getNull", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_GetNull的样例方法
static JSVM_Value GetNull(JSVM_Env env, JSVM_CallbackInfo info) {
JSVM_Value nullValue = nullptr;
JSVM_Status status = OH_JSVM_GetNull(env, &nullValue);
if (status != JSVM_OK) {
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_GetNull fail");
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_GetNull success");
}
return nullValue;
}
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
try {
let script: string = `getNull()`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetNull: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetNull: %{public}s', error.message);
}
OH_JSVM_GetUndefined
用于获取JavaScript undefined
cpp 部分代码
// hello.cpp
#include "napi/native_api.h"
#include "ark_runtime/jsvm.h"
#include <hilog/log.h>
// GetUndefined注册回调
static JSVM_CallbackStruct param[] = {
{.data = nullptr, .callback = GetUndefined},
};
static JSVM_CallbackStruct *method = param;
// GetUndefined方法别名,供JS调用
static JSVM_PropertyDescriptor descriptor[] = {
{"getUndefined", nullptr, method++, nullptr, nullptr, nullptr, JSVM_DEFAULT},
};
// OH_JSVM_GetUndefined的样例方法
static JSVM_Value GetUndefined(JSVM_Env env, JSVM_CallbackInfo info)
{
// 获取并解析传进的参数
size_t argc = 1;
JSVM_Value args[1] = {nullptr};
OH_JSVM_GetCbInfo(env, info, &argc, args, nullptr, nullptr);
// 创建一个undefined值
JSVM_Value value = nullptr;
JSVM_Status status = OH_JSVM_GetUndefined(env, &value);
if (status != JSVM_OK) {
OH_LOG_ERROR(LOG_APP, "JSVM OH_JSVM_GetUndefined failed");
} else {
OH_LOG_INFO(LOG_APP, "JSVM OH_JSVM_GetUndefined success");
}
return value;
}
接口声明
ArkTS 侧示例代码
import hilog from "@ohos.hilog"
// 通过import的方式,引入Native能力。
import napitest from "libentry.so"
try {
let script: string = `getUndefined()`;
let result = napitest.runJsVm(script);
hilog.info(0x0000, 'JSVM', 'GetUndefined: %{public}s', result);
} catch (error) {
hilog.error(0x0000, 'JSVM', 'GetUndefined: %{public}s', error.message);
}