【android bluetooth 框架分析 02】【Module详解 4】【Btaa 模块介绍】

1. 背景

我们在上一篇文章中介绍 HciHal 模块时,有如下代码

c 复制代码
// system/gd/hal/hci_hal_android_hidl.cc
  void ListDependencies(ModuleList* list) const {
    list->add<SnoopLogger>();
    if (common::init_flags::btaa_hci_is_enabled()) {
      list->add<activity_attribution::ActivityAttribution>();
    }
  }
  • 在加载 HciHal 模块时,先要去加载 他的依赖模块, 而 HciHal 模块依赖 SnoopLogger 和 activity_attribution::ActivityAttribution 模块。
  • 而这里说的 activity_attribution::ActivityAttribution 就是我们今天要介绍的 Btaa
c 复制代码
// system/gd/btaa/android/activity_attribution.cc
std::string ActivityAttribution::ToString() const {
  return "Btaa Module";
}

我们先回忆一下 模块加载的流程:

在 ModuleRegistry::Start 函数中我们对 加入的所有 module 挨个初始化。

而在该函数中启动一个 module 都要执行那下面几步:

  1. 创建module 实体

    • Module* instance = module->ctor_();
  2. 将 当前 module 实体和 gd_stack_thread 线程绑定

    • set_registry_and_handler(instance, thread);
  3. 启动当前模块所依赖的所有子模块。

    • instance->ListDependencies(&instance->dependencies_);
    • Start(&instance->dependencies_, thread);
    • 我们在 HciHal 模块中 依赖 Btaa, 所以这里将会触发 Btaa 模块的加载, 跳到第1步开始加载 Btaa
  4. 最后调用自己的 Start() 函数

    • instance->Start();
  5. 将module 实体加入到 started_modules_

    • started_modules_module = instance;

2. BTAA 介绍

BTAA(Bluetooth Activity Attribution)模块 ,这个模块的作用是 收集和归因(Attribution)蓝牙相关的活动数据(如 wakelock 使用、设备唤醒、HCI 包传输等) ,用于 功耗分析、性能优化和调试

2.1 它是干嘛的?一句话说清楚!

这个模块就是为了监控和记录蓝牙活动,比如:

  • 蓝牙让手机唤醒了
  • 蓝牙让系统保持唤醒了(wakelock)
  • 蓝牙收发了什么数据(HCI 数据包) 然后记录下来:"这是谁干的?"------哪个 App?哪个蓝牙设备?持续多久?

2.2 它的功能拆解(逐条解释)

我们把它的功能拆成几个核心点,每点配上通俗解释 + 示例


1. 监控蓝牙 wakelock 的使用

什么是 wakelock?

Wakelock 是 Android 用来控制设备是否进入休眠的锁,比如蓝牙模块为了传数据,要让 CPU 保持工作,它就会申请 wakelock。

模块做了什么? 它监听了一个名字叫 hal_bluetooth_lock 的 wakelock,蓝牙模块每次获取或释放这个锁,都会通知这个 BTAA 模块。

在哪里监听的? 通过 AIDL 接口:registerWakelockCallback(),注册 wakelock 回调。

举例:

某个蓝牙耳机在后台播放音乐,系统蓝牙模块为了保持传输流畅,一直持有 wakelock,这段时间就是功耗关键点。BTAA 就记录下 wakelock 什么时候开始、持续了多久。


2️. 监听系统唤醒(Wakeup)事件

什么是 wakeup?

当手机在待机或打盹时(Doze 模式),某个外设(比如蓝牙设备)唤醒了系统,这个行为就是 wakeup。

模块做了什么? 监听 wakeup 原因里是否包含 hs_uart_wakeup(蓝牙唤醒),如果有,说明是蓝牙唤醒了手机,BTAA 记录下来。

在哪里监听的? 通过 AIDL 接口:registerCallback(),注册 wakeup 回调。

举例:

你用蓝牙手环设了早上 7 点叫你起床。凌晨 6:59 手环通过蓝牙发送唤醒指令,系统因此亮屏。这就是一次 wakeup 事件,BTAA 会记录:"蓝牙唤醒了系统"。


3️. 截取蓝牙 HCI 数据包

什么是 HCI 数据包?

HCI(Host Controller Interface)是主机与蓝牙硬件之间传数据的协议,比如发命令、事件通知、ACL 数据传输。

模块做了什么? 每次有蓝牙数据包(CMD、EVT、ACL 等)传过来,模块都会截取部分内容记录。

处理方式:

  • 短的命令/事件:全记录

  • 大数据包(如 ACL):只截取头部(前 4 字节)

举例:

某个 App 在跟蓝牙温度计通信,系统发了一条命令"获取温度",HCI 层生成了 CMD 包,BTAA 会截取这条命令,记录是谁发的,发了什么。


4️. 归因(Attribution)

模块做了什么? 根据 UID、包名、MAC 地址等,把每次 wakelock、wakeup、数据传输的来源 "归因" 到:

  • 哪个 App?

  • 哪个设备?

举例:

App A 通过 MAC 地址 01:23:45:67:89:AB 连了个蓝牙设备,然后 App 一直保持连接,导致 wakelock 时间很长。

BTAA 会记录:UID=10345,包名=com.example.a,Device=01:23:45:67:89:AB,wakelock=3分钟。


2.3 案例分析:真实场景中的作用


1. 场景 1:定位蓝牙耗电异常

问题描述:

用户反馈手机发热,耗电快,但他没主动用蓝牙。

BTAA 能干啥:

  • 发现有 App 背景连了蓝牙设备

  • wakelock 持续很久

  • 蓝牙传了大量 HCI 数据

  • 唤醒手机多次

分析结果:

App "Fitness Tracker" 在后台连接蓝牙心率带,导致 wakelock 没释放,系统一直没休眠。


2. 场景 2:唤醒问题分析

问题描述:

设备每天凌晨都会被唤醒一次,不清楚是谁唤醒的。

BTAA 能干啥:

  • 每次唤醒都会记录 wakeup 原因

  • 如果是 "hs_uart_wakeup",说明是蓝牙干的

  • 还可以关联设备 MAC 地址

分析结果:

蓝牙门锁每晚定时传数据,导致唤醒手机。


3. 场景 3:Framework 功耗统计 / dumpsys 支持

模块如何支持系统工具?

  • ActivityAttribution::GetDumpsysData() 实现了 dumpsys 接口

  • 系统可以通过 dumpsys bluetooth_manager 或类似命令 dump BTAA 数据

例子输出结构:

shell 复制代码
`UID: 10345 App: com.example.sensorapp Device: 12:34:56:78:90:AB Wakelock Duration: 2750ms Wakeups: 2`

2.4 总结一句话

🔊 BTAA 模块 = 蓝牙活动记录仪 + 问责系统

它监控蓝牙活动,记录是谁唤醒了系统,谁在用蓝牙传数据,谁在耗电,所有信息都可归因到具体 App 和设备,便于调试和优化。


3. 代码中如何实现

本部分将从 btaa 模块的加载 、如何工作等方面结合代码来介绍,具体实现。

3.1 模块启动流程

  1. 创建module 实体

    • Module* instance = module->ctor_();
  2. 将 当前 module 实体和 gd_stack_thread 线程绑定

    • set_registry_and_handler(instance, thread);
  3. 启动当前模块所依赖的所有子模块。

    • instance->ListDependencies(&instance->dependencies_);
    • Start(&instance->dependencies_, thread);
    • 我们在 HciHal 模块中 依赖 Btaa, 所以这里将会触发 Btaa 模块的加载, 跳到第1步开始加载 Btaa
  4. 最后调用自己的 Start() 函数

    • instance->Start();
  5. 将module 实体加入到 started_modules_

    • started_modules_module = instance;

1. 创建module 实体

c 复制代码
Module* instance = module->ctor_();
  • 当ModuleRegistry::Start 调用上面代码时,其实是去 new ActivityAttribution()
c 复制代码
// system/gd/btaa/android/activity_attribution.cc
const ModuleFactory ActivityAttribution::Factory = ModuleFactory([]() { return new ActivityAttribution(); });
c 复制代码
// system/gd/btaa/activity_attribution.h
class ActivityAttribution : public bluetooth::Module {
 public:
  ActivityAttribution() = default;
  ActivityAttribution(const ActivityAttribution&) = delete;
  ActivityAttribution& operator=(const ActivityAttribution&) = delete;

  ~ActivityAttribution() = default;

  void Capture(const hal::HciPacket& packet, hal::SnoopLogger::PacketType type);
  void OnWakelockAcquired();
  void OnWakelockReleased();
  void OnWakeup();
  void RegisterActivityAttributionCallback(ActivityAttributionCallback* callback);
  void NotifyActivityAttributionInfo(int uid, const std::string& package_name, const std::string& device_address);

  static const ModuleFactory Factory;

 protected:
  std::string ToString() const override;
  void ListDependencies(ModuleList* list) const override;
  void Start() override;
  void Stop() override;
  DumpsysDataFinisher GetDumpsysData(flatbuffers::FlatBufferBuilder* builder) const override;  // Module

 private:
  struct impl; // 这里请关注一下这个, ActivityAttribution 类中还包含  impl 类
  std::unique_ptr<impl> pimpl_;
};

2. 将 当前 module 实体和 gd_stack_thread 线程绑定

c 复制代码
ModuleRegistry::Start(const ModuleFactory* module, Thread* thread){

  Module* instance = module->ctor_();
  LOG_INFO("Starting of %s", instance->ToString().c_str());
  last_instance_ = "starting " + instance->ToString();
  set_registry_and_handler(instance, thread); // 这里同样也是 将 gd_stack_thread 传递给 btaa 模块


}


void ModuleRegistry::set_registry_and_handler(Module* instance, Thread* thread) const {
  instance->registry_ = this;
  instance->handler_ = new Handler(thread); // 最终将 gd_stack_thread 的 handler 保存在handler_ 中 
}

我们在 btaa 模块中,会大量看到 CallOn 例如如下代码

c 复制代码
// system/gd/btaa/android/activity_attribution.cc

void ActivityAttribution::OnWakelockAcquired() {
  CallOn(pimpl_.get(), &impl::on_wakelock_acquired);
}

// system/gd/module.h
  template <typename T, typename Functor, typename... Args>
  void CallOn(T* obj, Functor&& functor, Args&&... args) {
    GetHandler()->CallOn(obj, std::forward<Functor>(functor), std::forward<Args>(args)...);
  }

// system/gd/module.cc
Handler* Module::GetHandler() const {
  ASSERT_LOG(handler_ != nullptr, "Can't get handler when it's not started");
  return handler_;
}
  • 通过 CallOn 就可以将 我们的 任务传递给 通过 set_registry_and_handler 绑定的 线程。 这里就是 gd_stack_thread

3. 启动当前模块所依赖的所有子模块

  • instance->ListDependencies(&instance->dependencies_);
  • Start(&instance->dependencies_, thread);
c 复制代码
void ActivityAttribution::ListDependencies(ModuleList* list) const {}
  • 这里看到 btaa 模块不依赖任何 模块

4. 最后调用自己的 Start() 函数

  • instance->Start();
c 复制代码
// system/gd/btaa/android/activity_attribution.cc
void ActivityAttribution::Start() {
  pimpl_ = std::make_unique<impl>(this);  
}
  • 这里创建 了 ActivityAttribution::impl 对象

5. 将module 实体加入到 started_modules_

  • started_modules_module = instance;

3.2 ActivityAttribution::impl 对象

在 3.1.4 中我们看到 会创建 一个 ActivityAttribution::impl 对象,本节就来看看, ActivityAttribution::impl 是如何工作的。

c 复制代码
// system/gd/btaa/android/activity_attribution.cc
struct ActivityAttribution::impl {
  impl(ActivityAttribution* module) {
    std::lock_guard<std::mutex> guard(g_module_mutex);
    g_module = module;
    if (is_wakeup_callback_registered && is_wakelock_callback_registered) {
      LOG_ERROR("Wakeup and wakelock callbacks are already registered");
      return;
    }

    Status register_callback_status;
    bool is_register_successful = false;
    auto control_service =
        ISuspendControlService::fromBinder(SpAIBinder(AServiceManager_getService("suspend_control")));
    if (!control_service) {
      LOG_ERROR("Fail to obtain suspend_control");
      return;
    }

    if (!is_wakeup_callback_registered) {
      g_wakeup_callback = SharedRefBase::make<wakeup_callback>();
      register_callback_status = control_service->registerCallback(g_wakeup_callback, &is_register_successful);
      if (!is_register_successful || !register_callback_status.isOk()) {
        LOG_ERROR("Fail to register wakeup callback");
        return;
      }
      is_wakeup_callback_registered = true;
    }

    if (!is_wakelock_callback_registered) {
      g_wakelock_callback = SharedRefBase::make<wakelock_callback>();
      register_callback_status =
          control_service->registerWakelockCallback(g_wakelock_callback, kBtWakelockName, &is_register_successful);
      if (!is_register_successful || !register_callback_status.isOk()) {
        LOG_ERROR("Fail to register wakelock callback");
        return;
      }
      is_wakelock_callback_registered = true;
    }
  }

  ~impl() {
    std::lock_guard<std::mutex> guard(g_module_mutex);
    g_module = nullptr;
  }

  void on_hci_packet(hal::HciPacket packet, hal::SnoopLogger::PacketType type, uint16_t length) {
    attribution_processor_.OnBtaaPackets(std::move(hci_processor_.OnHciPacket(std::move(packet), type, length)));
  }

  void on_wakelock_acquired() {
    wakelock_processor_.OnWakelockAcquired();
  }

  void on_wakelock_released() {
    uint32_t wakelock_duration_ms = 0;

    wakelock_duration_ms = wakelock_processor_.OnWakelockReleased();
    if (wakelock_duration_ms != 0) {
      attribution_processor_.OnWakelockReleased(wakelock_duration_ms);
    }
  }

  void on_wakeup() {
    attribution_processor_.OnWakeup();
  }

  void register_callback(ActivityAttributionCallback* callback) {
    callback_ = callback;
  }

  void notify_activity_attribution_info(int uid, const std::string& package_name, const std::string& device_address) {
    attribution_processor_.NotifyActivityAttributionInfo(uid, package_name, device_address);
  }

  void Dump(
      std::promise<flatbuffers::Offset<ActivityAttributionData>> promise, flatbuffers::FlatBufferBuilder* fb_builder) {
    attribution_processor_.Dump(std::move(promise), fb_builder);
  }

  ActivityAttributionCallback* callback_;
  AttributionProcessor attribution_processor_;
  HciProcessor hci_processor_;
  WakelockProcessor wakelock_processor_;
};

这个 struct ActivityAttribution::implActivityAttribution 的实现部分,负责:

  • 注册唤醒和 wakelock 回调(注册监听)
  • 接收蓝牙 HCI 数据包
  • 通知 Attribution 处理器去归因
  • 接受系统/蓝牙模块信息更新
  • 提供数据输出供 dumpsys 等调用

这部分是整个 BTAA 核心业务的"中控台"。

1. 构造函数

c 复制代码
// system/gd/btaa/android/activity_attribution.cc

static const std::string kBtWakelockName("hal_bluetooth_lock");


  impl(ActivityAttribution* module) {
    std::lock_guard<std::mutex> guard(g_module_mutex);
    g_module = module; // 这里传入的是 ActivityAttribution 对象

    // 防止重复注册监听。系统中只能有一份回调,避免多次注册导致重复响应。
    if (is_wakeup_callback_registered && is_wakelock_callback_registered) {
      LOG_ERROR("Wakeup and wakelock callbacks are already registered");
      return;
    }

    Status register_callback_status;
    bool is_register_successful = false;

    // 获取系统服务 suspend_control,这个服务负责睡眠唤醒相关的工作。
    // 是一个 AIDL 接口,跨进程通信,通常由系统底层的 power HAL 提供。
    auto control_service =
        ISuspendControlService::fromBinder(SpAIBinder(AServiceManager_getService("suspend_control")));
    if (!control_service) {
      LOG_ERROR("Fail to obtain suspend_control");
      return;
    }

    if (!is_wakeup_callback_registered) {
      // 创建一个 wakeup 回调对象(wakeup_callback 是内部类)
      g_wakeup_callback = SharedRefBase::make<wakeup_callback>();
      // 注册给 suspend_control,告诉它:蓝牙模块想监听你系统是否被蓝牙唤醒
      register_callback_status = control_service->registerCallback(g_wakeup_callback, &is_register_successful);
      if (!is_register_successful || !register_callback_status.isOk()) {
        LOG_ERROR("Fail to register wakeup callback");
        return;
      }
      is_wakeup_callback_registered = true;
    }

    if (!is_wakelock_callback_registered) {
      g_wakelock_callback = SharedRefBase::make<wakelock_callback>();
      // 注册监听蓝牙 wakelock 行为(kBtWakelockName = hal_bluetooth_lock)
      register_callback_status =
          control_service->registerWakelockCallback(g_wakelock_callback, kBtWakelockName, &is_register_successful);
      if (!is_register_successful || !register_callback_status.isOk()) {
        LOG_ERROR("Fail to register wakelock callback");
        return;
      }
      is_wakelock_callback_registered = true;
    }
  }
  • 至此,BTAA 就已经接入了系统 power 管理流程的监听通道

2. 析构函数

c 复制代码
  ~impl() {
    // 安全清理 g_module 指针
    std::lock_guard<std::mutex> guard(g_module_mutex);
    g_module = nullptr;
  }

3.on_hci_packet

c 复制代码
  void on_hci_packet(hal::HciPacket packet, hal::SnoopLogger::PacketType type, uint16_t length) {
    attribution_processor_.OnBtaaPackets(std::move(hci_processor_.OnHciPacket(std::move(packet), type, length)));
  }

解释:

  • 蓝牙模块收到了一个 HCI 数据包(如连接命令、数据传输等)
  • 先由 hci_processor_ 做初步解析、抽象归一化
  • 然后丢给 attribution_processor_ 进一步做 App 归因

最终这些结果可以通过 如下命令查看,

shell 复制代码
adb shell dumpsys bluetooth_manager  


# 其中包含如下信息:
  activity_attribution_dumpsys_data: {
    title_device_wakeup: "----- Device-based Wakeup Attribution Dumpsys -----",
    num_device_wakeup: 0,
    device_wakeup_attribution: [

    ],
    title_device_activity: "----- Device-based Activity Attribution Dumpsys -----",
    num_device_activity: 0,
    device_activity_aggregation: [

    ],
    title_app_wakeup: "----- App-based Wakeup Attribution Dumpsys -----",
    num_app_wakeup: 0,
    app_wakeup_attribution: [

    ],
    title_app_activity: "----- App-based Activity Attribution Dumpsys -----",
    num_app_activity: 0,
    app_activity_aggregation: [

    ]
  }
1. 如何调用到 on_hci_packet

蓝牙模块收到了一个 HCI 数据包 , 是如何一步步调用到 ActivityAttribution::impl::on_hci_packet 的?

还记得我们的 我们是为何加载 Btaa 模块的? 我们在加载 HciHal 模块的过程中, 发现HciHal模块依赖 SnoopLogger 模块和 Btaa 模块,所以此时 触发了 Btaa 模块。 当我们把 SnoopLogger 模块和 Btaa 模块 都加载完成后。就会触发 HciHal::Start 函数调用。

c 复制代码
// system/gd/hal/hci_hal_android_hidl.cc
  void Start() override {
    if (common::init_flags::btaa_hci_is_enabled()) {
      // 这里会获得 btaa 的实例
      btaa_logger_ = GetDependency<activity_attribution::ActivityAttribution>();
    }
    btsnoop_logger_ = GetDependency<SnoopLogger>();
    LOG_INFO("GetService start.");

    ...
  }
  • 从 HciHal::Start 函数中,可以看到我们将 btaa 实例 赋值给了 btaa_logger_
  • 也就是说, HciHal 模块中 收到来自于 hal 进程的数据后, 可以通过 btaa_logger_ 传递到 btaa 模块。

当 我们收到 hcievent 时,就会触发 HciHal模块如下代码:

c 复制代码
// system/gd/hal/hci_hal_android_hidl.cc
  Return<void> hciEventReceived(const hidl_vec<uint8_t>& event) override {
    common::StopWatch stop_watch(GetTimerText(__func__, event));
    std::vector<uint8_t> received_hci_packet(event.begin(), event.end());
    btsnoop_logger_->Capture(received_hci_packet, SnoopLogger::Direction::INCOMING, SnoopLogger::PacketType::EVT);
    if (common::init_flags::btaa_hci_is_enabled()) {
      btaa_logger_->Capture(received_hci_packet, SnoopLogger::PacketType::EVT); // 这里会触发到 btaa 模块的 Capture 方法
    }
    if (callback_ != nullptr) {
      callback_->hciEventReceived(std::move(received_hci_packet));
    }
    return Void();
  }

当我们要 发送cmd 到 hal时:

c 复制代码
  void sendHciCommand(HciPacket command) override {
    btsnoop_logger_->Capture(command, SnoopLogger::Direction::OUTGOING, SnoopLogger::PacketType::CMD);
    if (common::init_flags::btaa_hci_is_enabled()) {
      btaa_logger_->Capture(command, SnoopLogger::PacketType::CMD);  // 这里会触发到 btaa 模块的 Capture 方法
    }
    bt_hci_->sendHciCommand(command);
  }

通过这两个实际函数,就能看到, HciHal中通过回调 btaa 的 Capture 函数,而回调到的 btaa 中处理。

HciHal 模块中的如下所有函数都会 回调 btaa 的 Capture 函数:

shell 复制代码
hciEventReceived

aclDataReceived

scoDataReceived

sendHciCommand

sendAclData

sendScoData

我们继续看 btaa 的 Capture 函数:

c 复制代码
// system/gd/btaa/android/activity_attribution.cc
void ActivityAttribution::Capture(const hal::HciPacket& packet, hal::SnoopLogger::PacketType type) {
  uint16_t original_length = packet.size();
  uint16_t truncate_length;

  switch (type) {
    case hal::SnoopLogger::PacketType::CMD:
    case hal::SnoopLogger::PacketType::EVT:
      truncate_length = packet.size();
      break;
    case hal::SnoopLogger::PacketType::ACL:
    case hal::SnoopLogger::PacketType::SCO:
    case hal::SnoopLogger::PacketType::ISO:
      truncate_length = kHciAclHeaderSize;
      break;
  }

  if (!truncate_length) {
    return;
  }

  hal::HciPacket truncate_packet(packet.begin(), packet.begin() + truncate_length);
  CallOn(pimpl_.get(), &impl::on_hci_packet, truncate_packet, type, original_length);  // 最终调用到 ActivityAttribution::impl::on_hci_packet
}
2.场景示例:

App A 连了个设备

发了一个连接命令 HCI CMD

这里被截获并记录:"App A 发出了连接命令给 12:34:56:78:90:AB"

4.on_wakelock_acquired on_wakelock_released

c 复制代码
// system/gd/btaa/android/activity_attribution.cc

// impl::on_wakelock_acquired 实现
  void on_wakelock_acquired() {
    wakelock_processor_.OnWakelockAcquired();
  }

  void on_wakelock_released() {
    uint32_t wakelock_duration_ms = 0;

    wakelock_duration_ms = wakelock_processor_.OnWakelockReleased();
    if (wakelock_duration_ms != 0) {
      attribution_processor_.OnWakelockReleased(wakelock_duration_ms);
    }
  }
1. 如何调用到 on_wakelock_acquired

在ActivityAttribution::impl 构造函数 中, 我们向 suspend_control 服务注册了 wakelock_callback

c 复制代码
// system/gd/btaa/android/activity_attribution.cc

static const std::string kBtWakelockName("hal_bluetooth_lock");


  impl(ActivityAttribution* module) {
...

    // 获取系统服务 suspend_control,这个服务负责睡眠唤醒相关的工作。
    // 是一个 AIDL 接口,跨进程通信,通常由系统底层的 power HAL 提供。
    auto control_service =
        ISuspendControlService::fromBinder(SpAIBinder(AServiceManager_getService("suspend_control")));
    if (!control_service) {
      LOG_ERROR("Fail to obtain suspend_control");
      return;
    }

...

    if (!is_wakelock_callback_registered) {
      g_wakelock_callback = SharedRefBase::make<wakelock_callback>(); // 创建了 wakelock_callback 对象
      // 注册监听蓝牙 wakelock 行为(kBtWakelockName = hal_bluetooth_lock)
      register_callback_status =
          control_service->registerWakelockCallback(g_wakelock_callback, kBtWakelockName, &is_register_successful);
      if (!is_register_successful || !register_callback_status.isOk()) {
        LOG_ERROR("Fail to register wakelock callback");
        return;
      }
      is_wakelock_callback_registered = true;
    }
  }

suspend_control 服务会在 系统电源管理层发生 wakelock 获取/释放事件时 ,通过 AIDL 回调机制 调用你提供的 wakelock_callback,进而触发 BTAA 的统计逻辑。

suspend_control系统 suspend(挂起)机制的控制服务 ,其 AIDL 定义位于:

system/hardware/interfaces/suspend/aidl/android/hardware/power/suspend/

服务名称就是:suspend_control

它的职责是:

1.追踪各个 subsystem(比如 BT、WiFi、Audio 等)是否申请 wakelock。

2.当 wakelock 获取/释放时,通知订阅者(通过 AIDL 回调)。

3.控制是否允许系统进入 suspend(挂起)状态。

c 复制代码
struct wakelock_callback : public BnWakelockCallback {
  wakelock_callback() {}

  //  wakelock 获取后, 触发 notifyAcquired 调用
  Status notifyAcquired() override {
    std::lock_guard<std::mutex> guard(g_module_mutex);
    if (g_module != nullptr) {
      g_module->OnWakelockAcquired(); // 调用 ActivityAttribution::OnWakelockAcquired
    }
    return Status::ok();
  }

  //  wakelock 释放后, 触发 notifyReleased 调用
  Status notifyReleased() override {
    std::lock_guard<std::mutex> guard(g_module_mutex);
    if (g_module != nullptr) {
      g_module->OnWakelockReleased(); // 调用 ActivityAttribution::OnWakelockReleased
    }
    return Status::ok();
  }
};


void ActivityAttribution::OnWakelockAcquired() {
  CallOn(pimpl_.get(), &impl::on_wakelock_acquired); // 调用 impl::on_wakelock_acquired
}
  • 当 suspend_control 服务 发现蓝牙 已经获取到 wakelock 后,就会回调到 btaa 中的 notifyAcquired .
  • 当 suspend_control 服务 发现蓝牙 已经释放 wakelock 后,就会回调到 btaa 中的 notifyReleased .

那 蓝牙什么时候 获取 wakelock ?

当以下事情发生,系统就会调用你的回调:

  1. 蓝牙子系统调用 acquire_wake_lock()
    acquire_wake_lock(PARTIAL_WAKE_LOCK, kBtWakelockName);

  2. 内核记录 wakelock 获取/释放事件

    • wakelock 内核驱动位于 /sys/power/wake_lock 或使用 binder suspend control 通信
    • suspend_control 服务接收到 wakelock 状态变更事件
  3. suspend_control 通过 AIDL 通知注册的模块

    • 此时就调用你注册的 notifyAcquired()notifyReleased() 函数

假设某个蓝牙应用准备传输数据(如文件传输、BLE 连接):

  1. 蓝牙堆栈(比如 hci_layer)申请 wakelock,防止 CPU 睡眠:
    acquire_wake_lock(PARTIAL_WAKE_LOCK, "bluetooth");

  2. suspend_control 服务被通知 wakelock 被申请:

    • 查找是否有注册的 WakelockCallback
    • 调用你注册的 notifyAcquired()
  3. 你的 BTAA 模块中 wakelock_processor_ 开始计时:
    wakelock_processor_.OnWakelockAcquired();

  4. 任务完成后,蓝牙释放 wakelock:
    release_wake_lock("bluetooth");

  5. suspend_control 服务通知你回调 notifyReleased()

  6. BTAA 模块记录 wakelock 持有时长:
    auto duration = wakelock_processor_.OnWakelockReleased(); attribution_processor_.OnWakelockReleased(duration);

shell 复制代码
acquire_wake_lock("bluetooth") → 内核 wakelock 层
     ↓
 suspend_control 服务监听 wakelock 变化
     ↓
 registerWakelockCallback() 中注册的 callback 被触发
     ↓
 wakelock_callback::notifyAcquired() / notifyReleased()
     ↓
 ActivityAttribution → WakelockProcessor / AttributionProcessor
组件 作用
suspend_control 管理 wakelock 生命周期,支持挂起
wakelock_callback 被注册到 suspend_control,用于接收 wakelock 事件
notifyAcquired() 当蓝牙获取 wakelock 时触发
notifyReleased() 当蓝牙释放 wakelock 时触发
WakelockProcessor 记录 wakelock 起止时间
AttributionProcessor 用于生成统计数据,便于 dumpsys 输出或分析

5. on_wakeup

c 复制代码
  void on_wakeup() {
    attribution_processor_.OnWakeup();
  }
1. 如何触发调用的

wakeup_callback 同样也是在ActivityAttribution::impl 构造函数 中, 我们向 suspend_control 服务注册了 wakeup_callback

c 复制代码
struct wakeup_callback : public BnSuspendCallback {
  wakeup_callback() {}

  Status notifyWakeup(bool success, const std::vector<std::string>& wakeup_reasons) override {
    for (auto& wakeup_reason : wakeup_reasons) {
      if (wakeup_reason.find(kBtWakeupReason) != std::string::npos) {
        std::lock_guard<std::mutex> guard(g_module_mutex);
        if (g_module != nullptr) {
          g_module->OnWakeup(); // 调用ActivityAttribution::OnWakeup
        }
        break;
      }
    }
    return Status::ok();
  }
};
  • wakeup_callback 继承了 BnSuspendCallback 实现了 system/hardware/interfaces/suspend/aidl/android/system/suspend/ISuspendCallback.aidl 接口
c 复制代码
interface ISuspendCallback
{
    /**
     * An implementation of ISuspendControlService must call notifyWakeup after every system wakeup.
     *
     * @param success whether previous system suspend attempt was successful.
     */
     void notifyWakeup(boolean success, in @utf8InCpp String[] wakeupReasons);
}
  • 作用是监听系统从 suspend(休眠)状态唤醒时的原因,并把唤醒原因传给蓝牙 BTAA 模块。
shell 复制代码
系统进入休眠
   ↓
有唤醒事件(如 BT、中断、alarm)
   ↓
suspend_control 检测到唤醒,解析 /sys/kernel/wakeup_reasons/last_resume_reason
   ↓
回调 notifyWakeup(success, reasons) 给所有注册者(如蓝牙模块)
   ↓
蓝牙 BTAA 中 wakeup_callback 被调用
   ↓
g_module->OnWakeup() → AttributionProcessor::OnWakeup()

调用发生在 系统刚从休眠状态唤醒 的时候。

例如以下场景都可能触发它:

场景 是否触发 notifyWakeup() 备注
蓝牙来电 / BLE 广播 ✅ 有蓝牙中断唤醒
AlarmManager 定时器唤醒 ❌(通常 BT 不感知)
用户按电源键唤醒 ❌(非 BT 原因)
蓝牙耳机按键唤醒手机 ✅ 会触发 BT wakeup
蓝牙自动重连事件 ✅(需要 wakeup 支持)
c 复制代码
void ActivityAttribution::OnWakeup() {
  CallOn(pimpl_.get(), &impl::on_wakeup);
}

6. register_callback

c 复制代码
  void register_callback(ActivityAttributionCallback* callback) {
    callback_ = callback;
  }
  • 用于从外部注册一个 UI 或 log 系统回调,用于把数据送出去(比如 UI 层用来展示统计信息)

7. notify_activity_attribution_info

c 复制代码
  void notify_activity_attribution_info(int uid, const std::string& package_name, const std::string& device_address) {
    attribution_processor_.NotifyActivityAttributionInfo(uid, package_name, device_address);
  }

外部(通常是系统蓝牙模块)主动提供一些上下文信息,如 UID、包名、设备地址,用于给后续数据包做归因。

关键用途:提前"绑定关系",后面数据包才能归到正确 App。

相关推荐
千里马学框架21 小时前
一起学 Android 14:ShellTransition 屏幕旋转过程深度剖析
android·智能手机·性能优化·framework·性能·屏幕旋转·rotation
美狐美颜SDK开放平台21 小时前
开发直播APP时如何接入视频美颜SDK?开发流程与注意事项
android·人工智能·计算机视觉·音视频·直播美颜sdk
AFinalStone1 天前
Android7 SystemUI源码解析(七)Keyguard锁屏模块深度解析
android·systemui
致远ccc1 天前
Google Play 上架前如何测试 App?多国家 Android 环境测试
android·app测试·googleplay·多国家应用测试
ttyyttemo1 天前
Kotlin 协程中的 Job 结构化并发与取消
android
sun0077001 天前
tbox 4g/5g切换,导致wan ip 改变,导致车机旧网络不可用。需要重启车机才行
android
其实防守也摸鱼1 天前
内网穿透与反向代理:原理、工具与实战指南
android·大数据·运维·安全·网络安全·自动化·渗透
AFinalStone1 天前
Android7 SystemUI 源码解析(四)NavigationBar 导航栏与 SystemBars
android·systemui
JMchen1 天前
属性动画原理与高级动画实现
android·kotlin·canvas
AFinalStone1 天前
Android7 SystemUI 源码解析(二)启动流程深度解析
android·systemui