HAL开发全流程(三)

本文的源代码地址是:http://download.csdn.net/detail/yongyu_it/9544336


4、实现第3步(即《HAL开发全流程(二)》)中的本地方法——本地访问模块开发

4.1 编写Jni文件

com_android_server_joffeeService.cpp文件

/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#define LOG_TAG "JoffeeJNI"

#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/joffee.h>

#include <stdio.h>

namespace android
{

struct joffee_device_t *joffee_HAL;

/**
 * JNI Layer init function;
 * Load HAL and its method table for later use;
 * return a pointer to the same structure
 * (not mandatory btw, we can use a global variable)
 */
static jlong init_native(JNIEnv *env, jobject clazz) {
  int err;
  struct hw_module_t *module;
  struct hw_device_t *device;
  ALOGE("Entering %s\n", __func__);

  ALOGE("%d\n", __LINE__);
  /* Load the HAL module using libhardware hw_get_module */
  err = hw_get_module(JOFFEE_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
  ALOGE("%d\n", __LINE__);
  if (err) {
  ALOGE("%d\n", __LINE__);
    //TODO
  }
  ALOGE("%d\n", __LINE__);

  /* Open the HAL object and get the joffee_device_t structure
   * filled with methods pointers
   */
  err = module->methods->open(module, "joffeeJNI", &device);
  if (err) {
  ALOGE("%d\n", __LINE__);
    //TODO
  }
  ALOGE("%d\n", __LINE__);

  joffee_HAL =  (struct joffee_device_t *)device;
  ALOGE("%d\n", __LINE__);
  return (jlong)joffee_HAL;
}

/**
 * Joffee wrapper function;
 * Call the native joffee function from Framework layer
 */
static void joffeeFunction_native(jlong nativePointer) {
  int err;

  ALOGE("Entering %s\n", __func__);
  ALOGE("%d\n", __LINE__);
  err = joffee_HAL->joffee_function();
  if (err) {
    ALOGE("%d\n", __LINE__);
    //TODO
  }

}

static JNINativeMethod method_table[] = {
    { "init_native", "()J", (void*)init_native },
    { "joffeeFunction_native", "(J)V", (void*)joffeeFunction_native },
};
int register_android_server_joffeeService(JNIEnv *env)
{
    return jniRegisterNativeMethods(env, "com/android/server/JoffeeService",
            method_table, NELEM(method_table));
}
};

4.2  将这个文件放在 根/frameworks/base/services/core/jni下面

4.3  修改框架源码frameworks/base/services/core/jni/onload.cpp,将我们的方法注册到java虚拟机中

在namespace android语句块里加上 int register_android_server_joffeeService(JNIEnv *env);

在JNI_OnLoad函数里面加上 register_android_server_joffeeService(env);

4.4  编译jni模块

修改 根/frameworks/base/services/core/jni/Android.mk,在LOCAL_SRC_FILES里面添加 $(LOCAL_REL_DIR)/com_android_server_joffeeService.cpp

注意 根/frameworks/base/services/core/jni/Android.mk 是被 根/frameworks/base/services/Android.mk 包含编译的,所以只需执行

mmm ./frameworks/base/services 即可完成so文件的编译

至此,系统定制开发完毕。可以打包ROM了。




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值