Android跨程式通訊之非AIDL(二)

weixin_34292287發表於2017-03-08

目錄

Android跨程式通訊之小例子(一)
Android跨程式通訊之非AIDL(二)
Android跨程式通訊之Proxy與Stub(三)
Android跨程式通訊之AIDL(四)

從最常用的例子談起

這篇文章圍繞的核心主題就是IBinder,或許你早就在ServiceonBind方法中見過。該方法就是返回一個IBinder物件。一般我們的做法是這樣的:

service程式碼

public class MusicService extends Service{

    public IBinder onBind(Intent intent) {
        return new MyBinder();
    }
    
        public class MyBinder extends Binder {
        public MyService getMyService() {
            return MusicService.this;
        }
    }
    
        public void play(){
            Log.i("TAG", "play");
        }
        public void pause(){
            Log.i("TAG", "pause");
        }
}

獲取service控制權程式碼

public class MainActivity extends Activity {
    Intent              service;
    ServiceConnection   conn;
    MyService           myService;
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        service = new Intent(MainActivity.this, MusicService.class);
        conn = new ServiceConnection() {
            
            @Override
            public void onServiceDisconnected(ComponentName name) {
            }
            
            @Override
            public void onServiceConnected(ComponentName name, IBinder binder) {
                myService = ((MyBinder) binder).getMyService();
            }
        };
        bindService(service, conn, BIND_AUTO_CREATE);
    }
}

我們通過ServiceConnection去繫結一個Service然後繫結成功後返回一個IBinder物件,其中IBinder就充當與一個中介。是的,中介這個詞沒有用錯。再通過MyBinder提供的getMyService來獲取服務進而控制Service

一個真相引發的血案

其實上面的例子跟文章要說的內容沒什麼卵關係,只是讓你更好的回憶一下IBinder介面。這篇文章主要講一下onTransact方法。

IBinder跨程式通訊圖

994350-5d2a25210d1028f2.png
ibinder

下面就大概簡單說明一下。

  • 首先myActivity通過呼叫bindService去繫結一個遠端的服務(myService),繫結成功後返回一個IBinder物件。這時候雙方就算是建立了連線了。
  • 建立連線之後,雙方就可以通過持有的IBinder進行通訊。myActivity使用IBindertransact方法去給底層的Binder Driver(Linux層)傳送訊息間接呼叫底層的IBinderexecTransact方法。
  • execTransact導致的結果就是呼叫onTransact方法。那麼這時候事件的處理就可以在該環節進行了。

其實就是一個transact->onTransact的一個過程

事實上我們看到transactonTransact的引數是一模一樣的。

protected boolean onTransact(int code, Parcel data, Parcel reply,int flags);
public final boolean transact(int code, Parcel data, Parcel reply,int flags);

transact的引數

  • code : 這是一個識別碼,類似於Handler體系裡面的Message的what屬性。根據不同的code產生不同的響應。
  • data : 呼叫transact的物件傳送過去的引數。
  • reply : 呼叫onTransact的物件返回的引數。
  • flags : Java裡面預設的native方法都是阻塞的,當不需要阻塞的時候設定為IBinder.FLAG_ONEWAY,否則設定為0

一個小例子

環境:

  • 一個叫做RemoteService的APP
  • 一個叫做RemoteServiceDemo的APP
  • RemoteServiceDemo中的Activity去控制RemoteService中的Service。

RemoteService

Service宣告

<service android:name="com.example.remoteservice.MusicService" >
            <intent-filter>
                <action android:name="top.august1996.musicservice" />
            </intent-filter>
        </service>

別忘了加入<action android:name="top.august1996.musicservice" />,否則會丟擲安全異常。

Service程式碼

public class MusicService extends Service {
    
    private SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    
    @Override
    public IBinder onBind(Intent intent) {
        return new MyBinder();
    }
    
    public class MyBinder extends Binder {
        @Override
        protected boolean onTransact(int code, Parcel data, Parcel reply, int flags) throws RemoteException {
            switch (code) {
                case 0:
                    Log.i("TAG", data.readString());
                    play();
                    reply.writeString("Service play Music at " + sdf.format(new Date()));
                    break;
                case 1:
                    Log.i("TAG", data.readString());
                    pause();
                    reply.writeString("Service pause Music at " + sdf.format(new Date()));
                    
                    break;
                default:
                    break;
            }
            
            return true;
        }
    }
    
    public void play() {
        Log.d("TAG", "play");
    }
    
    public void pause() {
        Log.d("TAG", "pause");
    }
}

服務的程式碼很簡單,也沒什麼需要說的。

RemoteServiceDemo

佈局

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="bind"
        android:text="bind service" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="unbind"
        android:text="unbind service" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="play"
        android:text="play" />

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:onClick="pause"
        android:text="pause" />

</LinearLayout>

程式碼

public class MainActivity extends Activity {
    
    private ServiceConnection   mServiceConnection  = new ServiceConnection() {
                                                        @Override
                                                        public void onServiceDisconnected(ComponentName name) {
                                                            
                                                        }
                                                        @Override
                                                        public void onServiceConnected(ComponentName name,
                                                                IBinder service) {
                                                            mBinder = service;
                                                        }
                                                    };
    
    private IBinder             mBinder             = null;
    private Parcel              data                = Parcel.obtain();
    private Parcel              reply               = Parcel.obtain();
    private SimpleDateFormat    sdf                 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    
    public void bind(View v) {
        if (isBinded()) {
            return;
        }
        /**
         * 通過ComponentName去定位意圖
         * 第一個引數是應用包名
         * 第二個引數是Service或者Activity所在的包名+類名
         */
        bindService(
                new Intent().setComponent(
                        new ComponentName("com.example.remoteservice", "com.example.remoteservice.MusicService")),
                mServiceConnection, Context.BIND_AUTO_CREATE);
    }
    
    public void unbind(View v) {
        if (!isBinded()) {
            return;
        }
        unbindService(mServiceConnection);
        mBinder = null;
    }
    
    public void play(View v) {
        if (!isBinded()) {
            return;
        }
        try {
            data.writeString("Activity request to play music at " + sdf.format(new Date()));
            mBinder.transact(0, data, reply, 0);
            Log.i("TAG", reply.readString());
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }
    
    public void pause(View v) {
        try {
            data.writeString("Activity request to pause music at " + sdf.format(new Date()));
            mBinder.transact(1, data, reply, 0);
            Log.i("TAG", reply.readString());
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }
    
    private boolean isBinded() {
        return mBinder != null;
    }
    
}

因為我們需要使用reply,所以我們使用阻塞的transact,否則我們呼叫了transact,但是那邊還未給reply寫入字串,最終導致NullPointException。

專案地址

Github地址

相關文章