public
class
RemoteService
extends
Service {
...
@Override
public
IBinder onBind(Intent intent) {
//
Select the interface to return. If your service only implements
//
a single interface, you can just return it here without checking
//
the Intent.
if
(IRemoteService.
class
.getName().equals(intent.getAction())) {
return
mBinder;
}
if
(ISecondary.
class
.getName().equals(intent.getAction())) {
return
mSecondaryBinder;
}
return
null
;
}
/**
* The IRemoteInterface is defined through IDL
*/
private
final
IRemoteService.Stub mBinder
=
new
IRemoteService.Stub() {
public
void
registerCallback(IRemoteServiceCallback cb) {
if
(cb
!=
null
) mCallbacks.register(cb);
}
public
void
unregisterCallback(IRemoteServiceCallback cb) {
if
(cb
!=
null
) mCallbacks.unregister(cb);
}
};
/**
* A secondary interface to the service.
*/
private
final
ISecondary.Stub mSecondaryBinder
=
new
ISecondary.Stub() {
public
int
getPid() {
return
Process.myPid();
}
public
void
basicTypes(
int
anInt,
long
aLong,
boolean
aBoolean,
float
aFloat,
double
aDouble, String aString) {
}
};
}
使用可打包接口传递参数Pass by value Parameters using Parcelables
若是有类想要能过AIDL在进程之间传递,这一想法是能够实现的,必须确保这个类在IPC的两端的有效性,一般的情形是与一个启动的服务通讯。
这里列出了使类可以支持Parcelable的4个步骤:【译者注:原文为5,但列表为4项,疑为做者笔误】
1. 使该类实现Parcelabel接口。
2. 实现public void writeToParcel(Parcel out) 方法,以即可以将对象的当前状态写入包装对象中。
3. 增长名为CREATOR的构造器到类中,并实现Parcelable.Creator接口。
4. 最后,但一样重要的是,建立AIDL文件声明这个可打包的类(见下文),若是使用的是自定义的编译过程,那么不要编译此AIDL文件,它像C语言的头文件同样不须要编译。
AIDL会使用这些方法的成员序列化和反序列化对象。
这个例子演示了如何让Rect类实现Parcelable接口。
import
android.os.Parcel;
import
android.os.Parcelable;
public
final
class
Rect
implements
Parcelable {
public
int
left;
public
int
top;
public
int
right;
public
int
bottom;
public
static
final
Parcelable.Creator
<
Rect
>
CREATOR
=
new
Parcelable.Creator
<
Rect
>
() {
public
Rect createFromParcel(Parcel in) {
return
new
Rect(in);
}
public
Rect[] newArray(
int
size) {
return
new
Rect[size];
}
};
public
Rect() {
}
private
Rect(Parcel in) {
readFromParcel(in);
}
public
void
writeToParcel(Parcel out) {
out.writeInt(left);
out.writeInt(top);
out.writeInt(right);
out.writeInt(bottom);
}
public
void
readFromParcel(Parcel in) {
left
=
in.readInt();
top
=
in.readInt();
right
=
in.readInt();
bottom
=
in.readInt();
}
}
调用IPC方法(Calling an IPC Method)
这里给出了调用远端接口的步骤:
1. 声明.aidl文件中定义的接口类型的变量。
2. 实现ServiceConnection
3. 调用Context.bindService(),传递ServiceConnection的实现
4. 在ServiceConnection.onServiceConnected()方法中会接收到IBinder对象,调用YourInterfaceName.Stub.asInterface((IBinder)service)将返回值转换为YourInterface类型
5. 调用接口中定义的方法。应该老是捕获链接被打断时抛出的DeadObjectException异常,这是远端方法惟一的异常。
6. 调用Context.unbindService()断开链接
这里是几个调用IPC服务的提示:
* 对象是在进程间进行引用计数
* 能够发送匿名对象做为方法参数
如下是演示调用
AIDL
建立的服务,能够在
ApiDemos
项目中获取远程服务的示例。
public
static
class
Binding
extends
Activity {
/**
The primary interface we will be calling on the service.
*/
IRemoteService mService
=
null
;
/**
Another interface we use on the service.
*/
ISecondary mSecondaryService
=
null
;
Button mKillButton;
TextView mCallbackText;
private
boolean
mIsBound;
/**
* Standard initialization of this activity. Set up the UI, then wait
* for the user to poke it before doing anything.
*/
@Override
protected
void
onCreate(Bundle savedInstanceState) {
super
.onCreate(savedInstanceState);
setContentView(R.layout.remote_service_binding);
//
Watch for button clicks.
Button button
=
(Button)findViewById(R.id.bind);
button.setOnClickListener(mBindListener);
button
=
(Button)findViewById(R.id.unbind);
button.setOnClickListener(mUnbindListener);
mKillButton
=
(Button)findViewById(R.id.kill);
mKillButton.setOnClickListener(mKillListener);
mKillButton.setEnabled(
false
);
mCallbackText
=
(TextView)findViewById(R.id.callback);
mCallbackText.setText(
"
Not attached.
"
);
}
/**
* Class for interacting with the main interface of the service.
*/
private
ServiceConnection mConnection
=
new
ServiceConnection() {
public
void
onServiceConnected(ComponentName className, IBinder service) {
//
This is called when the connection with the service has been
//
established, giving us the service object we can use to
//
interact with the service. We are communicating with our
//
service through an IDL interface, so get a client-side
//
representation of that from the raw service object.
mService
=
IRemoteService.Stub.asInterface(service);
mKillButton.setEnabled(
true
);
mCallbackText.setText(
"
Attached.
"
);
//
We want to monitor the service for as long as we are
//
connected to it.
try
{
mService.registerCallback(mCallback);
}
catch
(RemoteException e) {
//
In this case the service has crashed before we could even
//
do anything with it; we can count on soon being
//
disconnected (and then reconnected if it can be restarted)
//
so there is no need to do anything here.
}
//
As part of the sample, tell the user what happened.
Toast.makeText(Binding.
this
, R.string.remote_service_connected,
Toast.LENGTH_SHORT).show();
}
public
void
onServiceDisconnected(ComponentName className) {
//
This is called when the connection with the service has been
//
unexpectedly disconnected -- that is, its process crashed.
mService
=
null
;
mKillButton.setEnabled(
false
);
mCallbackText.setText(
"
Disconnected.
"
);
//
As part of the sample, tell the user what happened.
Toast.makeText(Binding.
this
, R.string.remote_service_disconnected,
Toast.LENGTH_SHORT).show();
}
};
/**
* Class for interacting with the secondary interface of the service.
*/
private
ServiceConnection mSecondaryConnection
=
new
ServiceConnection() {
public
void
onServiceConnected(ComponentName className, IBinder service) {
//
Connecting to a secondary interface is the same as any
//
other interface.
mSecondaryService
=
ISecondary.Stub.asInterface(service);
mKillButton.setEnabled(
true
);
}
public
void
onServiceDisconnected(ComponentName className) {
mSecondaryService
=
null
;
mKillButton.setEnabled(
false
);
}
};
private
OnClickListener mBindListener
=
new
OnClickListener() {
public
void
onClick(View v) {
//
Establish a couple connections with the service, binding
//
by interface names. This allows other applications to be
//
installed that replace the remote service by implementing
//
the same interface.
bindService(
new
Intent(IRemoteService.
class
.getName()),
mConnection, Context.BIND_AUTO_CREATE);
bindService(
new
Intent(ISecondary.
class
.getName()),
mSecondaryConnection, Context.BIND_AUTO_CREATE);
mIsBound
=
true
;
mCallbackText.setText(
"
Binding.
"
);
}
};
private
OnClickListener mUnbindListener
=
new
OnClickListener() {
public
void
onClick(View v) {
if
(mIsBound) {
//
If we have received the service, and hence registered with
//
it, then now is the time to unregister.
if
(mService
!=
null
) {
try
{
mService.unregisterCallback(mCallback);
}
catch
(RemoteException e) {
//
There is nothing special we need to do if the service
//
has crashed.
}
}
//
Detach our existing connection.
unbindService(mConnection);
unbindService(mSecondaryConnection);
mKillButton.setEnabled(
false
);
mIsBound
=
false
;
mCallbackText.setText(
"
Unbinding.
"
);
}
}
};
private
OnClickListener mKillListener
=
new
OnClickListener() {
public
void
onClick(View v) {
//
To kill the process hosting our service, we need to know its
//
PID. Conveniently our service has a call that will return
//
to us that information.
if
(mSecondaryService
!=
null
) {
try
{
int
pid
=
mSecondaryService.getPid();
//
Note that, though this API allows us to request to
//
kill any process based on its PID, the kernel will
//
still impose standard restrictions on which PIDs you
//
are actually able to kill. Typically this means only
//
the process running your application and any additional
//
processes created by that app as shown here; packages
//
sharing a common UID will also be able to kill each
//
other's processes.
Process.killProcess(pid);
mCallbackText.setText(
"
Killed service process.
"
);
}
catch
(RemoteException ex) {
//
Recover gracefully from the process hosting the
//
server dying.
//
Just for purposes of the sample, put up a notification.
Toast.makeText(Binding.
this
,
R.string.remote_call_failed,
Toast.LENGTH_SHORT).show();
}
}
}
};
//
----------------------------------------------------------------------
//
Code showing how to deal with callbacks.
//
----------------------------------------------------------------------
/**
* This implementation is used to receive callbacks from the remote
* service.
*/
private
IRemoteServiceCallback mCallback
=
new
IRemoteServiceCallback.Stub() {
/**
* This is called by the remote service regularly to tell us about
* new values. Note that IPC calls are dispatched through a thread
* pool running in each process, so the code executing here will
* NOT be running in our main thread like most other things -- so,
* to update the UI, we need to use a Handler to hop over there.
*/
public
void
valueChanged(
int
value) {
mHandler.sendMessage(mHandler.obtainMessage(BUMP_MSG, value,
0
));
}
};
private
static
final
int
BUMP_MSG
=
1
;
private
Handler mHandler
=
new
Handler() {
@Override
public
void
handleMessage(Message msg) {
switch
(msg.what) {
case
BUMP_MSG:
mCallbackText.setText(
"
Received from service:
"
+
msg.arg1);
break
;
default
:
super
.handleMessage(msg); } } }; }