1 Star 0 Fork 13

胖子的梦/ani_cookbook

forked from Xingwa/ani_cookbook 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
ani_bigint.cpp 1.89 KB
一键复制 编辑 原始数据 按行查看 历史
Xingwa 提交于 2025-02-24 17:44 +08:00 . Add bigint demo
#include <ani.h>
#include <array>
#include <iostream>
static void testBigInt([[maybe_unused]] ani_env *env, [[maybe_unused]] ani_object object, ani_object num)
{
ani_class bigIntCls;
const char * className = "Lescompat/BigInt;";
if (ANI_OK != env->FindClass(className, &bigIntCls)) {
std::cerr << "Not found '" << className << "'" << std::endl;
return ;
}
ani_method getLongMethod;
if (ANI_OK != env->Class_GetMethod(bigIntCls, "getLong", ":J", &getLongMethod)){
std::cerr << "Class_GetMethod Failed '" << className << "'" << std::endl;
return ;
}
ani_long longnum;
if (ANI_OK != env->Object_CallMethod_Long(num, getLongMethod, &longnum)){
std::cerr << "Object_CallMethod_Long '" << "getLongMethod" << "'" << std::endl;
return ;
}
std::cout << "num value is : '" << longnum << "'" << std::endl;
return;
}
ANI_EXPORT ani_status ANI_Constructor(ani_vm *vm, uint32_t *result)
{
ani_env *env;
if (ANI_OK != vm->GetEnv(ANI_VERSION_1, &env)) {
std::cerr << "Unsupported ANI_VERSION_1" << std::endl;
return ANI_ERROR;
}
static const char *className = "Lani_bigint/Foo;";
ani_class cls;
if (ANI_OK != env->FindClass(className, &cls)) {
std::cerr << "Not found '" << className << "'" << std::endl;
return ANI_ERROR;
}
std::array methods = {
ani_native_function {"testBigInt", "Lescompat/BigInt;:V", reinterpret_cast<void *>(testBigInt)},
};
std::cout << "Start bind native methods to '" << className << "'" << std::endl;
if (ANI_OK != env->Class_BindNativeMethods(cls, methods.data(), methods.size())) {
std::cerr << "Cannot bind native methods to '" << className << "'" << std::endl;
return ANI_ERROR;
};
std::cout << "Finish bind native methods to '" << className << "'" << std::endl;
*result = ANI_VERSION_1;
return ANI_OK;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pangzidemeng/ani_cookbook.git
git@gitee.com:pangzidemeng/ani_cookbook.git
pangzidemeng
ani_cookbook
ani_cookbook
master

搜索帮助