10分钟就能学会的AIDL进程间的小程序

2017-11-23  本文已影响0人  程序猿isMe

背景(摘自维基百科)

进程间通信(IPC,Inter-Process Communication),指至少两个进程或线程间传送数据或信号的一些技术或方法。进程是计算机系统分配资源的最小单位(严格说来是线程)。每个进程都有自己的一部分独立的系统资源,彼此是隔离的。为了能使不同的进程互相访问资源并进行协调工作,才有了进程间通信。举一个典型的例子,使用进程间通信的两个应用可以被分类为客户端和服务器(见主从式架构),客户端进程请求数据,服务端回复客户端的数据请求。有一些应用本身既是服务器又是客户端,这在分布式计算中,时常可以见到。这些进程可以运行在同一计算机上或网络连接的不同计算机上。
进程间通信技术包括消息传递、同步、共享内存和远程过程调用。IPC是一种标准的Unix通信机制。
使用IPC 的理由
1.信息共享:Web服务器,通过网页浏览器使用进程间通信来共享web文件(网页等)和多媒体;
2.加速:维基百科使用通过进程间通信进行交流的多服务器来满足用户的请求;
3.模块化;
4.私有权分离.
与直接共享内存地址空间的多线程编程相比,IPC的缺点:
采用了某种形式的内核开销,降低了性能;
几乎大部分IPC都不是程序设计的自然扩展,往往会大大地增加程序的复杂度。


好了下面就直接进入正题。
既然是进程间的通信那就至少有两个程序,这里我们新建两个工程,一个是 Client,负责发送消息。一个是Server,负责接收消息。

搭建Server项目

1.新建一个AIDL文件

新建AIDL文件.jpg

创建完AIDL文件后,细心的你会发现basicTypes()这么一个方法,这个方法主要是告诉你在AIDL中你可以使用的基本类型(int, long, boolean, float, double, String),可以直接删除,然后写自己的方法,这里我们先写一个简单的例子,就直接返回一个字符串

interface IMyAidlInterface {
    String getResult();
}

2.构建项目

定义好之后,我们重新Make一下项目(Build->Make Project或者Build->Make Module 'app'都可以),这时你就会在build中发现IMyAidlInterface这样一个文件

如下图: aidl构建文件.jpg

这个是我debug版本下的,如果你是release的会在release包下!!

3.建立Service

在Service里面创建一个内部类,继承你刚才创建的AIDL的名称里的Stub类,并实现接口方法,在onBind返回内部类的实例。

package co.lk.android.testserviceaidl.service;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.os.RemoteException;

import co.lk.android.testserviceaidl.IMyAidlInterface;


public class TestAidlService extends Service {
    public TestAidlService() {

    }

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

    private class MyBinder extends IMyAidlInterface.Stub {


        @Override
        public String getResult() throws RemoteException {
            return "testAidl";
        }
    }
}

配置服务

<service
      android:name=".service.TestAidlService"
      android:exported="true">
      <intent-filter>
          <action android:name="co.lk.aidl"/>
          <category android:name="android.intent.category.DEFAULT"/>
      </intent-filter>
 </service>

搭建Client项目

1.将我们的AIDL文件拷贝到第二个项目,然后在重新Make一下项目。拷贝完如下图:

拷贝aidl文件到另一个项目.jpg

2.把客户端程序与服务连接起来

为了建立这样的一个链接,我们需要实现ServiceConnection类。
我们在MainActivity.java中创建一个内部类 MyServiceConnection,这个类继承ServiceConnection类,并且重写了它的两个方法:onServiceConnected和onServiceDisconnected。

private class MyServiceConnection implements ServiceConnection {

        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            mIMyAidlInterface = IMyAidlInterface.Stub.asInterface(service);
            Toast.makeText(MainActivity.this, "Service connected", Toast.LENGTH_LONG).show();
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            mIMyAidlInterface = null;
            Toast.makeText(MainActivity.this, "Service disconnected", Toast.LENGTH_LONG).show();
        }
    }

3.完整的MainActivity代码

package co.lk.android.testclientaidl;

import android.content.ComponentName;
import android.content.Intent;
import android.content.ServiceConnection;
import android.os.IBinder;
import android.os.RemoteException;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;

import co.lk.android.testserviceaidl.IMyAidlInterface;

public class MainActivity extends AppCompatActivity {

    private IMyAidlInterface mIMyAidlInterface;
    private MyServiceConnection mConnection;
    private TextView mResult;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        initService();
        initView();
    }
    

    private void initView() {
        Button buttonCalc = (Button) findViewById(R.id.bt_get);
        mResult = (TextView) findViewById(R.id.tv_result);
        buttonCalc.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                String res = "";
                try {
                    res = mIMyAidlInterface.getResult();
                } catch (RemoteException e) {
                    e.printStackTrace();
                }

                mResult.setText(res);
            }
        });
    }

    /*
     这个方法使Activity(客户端)连接到服务(service)
    */
    private void initService() {
        mConnection = new MyServiceConnection();
        Intent intent = new Intent();
        intent.setAction("co.lk.aidl");
        intent.setPackage("co.lk.android.testserviceaidl");
        bindService(intent, mConnection, BIND_AUTO_CREATE);
    }

    private void releaseService() {
        unbindService(mConnection);
        mConnection = null;
    }

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

    private class MyServiceConnection implements ServiceConnection {

        @Override
        public void onServiceConnected(ComponentName name, IBinder service) {
            mIMyAidlInterface = IMyAidlInterface.Stub.asInterface(service);
            Toast.makeText(MainActivity.this, "Service connected", Toast.LENGTH_LONG).show();
        }

        @Override
        public void onServiceDisconnected(ComponentName name) {
            mIMyAidlInterface = null;
            Toast.makeText(MainActivity.this, "Service disconnected", Toast.LENGTH_LONG).show();
        }
    }
}

就这样一个简单的AIDL小程序就这样完成啦!!!👏是不是迫不及待想试一下了呢,快快动起手去完成吧:)

总结

经过一上午的努力终于把小例子和这篇算是记录的文章弄完了,算是自己的知识巩固吧。
“学习如逆水行舟,不进则退”,进入这行就要不断的学习,不断的吸收新的东西,真正的是活到老学到老啊,和各位共勉之!!!

上一篇下一篇

猜你喜欢

热点阅读