AIDLサービス、プロセス間でサービスを呼び出す

9426 ワード

一、AIDL Service概要Androidシステムでは、各アプリケーションが自分のプロセスで実行され、プロセス間では直接通信ができないのが一般的である.プロセス通信を実現するために、AndroidはAIDL Serviceを提供している.
二、ローカルサービスと異なる
ローカルService:IBinderオブジェクト自体をクライアントのServiceConnectionのonServiceConnectedメソッドに直接渡す2番目のパラメータ. 
リモートService:IBinderオブジェクトのエージェントのみをクライアントのServiceConnectionのonServiceConnectedメソッドの2番目のパラメータに渡します. 
三、AIDLファイル
AndroidはAIDL(Android Interface Definition Language)を必要とし、リモートインタフェースを定義します.このインタフェース定義言語は本当に言語になるのではなく、2つのプロセス間の通信インタフェースを定義します.
Javaインタフェースと似ていますが、次のような違いがあります.
AIDL定義インタフェースのソースコードは.aidlの末尾; 
AIDLで使用されるデータ型は、基本型、String、List、Map、CharSequenceを除いて、他のタイプはすべてガイドパッケージが必要であり、同じパッケージでもガイドパッケージが必要である.
四、例:
1.AIDLファイルを作成し、定義したAIDLファイルを作成すると、ADTツールはgenディレクトリの下で自動的にAIDLを生成する.JAvaインタフェース、このクラスの内部にはStub内部クラスが含まれており、IBinder、AIDLの中のインタフェースを実現しています.このStubクラスはリモートサービスコールバッククラスとして使用されます.
IMyService.aidl
package com.juno.serviceaidltest;  
  
import com.juno.serviceaidltest.Product;  
interface IMyService    
{    
    String getValue();  
    Map getMap(in String country, in Product product);    
    Product getProduct();  
}  
Product.aidl
parcelable Product; 
Product.java
package com.juno.serviceaidltest;  
  
import android.os.Parcel;  
import android.os.Parcelable;  
  
public class Product implements Parcelable {  
    private int id;  
    private String name;  
    private float price;  
    public static final Parcelable.Creator CREATOR = new Parcelable.Creator() {  
        public Product createFromParcel(Parcel in) {  
            return new Product(in);  
        }  
  
        public Product[] newArray(int size) {  
            return new Product[size];  
        }  
    };  
  
    public Product() {  
  
    }  
  
    private Product(Parcel in) {  
        readFromParcel(in);  
    }  
  
    @Override  
    public int describeContents() {  
        return 0;  
    }  
  
    public void readFromParcel(Parcel in) {  
        id = in.readInt();  
        name = in.readString();  
        price = in.readFloat();  
  
    }  
  
    @Override  
    public void writeToParcel(Parcel dest, int flags) {  
        dest.writeInt(id);  
        dest.writeString(name);  
        dest.writeFloat(price);  
  
    }  
  
    public int getId() {  
        return id;  
    }  
  
    public void setId(int id) {  
        this.id = id;  
    }  
  
    public String getName() {  
        return name;  
    }  
  
    public void setName(String name) {  
        this.name = name;  
    }  
  
    public float getPrice() {  
        return price;  
    }  
  
    public void setPrice(float price) {  
        this.price = price;  
    }  
  
}  

2.インタフェースをクライアントに露出する
MyService.java
package com.juno.serviceaidltest;  
  
import java.util.HashMap;  
import java.util.Map;  
  
import android.app.Service;  
import android.content.Intent;  
import android.os.IBinder;  
import android.os.RemoteException;  
  
public class MyService extends Service {  
    /** 
     *   Stub,      IMyService  ,    IBinder   
     */  
    public class MyServiceImpl extends IMyService.Stub {  
  
        @Override  
        public String getValue() throws RemoteException {  
            return "Test Value";  
        }  
  
        @Override  
        public Map getMap(String country, Product product)  
                throws RemoteException {  
            Map map = new HashMap();  
            map.put("country", country);  
            map.put("id", product.getId());  
            map.put("name", product.getName());  
            map.put("price", product.getPrice());  
            map.put("product", product);  
            return map;  
        }  
  
        @Override  
        public Product getProduct() throws RemoteException {  
            Product product = new Product();  
            product.setId(1234);  
            product.setName("  ");  
            product.setPrice(31000);  
            return product;  
        }  
  
    }  
  
    @Override  
    public IBinder onBind(Intent intent) {  
        /** 
         *   MyServiceImpl  ,     Service   , MyServiceImpl         ServiceConnected   ServiceConnected()        ;     Service    ,  MyServiceImpl           ServiceConnected   ServiceConnected()         
         */  
        return new MyServiceImpl();  
    }  
  
}  

3. 
AndroidManifext.でxmlファイルでサービスを構成するには、次の手順に従います.
  
              
                  
              
        

4.Activityでアクセス
AIDLServiceは、同じAppの下にアクセスしない場合は、サービス側のAIDLファイルをクライアントにコピーし、同じパッケージ名の下にある必要があります.
MainActivity.java
package com.juno.serviceanotheraidltest;  
  
import android.app.Activity;  
import android.content.ComponentName;  
import android.content.Context;  
import android.content.Intent;  
import android.content.ServiceConnection;  
import android.os.Bundle;  
import android.os.IBinder;  
import android.os.RemoteException;  
import android.util.Log;  
import android.view.View;  
import android.widget.Button;  
import android.widget.TextView;  
  
import com.juno.serviceaidltest.IMyService;  
  
public class MainActivity extends Activity implements View.OnClickListener {  
  
    private final static String ACTION = "com.juno.serviceaidltest.IService";  
    private IMyService myService = null;  
    private Button mBtnInvokeAIDLService;  
    private Button mBtnBindAIDLService;  
    private TextView mTextView;  
    private ServiceConnection mServiceConnection = new ServiceConnection() {  
  
        @Override  
        public void onServiceConnected(ComponentName name, IBinder service) {  
            //    Service onBinder           
            myService = IMyService.Stub.asInterface(service);  
            mBtnInvokeAIDLService.setEnabled(true);  
              
            try {  
                Log.v("juno", myService.getValue());  
            } catch (RemoteException e) {  
                e.printStackTrace();  
            }  
        }  
  
        @Override  
        public void onServiceDisconnected(ComponentName name) {  
            myService = null;  
        }  
    };  
      
    @Override  
    protected void onCreate(Bundle savedInstanceState) {  
        super.onCreate(savedInstanceState);  
        setContentView(R.layout.activity_main);  
        initView();  
    }  
  
    private void initView() {  
        mBtnInvokeAIDLService = (Button) findViewById(R.id.btnInvokeAIDLService);    
        mBtnBindAIDLService = (Button) findViewById(R.id.btnBindAIDLService);    
        mBtnInvokeAIDLService.setEnabled(false);    
        mTextView = (TextView) findViewById(R.id.textView1);    
        mBtnInvokeAIDLService.setOnClickListener(this);    
        mBtnBindAIDLService.setOnClickListener(this);         
    }  
  
    @Override  
    public void onClick(View view) {  
        switch (view.getId()) {  
        case R.id.btnBindAIDLService:  
            //        Service Intent,         
            bindService(new Intent(ACTION), mServiceConnection, Context.BIND_AUTO_CREATE);  
            break;  
  
        case R.id.btnInvokeAIDLService:  
            try {  
                String s = myService.getValue();    
                s = "Product.id = " + myService.getProduct().getId() + "
"; s += "Product.name = " + myService.getProduct().getName() + "
"; s += "Product.price = " + myService.getProduct().getPrice() + "
"; s += myService.getMap("China", myService.getProduct()).toString(); mTextView.setText(myService.asBinder().isBinderAlive() + " " + s); } catch (Exception e) { } break; } } @Override protected void onDestroy() { super.onDestroy(); if (myService != null) { // unbindService(mServiceConnection); } } }

レイアウトファイルactivity_main.xml