当前位置:   article > 正文

Android关于service call 直接调用方法分析

Android关于service call 直接调用方法分析

1 背景

希望通过命令的方式控制蓝牙打开与关闭,通过网上搜索我们都能搜到

//打开蓝牙
adb shell service call bluetooth_manager 6
//关闭蓝牙
adb shell service call bluetooth_manager 8
  • 1
  • 2
  • 3
  • 4
  • 其中运用到的就是service call,其机制是通过 Android 的 Binder 机制来实现的。
  • Android 系统中的各种服务和应用都可以通过 Binder 机制提供自己的接口,其他的应用或者系统组件 可以通过 Binder 来调用这些接口,实现跨进程通信和调用远程服务的功能。
  • 当使用 “service call” 命令时,实际上是通过 Binder 机制找到对应的系统服务,并调用这个服务的方法。命令的参数会被传递给对应的方法,从而实现特定的功能。

2 分析

2.1 查阅代码可知,打开蓝牙使用

./frameworks/base/services/core/java/com/android/server/BluetoothManagerService.java
  • 1

在这里插入图片描述
因此铁定是server call 调用了enable因此打开了蓝牙功能

2.2 service list 查找 bluetooth 服务对应的 aidl

firefly_3399:/ # service list | grep "bluetooth"
11      bluetooth_manager: [android.bluetooth.IBluetoothManager]
  • 1
  • 2

2.3 代码中找到IBluetoothManager.aidl

fireflyserver:~/android/rk3399/industry-7.1$ find ./frameworks/base/  -name "IBluetoothManager.aidl"
./frameworks/base/core/java/android/bluetooth/IBluetoothManager.aidl
  • 1
  • 2

2.4 查阅IBluetoothManager.aidl

interface IBluetoothManager
 {
 ....
    IBluetooth registerAdapter(in IBluetoothManagerCallback callback);
     void unregisterAdapter(in IBluetoothManagerCallback callback);
     void registerStateChangeCallback(in IBluetoothStateChangeCallback callback);
     void unregisterStateChangeCallback(in IBluetoothStateChangeCallback callback);
     boolean isEnabled(); 
     boolean enable(String packageName); // 6
	 boolean enableNoAutoConnect(String packageName);
     boolean disable(String packageName, boolean persist); // 8
     int getState();
    IBluetoothGatt getBluetoothGatt();
....
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14

很明显这个编号就是6是enable,8是disable,符合预期

3 延伸service用法

Usage: service [-h|-?]
       service list
       service check SERVICE
       service call SERVICE CODE [i32 N | i64 N | f N | d N | s16 STR ] ...
Options:
// i32 N: 表示将一个32位整数N写入发送包中。您可以使用这个选项来向系统服务的方法传递一个32位整数类型的参数。
   i32: Write the 32-bit integer N into the send parcel.
//i64 N: 表示将一个64位整数N写入发送包中。类似地,这个选项用于向系统服务的方法传递一个64位整数类型的参数。
   i64: Write the 64-bit integer N into the send parcel.
//f N: 表示将一个32位单精度浮点数N写入发送包中。您可以使用这个选项来向系统服务的方法传递一个单精度浮点数类型的参数。
   f:   Write the 32-bit single-precision number N into the send parcel.
//d N: 表示将一个64位双精度浮点数N写入发送包中。类似地,这个选项用于向系统服务的方法传递一个双精度浮点数类型的参数。
   d:   Write the 64-bit double-precision number N into the send parcel.
//s16 STR: 表示将一个UTF-16字符串STR写入发送包中。您可以使用这个选项来向系统服务的方法传递一个UTF-16格式的字符串参数。
   s16: Write the UTF-16 string STR into the send parcel.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

service call 可以增加输入参数,但是无法获取返回值,例如这样运行,packageName就是firefly

service call bluetooth_manager 6 s16 firefly
  • 1
05-27 10:56:10.949   479   884 D BluetoothManagerService: enable(firefly):  mBluetooth =android.bluetooth.IBluetooth$Stub$
Proxy@3862774 mBinding = false mState = ON
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/657111
推荐阅读
相关标签
  

闽ICP备14008679号