zoukankan      html  css  js  c++  java
  • Android电源管理

    研究了好几个月的Android电源管理了,有时间得自己写一些心得体会了,先转贴一份写得不错的文章吧

    [First written by Steve Guo, please keep the mark if forwarding.]

    Overview

    PowerManagement1

    The above picture shows the overall architecture design of Android power management module. Android implements a very simple power management mechanism. Currently it only supports set screen on/off, screen backlight on/off, keyboard backlight on/off, button backlight on/off and adjust screen brightness. It does not support Sleep or Standby mode to fully use CPU’s capability.

    The power management module has three channels to receive input: RPC call, Batter state change event and Power Setting change event. It communicated with other modules through either broadcasting intent or directly API call. The module also provide reboot and shutdown service. When battery is lower than thredshold, it will automatically shutdown the device.

    The module will automatically set screen dim and off according to whether any user activity happens or not. The full state machine is shown as follows:

    PowerManagement2

    Detail

    PowerManagerService.java is the core service. It calls Power.java to do the real work.

    PowerManager.java is the proxy to RPC call PowerManagerService.java.

    Power.java communicates with the low level through JNI.

    android_os_Power.cpp is the JNI native implementation for Power.java. It calls Power.c to do the real work.

    Power.c controls the power device driver through read/write the following sys files.

        "/sys/android_power/acquire_partial_wake_lock",

        "/sys/android_power/acquire_full_wake_lock",

        "/sys/android_power/release_wake_lock",

        "/sys/android_power/request_state"

        "/sys/android_power/auto_off_timeout",

        "/sys/class/leds/lcd-backlight/brightness",

        "/sys/class/leds/button-backlight/brightness",

        "/sys/class/leds/keyboard-backlight/brightness"

    BatteryService.java registers itself as a UEvent observer for the path “/sys/class/power_supply”. If anything is changed in this path, it gets current state through JNI and then broadcasts ACTION_BATTERY_CHANGED intent.

    com_android_server_BatteryService.cpp is the JNI native implementation for BatteryService.java. It gets current battery state through reading from the following files:

        "/sys/class/power_supply/ac/online"

        "/sys/class/power_supply/usb/online"

        "/sys/class/power_supply/battery/status"

        "/sys/class/power_supply/battery/health"

        "/sys/class/power_supply/battery/present"

        "/sys/class/power_supply/battery/capacity"

        "/sys/class/power_supply/battery/batt_vol"

        "/sys/class/power_supply/battery/batt_temp"

        "/sys/class/power_supply/battery/technology"

    How to use

    To call power module in app, the following is the sample code:

    PowerManager pm = (PowerManager)mContext.getSystemService(Context.POWER_SERVICE);

    PowerManager.WakeLock wl = pm.newWakeLock(

    PowerManager.SCREEN_DIM_WAKE_LOCK

    | PowerManager.ON_AFTER_RELEASE,

    TAG);

    wl.acquire();

    // ...

    wl.release();

        http://blog.csdn.net/hzdysymbol/archive/2009/03/04/3956462.aspx

  • 相关阅读:
    算法题解:旋转数组的最小数字
    算法题解:连续子数组的最大和及其下标
    算法题解:快速排序算法(维基百科版)
    c++入门之类——进一步剖析
    c++入门之运算符重载
    c++入门之浅入浅出类——分享给很多想形象理解的人
    c++入门之再话内存和引用
    c++入门之引用
    c++入门之内置数组和array比较
    c++入门之结构体初步
  • 原文地址:https://www.cnblogs.com/eustoma/p/2415864.html
Copyright © 2011-2022 走看看