Android跨进程通信之AIDL

一般情况下,一个应用程序就是一个进程,这个进程名称就是应用程序包名。我们知道进程是系统分配资源和调度的基本单位,所以每个进程都有自己独立的资源和内存空间,别的进程是不能任意访问其他进程的内存和资源的。
有不少人疑惑,Android为什么要用多进程?用多进程的优点?缺点?

好处:

(1)分担主进程的内存压力。
当应用越做越大,内存越来越多,将一些独立的组件放到不同的进程,它就不占用主进程的内存空间了。当然还有其他好处,有心人会发现

(2)使应用常驻后台,防止主进程被杀守护进程,守护进程和主进程之间相互监视,有一方被杀就重新启动它。
Android后台进程里有很多应用是多个进程的,因为它们要常驻后台,特别是即时通讯或者社交应用,不过现在多进程已经被用烂了。
典型用法是在启动一个不可见的轻量级私有进程,在后台收发消息,或者做一些耗时的事情,或者开机启动这个进程,然后做监听等。

坏处:

消耗用户的电量。 多占用了系统的空间,若所有应用都这样占用,系统内存很容易占满而导致卡顿。应用程序架构会变得复杂,因为要处理多进程之间的通信。这里又是另外一个问题了。

多进程的缺陷

进程间的内存空间是不可见的。开启多进程后,会引发以下问题:
1)Application的多次重建。
2)静态成员的失效。
3)文件共享问题。
4)断点调试问题。

在了解了多进程的优缺点之后,接下来介绍使用的方法。
四大组件在AndroidManifest文件中注册的时候,有个属性android:process这里可以指定组件的所处的进程。

默认就是应用的主进程。指定为别的进程之后,系统在启动这个组件的时候,就先创建(如果还没创建的话)这个进程,然后再创建该组件。打印出它的进程名称:重
载Application类的onCreate方法即可。
设置android:process属性,要注意:如果是android:process=”:comm”,以:开头的名字,表示这是一个应用程序的私有进程,否则它是一个全局进程。私有进程的进程名称是
会在冒号前自动加上包名,而全局进程则不会。一般我们都是有私有进程,很少使用全局进程。

首先创建一个WheatherService:

public class WheatherService extends Service {

private RemoteCallbackList<IMyAidlCallBack> mRemoteCallbackList = new RemoteCallbackList<>();

@Nullable
@Override
public IBinder onBind(Intent intent) {
    return new WheatherBinder();
}

private void getWheather() {
    OkHttpUtils.get()
            .url("http://www.apiopen.top:88/weatherApi?city=%E5%8E%A6%E9%97%A8")
            .build()
            .execute(new StringCallback() {
                @Override
                public void onError(Call call, Exception e, int id) {
                    log(e.toString());
                    final int count = mRemoteCallbackList.beginBroadcast();
                    if (count == 0) {
                        return;
                    }
                    try {
                        for (int i = 0; i < count; i++)
                            mRemoteCallbackList.getBroadcastItem(i).onError(e.toString());
                    } catch (RemoteException e1) {
                        log(e1.toString());
                    }
                    mRemoteCallbackList.finishBroadcast();
                }

                @Override
                public void onResponse(String response, int id) {
                    log(response);
                    final int count = mRemoteCallbackList.beginBroadcast();
                    if (count == 0) {
                        return;
                    }
                    try {
                        for (int i = 0; i < count; i++)
                            mRemoteCallbackList.getBroadcastItem(i).onSuccess(JSON.parseObject(response, Wheather.class));
                    } catch (RemoteException e) {
                        e.printStackTrace();
                    }
                    mRemoteCallbackList.finishBroadcast();
                }
            });
}

private void log(String value) {
    Log.e("TAG", value);
}


class WheatherBinder extends IRemoteService.Stub {
    private IMyAidlCallBack iMyAidlCallBack;

    @Override
    public void getWheather() throws RemoteException {
        log("getWheather-----------------");
        WheatherService.this.getWheather();
    }

    @Override
    public void registerListener(IMyAidlCallBack callBack) throws RemoteException {
        this.iMyAidlCallBack = callBack;
        log("registerListener");
        if (mRemoteCallbackList == null) {
            log("mRemoteCallbackList==null");
            return;
        }
        mRemoteCallbackList.register(callBack);
    }

    @Override
    public void unRegisterListener(IMyAidlCallBack callBack) throws RemoteException {
        mRemoteCallbackList.unregister(callBack);
    }
}
}

在AndroidManifest问见中注册这个service:

<service
        android:name=".WheatherService"
        android:process=":comm">
        <intent-filter>
            <action android:name="com.zlx.crossprocommut.IRemoteService" />
        </intent-filter>
    </service>

在我们的MainActivity中进行服务的绑定:

public class MainActivity extends AppCompatActivity {

private TextView tv;
private IRemoteService iRemoteService;
private IMyAidlCallBack mCallBack = new IMyAidlCallBack.Stub() {
    @Override
    public void onSuccess(final Wheather wheather) throws RemoteException {
        log("value: " + wheather.toString());
        tv.post(new Runnable() {
            @Override
            public void run() {
                Wheather.DataBean data = wheather.getData();
                tv.setText("City:"+data.getCity() + "\n" + "Cityid: "+data.get+"温度:"+data.getWendu()+".....................");
            }
        });
    }

    @Override
    public void onError(String error) throws RemoteException {
        log("value: " + error);

    }
};

private ServiceConnection connection = new ServiceConnection() {
    @Override
    public void onServiceConnected(ComponentName componentName, final IBinder iBinder) {

        iRemoteService = WheatherService.WheatherBinder.asInterface(iBinder);
        show("Service Connected!");
        log("Service Connected!");
        try {
            iRemoteService.registerListener(mCallBack);
        } catch (RemoteException e) {
            e.printStackTrace();
        }
    }

    @Override
    public void onServiceDisconnected(ComponentName componentName) {
        show("Service Disconnected!");
        log("Service Disconnected!");
        iRemoteService = null;
    }
};

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    tv = findViewById(R.id.id_tv);
}

@Override
protected void onStart() {
    super.onStart();
    Intent intent = new Intent(this, WheatherService.class);
    intent.setAction("com.zlx.crossprocommut.IRemoteService");
    intent.setPackage("com.zlx.crossprocommut");
    bindService(intent, connection, Context.BIND_AUTO_CREATE);
}

@Override
protected void onDestroy() {
    super.onDestroy();
    unbindService(connection);
}

public void getWheather(View view) {
    try {
        if (iRemoteService != null) {
            iRemoteService.getWheather();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }
}

private void log(String value) {
    Log.e("TAG", value);
}

private void show(String value) {
    Toast.makeText(MainActivity.this, value, Toast.LENGTH_SHORT).show();

}
}

有的人会问,这里为什么要用bindService,不用startService?其实这里是看具体情况的哈,如果用bindService:activity销毁,服务也就没了,而用startService:activity销毁,服务仍然还在!

最关键的要创建aidl文件:
IMyAidlCallBack.aidl:

import com.zlx.crossprocommut.Wheather;
interface IMyAidlCallBack {
void onSuccess(in Wheather wheather);

   void onError(String error);
}

IRemoteService.aidl:

import com.zlx.crossprocommut.IMyAidlCallBack;
interface IRemoteService {
   void getWheather();
   void registerListener(IMyAidlCallBack callBack);
   void unRegisterListener(IMyAidlCallBack callBack);
}

Wheather.aidl:

parcelable Wheather;

注意:Wheather是一个parcelable 序列化的数据对象

b.png
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容