将 napi 接口注册到元能力框架。

Change-Id: Ica68a3f944d8d607833a0529342ab0025bc88371
Signed-off-by: yudechen <chenyude@huawei.com>
This commit is contained in:
yudechen
2022-02-14 17:22:04 +08:00
committed by chenyude
parent 1dee1aa29f
commit dd364a9e2e
2 changed files with 40 additions and 0 deletions
@@ -27,6 +27,10 @@
#include "hilog_wrapper.h"
#include "js_runtime_utils.h"
#include "systemcapability.h"
const unsigned int SYSCAP_MAX_SIZE = 100;
namespace OHOS {
namespace AbilityRuntime {
namespace {
@@ -161,6 +165,35 @@ NativeValue* SetTimeout(NativeEngine* engine, NativeCallbackInfo* info)
return jsRuntime.SetCallbackTimer(*engine, *info, false);
}
NativeValue* CanIUse(NativeEngine* engine, NativeCallbackInfo* info)
{
if (engine == nullptr || info == nullptr) {
HILOG_ERROR("get syscap failed with engine or callback info is nullptr.");
return nullptr;
}
if (info->argc != 1 || info->argv[0]->TypeOf() != NATIVE_STRING) {
HILOG_ERROR("Get syscap failed with invalid parameter.");
return engine->CreateUndefined();
}
char syscap[SYSCAP_MAX_SIZE] = { 0 };
NativeString* str = ConvertNativeValueTo<NativeString>(info->argv[0]);
if (str == nullptr) {
HILOG_ERROR("Convert to NativeString failed.");
return engine->CreateUndefined();
}
size_t bufferLen = str->GetLength();
size_t strLen = 0;
str->GetCString(syscap, bufferLen + 1, &strLen);
bool ret = HasSystemCapability(syscap);
return engine->CreateBoolean(ret);
}
NativeValue* SetInterval(NativeEngine* engine, NativeCallbackInfo* info)
{
if (engine == nullptr || info == nullptr) {
@@ -191,6 +224,11 @@ void InitTimerModule(NativeEngine& engine, NativeObject& globalObject)
BindNativeFunction(engine, globalObject, "clearInterval", ClearTimeoutOrInterval);
}
void InitSyscapModule(NativeEngine& engine, NativeObject& globalObject)
{
BindNativeFunction(engine, globalObject, "canIUse", CanIUse);
}
bool MakeFilePath(const std::string& codePath, const std::string& modulePath, std::string& fileName)
{
std::string path(codePath);
@@ -263,6 +301,7 @@ bool JsRuntime::Initialize(const Options& options)
InitConsoleLogModule(*nativeEngine_, *globalObj);
InitTimerModule(*nativeEngine_, *globalObj);
InitSyscapModule(*nativeEngine_, *globalObj);
// Simple hook function 'isSystemplugin'
BindNativeFunction(*nativeEngine_, *globalObj, "isSystemplugin",
+1
View File
@@ -57,6 +57,7 @@ ohos_shared_library("runtime") {
deps = [
"//ark/js_runtime:libark_jsruntime",
"//base/startup/init_lite/interfaces/innerkits:libbegetutil",
"//foundation/ace/ace_engine/interfaces/innerkits/ace:ace_uicontent",
"//foundation/ace/napi:ace_napi",
"//foundation/ace/napi:ace_napi_ark",