1
完善资料让更多小伙伴认识你,还能领取20积分哦, 立即完善>
一,驱动Android.mk LOCAL_PATH := $(call my-dir) include $(CLEAR_VARS) LOCAL_MODULE_TAGS
: = optional LOCAL_MODULE := hello LOCAL_SRC_FILES := $(调用 all-subdir-c-files) include $(BUILD_EXECUTABLE) hello.c #include 《stdio.h》 #include 《stdlib.h》 #include 《fcntl.h》 #define DEVICE_NAME “/dev/hello” int main( int argc, char** argv) { int fd = -1; 整数值 = 0; fd = 打开(设备名称,O_RDWR); if(fd == -1) { printf(“打开设备 %s 失败。n”, DEVICE_NAME); 返回-1; } printf(“读取原始值:n”); 读取(fd, &val, sizeof(val)); printf(“%d.nn”, val); 值 = 5; printf(“将值 %d 写入 %s。nn”, val, DEVICE_NAME); 写(fd,&val,sizeof(val)); printf(“再次读取值:n”); 读取(fd, &val, sizeof(val)); printf(“%d.nn”, val); 关闭(fd); 返回0; IHelloService.aidl 包android.os; /** * @hide */ interface IHelloService { void setVal(int val); 诠释 getVal(); } 在frameworks/base/core/java/android/app 下面创建HelloManager.java /* * Copyright (C) 2007 The Android Open Source Project * * 获得Apache License, Version 2.0 (“License”); * 除非遵守许可,否则您不得使用此文件。 * 您可以在 * * * * 除非适用法律要求或书面同意,软件 * 根据许可分发是在“原样”基础上分发的, * 没有任何形式的明示或暗示的保证或条件。 * 请参阅许可证以了解许可证下的特定语言管理权限和 * 限制。 */ 包 android.app; 导入android.annotation.SdkConstant; 导入android.annotation.SystemApi; 导入android.content.Context; 导入android.content.Intent; 导入android.os.Build; 导入android.os.Parcel; 导入android.os.Parcelable; 导入android.os.RemoteException; 导入android.os.IHelloService; 导入android.util.Log; 公共类 HelloManager { IHelloService mService; 公共 HelloManager(Context ctx,IHelloService 服务){ mService=service; } public void setVal(int value){ try{ mService.setVal(value); }catch(Exception e){ Log.e(“HelloManager”,e.toString()); e.printStackTrace(); } } public int getVal(){ try{ return mService.getVal(); }catch(Exception e){ Log.e(“HelloManager”,e.toString()); e.printStackTrace(); } 返回 0; } } 并在frameworks/base/core/java/android/app下面的SystemServiceRegistry.java中添加以下代码: /*sommer.jiang 20211115,registerservice helloservice*/ registerService(Context.HELLO_SERVICE, HelloManager.class, new CachedServiceFetcher《HelloManager》( ){ @Override public HelloManager createService(ContextImpl ctx) throws ServiceNotFoundException { IBinder b = ServiceManager.getService(Context.HELLO_SERVICE); IHelloService service = IHelloService.Stub.asInterface(b); return new HelloManager(ctx, service); }}) ; 添加完注册后请在frameworks/base/core/java/android/content/Context.java添加以下代码: /*sommer.jiang 20140315 add for service hello*/ public static final String HELLO_SERVICE = “hello”; HELLO_SERVICE, 这些接口做完后,下一个接口必须在frameworks/base/Android.mk中添加以下内容: core/java/android/os/IHelloService.aidl 这样就完成了接口的定义,如果以后需要新的定义 三、Service层调用 接口添加完成后,就可以正式添加service了。 在frameworks/base/service/core/java/com/android/server/下添加内容:HelloService 。 java 包com.android.server; 导入android.content.Context; 导入android.os.IHelloService; 导入android.util.Slog; 公共类 HelloService 扩展 IHelloService.Stub { 私有静态最终字符串 TAG = “HelloService”; HelloService() { init_native(); } 公共无效 setVal(int val) { setVal_native(val); } public int getVal() { return getVal_native(); } 私有静态本机布尔 init_native(); 私有静态本机无效 setVal_native(int val); 私有静态原生 int getVal_native(); }; 在frameworks/base/service/core/jni/下添加以下内容: 新建com_android_server_HelloService.cpp文件,并在其中内容: #define LOG_TAG “HelloService” #include “jni.h” #include “JNIHelp.h” #include “android_runtime/AndroidRuntime.h” #include 《utils/misc.h》 #include 《utils/Log.h》 #include 《hardware/hardware.h》 #include 《hardware/hello。 h》 #includestdio.h》 android { /*在硬件抽象层中定义的硬件访问结构体,《hardware/hello.h》*/ struct hello_device_t* hello_device = NULL; /*通过硬件设置层定义的硬件访问接口硬件验证值*/ static void hello_setVal(JNIEnv* env, jobject clazz, jint value) { int val = value; ALOGI(“Hello JNI: 将值 %d 设置为设备。”, val); if(!hello_device) { ALOGI(“Hello JNI: 设备未打开。 } hello_device-》set_val(hello_device, val); } /*通过抽象层定义的硬件访问接口查看硬件分析结果val的值/ static jint hello_getVal(JNIEnv* env, jobject clazz) { int val = 0; if(!hello_device) { ALOGI(”Hello JNI: 设备未打开。“); 返回值; } hello_device-》get_val(hello_device, &val); ALOGI(”Hello JNI: 从设备获取值 %d。“, val); 返回值; } /*通过抽象层定义的硬件模块打开接口打开硬件设备*/ static inline int hello_device_open(const hw_module_t* module, struct hello_device_t** device) { return module-》methods-》open(module, HELLO_HARDWARE_MODULE_ID, (struct hw_device_t**)device); / * 硬件模块ID来加载指定的通过抽象层模块并打开硬件/ static ***oolean hello_init(JNIEnv* env, jclass clazz) { hello_module_t* module; ALOGI(”Hello JNI: 正在初始化。..。..“); if(hw_get_module(HELLO_HARDWARE_MODULE_ID, (const struct hw_module_t**)&module) == 0) { ALOGI(”Hello JNI: hello Stub found.“); if(hello_device_open(&(module-》common), &hello_device) == 0) { ALOGI(”Hello JNI: hello device is open.“); 返回0; } ALOGE(”你好 JNI: 返回-1; } ALOGE(“Hello JNI: 获取 hello 存根模块失败。”); 返回-1; } /*JNI 方法表*/ static const JNINativeMethod method_table[] = { {“init_native”, “()Z”, (void*)hello_init}, {“setVal_native”, “(I)V”, (void*) hello_setVal}, {“getVal_native”, “()I”, (void*)hello_getVal}, }; /*注册JNI方法*/ int register_android_server_HelloService(JNIEnv *env) { return jniRegisterNativeMethods(env, “com/android/server/HelloService”, method_table, NELEM(method_table)); } }; 在frameworks/base/service/core/jni/Android.mk下添加以下内容: LOCAL_SRC_FILES += $(LOCAL_REL_DIR)/com_android_server_HelloService.cpp $(LOCAL_REL_DIR)/onload.cpp 在frameworks/base/service/core/jni /onload.cpp下添加以下内容: namespace android { //sommer.jiang,20211115,add hello jni int register_android_server_HelloService(JNIEnv *env); }; extern “C” jint JNI_OnLoad(JavaVM* vm, void* /* reserved */) { //sommer.jiang,20211115,add hello jni register_android_server_HelloService(env); 返回 JNI_VERSION_1_4; } 必须最后在frameworks/base/service//java/com/android/server/SystemServer.java中添加如下功能 //sommer.jiang,20211115,add hello service 尝试 { Slog.i(TAG, “Hello Service”); ServiceManager.addService(“hello”, new HelloService()); } catch (Throwable e) { Slog.e(TAG, “启动 Hello 服务失败”, e); } 至此,所有的服务功能都已经添加完毕。 添加完这些之后,make update-api -j16来更新api接口。 |
|
|
|
你正在撰写答案
如果你是对答案或其他答案精选点评或询问,请使用“评论”功能。
基于米尔瑞芯微RK3576核心板/开发板的人脸疲劳检测应用方案
498 浏览 0 评论
768 浏览 1 评论
667 浏览 1 评论
1893 浏览 1 评论
3138 浏览 1 评论
小黑屋| 手机版| Archiver| 德赢Vwin官网 ( 湘ICP备2023018690号 )
GMT+8, 2024-12-21 14:05 , Processed in 0.498380 second(s), Total 70, Slave 54 queries .
Powered by 德赢Vwin官网 网
© 2015 bbs.elecfans.com
关注我们的微信
下载发烧友APP
德赢Vwin官网 观察
版权所有 © 湖南华秋数字科技有限公司
德赢Vwin官网 (电路图) 湘公网安备 43011202000918 号 电信与信息服务业务经营许可证:合字B2-20210191 工商网监 湘ICP备2023018690号