我有Android Java服务,它将通过HAL
调用与HIDL
服务进行交互。
我有下面的情况,我不确定将其视为严重问题。
+----------+ (AIDL) +--------------+
|App thread|-------->|Java Service | (HIDL) +-----------+
+----------+ |(SendFunction)|------->|CPP service|
+--------------+ +-----------+
^
+--------------+ |
|AnotherThread |-----|
+--------------+
SendFunction
的定义如下。
private void SendFunction(int status, DiagCommandDesc response) {
try {
server.executeCommandResponse(status, response);
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "Response sent to HAL.");
}
} catch (Exception e) {
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "HAL Server error.");
}
}
}
从两个不同的线程中调用SendFunction
。server
是使用CPP Server
的HIDL
的实例。
我的问题。
server.executeCommandResponse(status, response);
我是否需要将call
以上视为关键并进行同步?因为server
对象将从两个不同的线程访问。
server.executeCommandResponse(status, response)
的呼叫。Binder通信已经是线程安全的。 HAL服务内部必须确保并发对executeCommandResponse
的调用是安全的。有一种简单的方法可以使其在HAL端具有线程安全性:使用仅具有一个线程的线程池。但是,这将使所有其他线程等待第一个线程完成。
int main()
{
::android::hardware::configureRpcThreadpool(1, true);
::android::sp<MyHal> service = new MyHal;
if (::android::OK != service->registerAsService())
return EXIT_FAILURE;
::android::hardware::joinRpcThreadpool();
return EXIT_SUCCESS;
}
您可以在这里找到更多信息:https://source.android.com/devices/architecture/hidl/threading