android IPC通信机制中BBinder与BpBinder的区别

刚开始看android的IPC通信机制,BBinder与BpBinder这两者容易混淆。其实这两者是很好区分,对于service来说继承了BBinder(BnInterface)因为BBinder有onTransact消息处理函数,而对于与service通信的client来说需要继承BpBinder(BpInterface),因为BpBinder有消息传递函数transcat。

以cameraService的client为例
Camera.cpp中getCameraService函数取得远程CameraService的IBinder对象,然后通过 mCameraService = interface_cast<ICameraService>(binder);
进行重构得到了BpCameraService对象。而BpCameraService继承了BpInterface。
cameraService:
    defaultServiceManager()->addService(
            String16("media.camera"), new CameraService()); 传入了BBinder。

   IPC传递的过程中IBinder指针不可缺少,这个指针对一个进程来说就像是socket的ID一样,唯一的。所以不管这个IBinder是BBinder还是BpBinder, 他们的都是在重构BpBinder或者BBinder的时候把IBinder作为参数传入。


你可能感兴趣的:(android IPC通信机制中BBinder与BpBinder的区别)