功能描述

napi_load_module_with_info接口的功能是进行模块的加载,当模块加载出来之后,可以使用函数napi_get_property获取模块导出的变量,也可以使用napi_get_named_property获取模块导出的函数,该函数可以在新创建的ArkTs基础运行时环境中使用

接口介绍

napi_status napi_load_module_with_info(napi_env env,
const char* path,
const char* module_info,
napi_value* result);
参数说明
env当前的虚拟机环境
path加载的文件路径或者模块名
module_infobundleName/moduleName的路径拼接
result加载的模块

相关功能接口:

napi\_load\_module\_with\_info 获取模块名

napi\_get\_named\_property 获取模块中的函数

napi\_call\_function 调用函数

napi\_load\_module\_with\_info的使用场景

加载本地工程的hap模块的文件路径和har模块名,加载远程包的har模块名和ohpm包名,加载API(@ohos或@system),加载Native库(.so文件)

场景一:加载同模块内自定义ArkTs文件导出内容的同步方法

arkts侧代码:

//./src/main/ets/Test.ets
let value = 123;
function test() {
  console.log("Hello Harmony OS");
}
export {value, test};

build-profile.json5配置:

{
  "buildOption" : {
  "arkOptions" : {
    "runtimeOnly" : {
      "sources": [
      "./src/main/ets/Test.ets"
      ]
    }
  }
}
}

native侧代码:

static napi_value loadModule(napi_env env, napi_callback_info info) {
  napi_value result;
  //1. 使用napi_load_module_with_info加载Test文件中的模块
  napi_status status = napi_load_module_with_info(env, "entry/src/main/ets/Test", "com.example.application/entry", &result);

  napi_value testFn;
  //2. 使用napi_get_named_property获取test函数
  napi_get_named_property(env, result, "test", &testFn);
  //3. 使用napi_call_function调用函数test
  napi_call_function(env, result, testFn, 0, nullptr, nullptr);

  napi_value value;
  napi_value key;
  std::string keyStr = "value";
  napi_create_string_utf8(env, keyStr.c_str(), keyStr.size(), &key);
  //4. 使用napi_get_property获取变量value
  napi_get_property(env, result, key, &value);
  return result;
}

场景二:加载同模块内自定义ArkTs文件导出内容的异步方法

与场景一配置相同,在使用napi\_load\_module\_with\_info 获取模块名,napi\_get\_named\_property 获取模块中的函数后,可参考线程安全函数:

https://developer.huawei.com/consumer/cn/doc/harmonyos-guides-V5/use-napi-thread-safety-V5

场景三:加载ohpm包名和har模块名

在基础用法上要在oh-package.json5引入对应的har和包依赖,在build-profile.json5配置对应的名称

oh-package.json5配置:

{
  "dependencies": {
  "library": "file:../library" //本地har
  //"library": "file:./libs/library.har" //远程本地har
  //"json5": "^2.2.3" //ohpm包
}
}

build-profile.json5配置:

{
  "buildOption" : {
  "arkOptions" : {
    "runtimeOnly" : {
      "packages": [
      "library"
      //"json5"
      ]
    }
  }
}
}

native侧代码:

加载har模块

static napi_value loadModule(napi_env env, napi_callback_info info) {
  napi_value result;
  //1. 使用napi_load_module_with_info加载Test文件中的模块
  napi_status status = napi_load_module_with_info(env, "library", "com.example.application/entry", &result);

  napi_value testFn;
  //2. 使用napi_get_named_property获取test函数
  napi_get_named_property(env, result, "test", &testFn);
  //3. 使用napi_call_function调用函数test
  napi_call_function(env, result, testFn, 0, nullptr, nullptr);

  napi_value value;
  napi_value key;
  std::string keyStr = "value";
  napi_create_string_utf8(env, keyStr.c_str(), keyStr.size(), &key);
  //4. 使用napi_get_property获取变量value
  napi_get_property(env, result, key, &value);
  return result;
}

加载ohpm包名

static napi_value loadModule(napi_env env, napi_callback_info info) {
  napi_value result;
  //1. 使用napi_load_module_with_info加载json5
  napi_status status = napi_load_module_with_info(env, "json5", "com.example.application/entry", &result);

  napi_value key;
  std::string keyStr = "default";
  napi_create_string_utf8(env, keyStr.c_str(), keyStr.size(), &key);
  //2. 使用napi_get_property获取default对象
  napi_value defaultValue;
  napi_get_property(env, result, key, &defaultValue);

  napi_value stringifyFn;
  //3. 使用napi_get_named_property获取stringify函数
  napi_get_named_property(env, defaultValue, "stringify", &stringifyFn);
  //4. 使用napi_call_function调用函数stringify
  napi_value argStr;
  std::string text = "call json5 stringify";
  napi_create_string_utf8(env, text.c_str(), text.size(), &argStr);
  napi_value args[1] = {argStr};

  napi_value returnValue;
  napi_call_function(env, defaultValue, stringifyFn, 1, args, &returnValue);
  return result;
}

场景四:加载系统API(@ohos或@system)

系统api可直接在native侧调用,无需配置

static napi_value loadModule(napi_env env, napi_callback_info info) {
  //1. 使用napi_load_module_with_info加载模块@ohos.hilog
  napi_value result;
  napi_status status = napi_load_module_with_info(env, "@ohos.hilog", nullptr, &result);

  //2. 使用napi_get_named_property获取info函数
  napi_value infoFn;
  napi_get_named_property(env, result, "info", &infoFn);

  napi_value tag;
  std::string formatStr = "test";
  napi_create_string_utf8(env, formatStr.c_str(), formatStr.size(), &tag);

  napi_value outputString;
  std::string str = "Hello Harmony OS";
  napi_create_string_utf8(env, str.c_str(), str.size(), &outputString);

  napi_value flag;
  napi_create_int32(env, 0, &flag);

  napi_value args[3] = {flag, tag, outputString};
  //3. 使用napi_call_function调用info函数
  napi_call_function(env, result, infoFn, 3, args, nullptr);
  return result;
}

场景五:加载模块Native库(xxx.so)

只支持包含index.d.ts的Native模块

.so的index.d.ts代码

export const add: (a: number, b: number) => number;

oh-package.json5配置:

{
  "dependencies": {
  "libentry.so": "file../src/main/cpp/types/libentry"
}
}

build-profile.json5配置:

{
  "buildOption" : {
  "arkOptions" : {
    "runtimeOnly" : {
      "packages": [
      "libentry.so"
      ]
    }
  }
}
}

native侧代码:

static napi_value loadModule(napi_env env, napi_callback_info info) {
  napi_value result;
  //1. 使用napi_load_module_with_info加载libentry.so
  napi_status status = napi_load_module_with_info(env, "libentry.so", "com.example.application/entry", &result);

  napi_value addFn;
  //2. 使用napi_get_named_property获取add函数
  napi_get_named_property(env, result, "add", &addFn);

  napi_value a;
  napi_value b;
  napi_create_int32(env, 2, &a);
  napi_create_int32(env, 3, &b);
  napi_value args[2] = {a, b};
  //3. 使用napi_call_function调用函数add
  napi_value returnValue;
  napi_call_function(env, result, addFn, 2, args, &returnValue);
  return result;
}

场景六:在线程中加载ArkTs运行时环境的自定义模块

通过pthread\_create创建新线程后,可以通过napi\_create\_ark\_runtime来创建一个新的ArkTs基础运行时环境,并通过该运行时环境加载ArkTs模块,目前支持在ArkTs模块中使用console接口打印日志,使用timer定时器功能。当使用结束后,需要通过napi\_destroy\_ark\_runtime来销毁所创建的ArkTs基础运行时环境。

arkts侧代码:

// ObjectUtils.ets
export function Logger() {
  console.log("print log");
}

native侧代码:

#include <pthread.h>

#include "napi/native_api.h"

static void *CreateArkRuntimeFunc(void *arg)
{
  // 1. 创建基础运行环境
  napi_env env;
  napi_status ret = napi_create_ark_runtime(&env);
  if (ret != napi_ok) {
    return nullptr;
  }

  // 2. 加载自定义模块
  napi_value objUtils;
  ret = napi_load_module_with_info(env, "ets/pages/ObjectUtils", "com.exmaple.myapplication/entry", &objUtils);
  if (ret != napi_ok) {
    return nullptr;
  }

  // 3. 使用ArtTs中的logger
  napi_value logger;
  ret = napi_get_named_property(env, objUtils, "Logger", &logger);
  if (ret != napi_ok) {
    return nullptr;
  }
  ret = napi_call_function(env, objUtils, logger, 0, nullptr, nullptr);

  // 4. 销毁arkts环境
  ret = napi_destroy_ark_runtime(&env);

  return nullptr;
}


static napi_value CreateArkRuntime(napi_env env, napi_callback_info info)
{
  pthread_t tid;
  pthread_create(&tid, nullptr, CreateArkRuntimeFunc, nullptr);
  pthread_join(tid, nullptr);
  return nullptr;
}

场景七:在har1的native侧调用har2的ets方法的方法

har1中的代码

arkts侧代码:

export function circleTest(a: string) {
  a = "com.example.loadmoduleinfodemo/entry"
  let libHar:ESObject = napi.napiLoadModule("libraryHar",a);
  console.log(libHar.b);
  libHar.circleTest();
}

build-profile.json5配置:

"buildOption": {
  "arkOptions": {
    "runtimeOnly": {
      "sources": [
      ],
      "packages":  [ 'libraryHar', 'liblibrary.so']//har2,har1的so
    }},
  "externalNativeOptions": {
    "path": "./src/main/cpp/CMakeLists.txt",
    "arguments": "",
    "cppFlags": "",
  }
},

native代码:

static napi_value LoadModule(napi_env env, napi_callback_info info) {
  size_t argc = 2;
  napi_value args[2] = {nullptr};

  napi_status params = napi_get_cb_info(env, info, &argc, args, nullptr, nullptr);

  napi_value path_c = args[1];
  napi_value name_c = args[0];
  char name[500] = {0};
  char path[500] = {0};
  size_t len1 = 0;
  size_t len2 = 0;
  //接收传入的"com.example.loadmoduleinfodemo/entry"路径和"libraryHar"har包名称
  napi_get_value_string_utf8(env, name_c, name, 500, &len1);
  napi_get_value_string_utf8(env, path_c, path, 500, &len2);
  napi_value result;
  //加载har模块
  napi_status status = napi_load_module_with_info(env,  name, path, &result);

  napi_value nameFun = nullptr;
  //获取自定义函数
  status = napi_get_named_property(env, result, "circleTest", &nameFun);
  napi_value outputObject;
  //调用函数
  status = napi_call_function(env, nullptr, nameFun, 0, nullptr, &outputObject);
  ​
  OH_LOG_ERROR(LOG_APP, "chenlin LoadModule status %{public}d", status);
  return result;
}

har2中的代码

arkts侧代码:

export { b, c,libHarTest, circleTest } from "./src/main/ets/Test"
export function circleTest() {
  console.log("napi_load_module_with_info static product har function test circle");
}
export let b = "napi_load_module_with_info static product har variable test circle";

HarmonyOS码上奇行
7.3k 声望2.8k 粉丝