@@ -40,6 +40,13 @@ static mon_cmd_t android_power_cmds[] = {
.help = "set AC charging state",
.mhandler.cmd = android_console_power_ac,
},
+ {
+ .name = "status",
+ .args_type = "arg:s?",
+ .params = "",
+ .help = "set battery status",
+ .mhandler.cmd = android_console_power_status,
+ },
{ NULL, NULL, },
};
@@ -324,10 +324,44 @@ void android_console_power_ac(Monitor *mon, const QDict *qdict)
monitor_printf(mon, "KO: Usage: \"ac on\" or \"ac off\"\n");
}
+void android_console_power_status(Monitor *mon, const QDict *qdict)
+{
+ const char *arg = qdict_get_try_str(qdict, "arg");
+
+ if (arg) {
+ if (strcasecmp(arg, "unknown") == 0) {
+ goldfish_battery_set_prop(0, POWER_SUPPLY_PROP_STATUS,
+ POWER_SUPPLY_STATUS_UNKNOWN);
+ return;
+ } else if (strcasecmp(arg, "charging") == 0) {
+ goldfish_battery_set_prop(0, POWER_SUPPLY_PROP_STATUS,
+ POWER_SUPPLY_STATUS_CHARGING);
+ return;
+ } else if (strcasecmp(arg, "discharging") == 0) {
+ goldfish_battery_set_prop(0, POWER_SUPPLY_PROP_STATUS,
+ POWER_SUPPLY_STATUS_DISCHARGING);
+ return;
+ } else if (strcasecmp(arg, "not-charging") == 0) {
+ goldfish_battery_set_prop(0, POWER_SUPPLY_PROP_STATUS,
+ POWER_SUPPLY_STATUS_NOT_CHARGING);
+ return;
+ } else if (strcasecmp(arg, "full") == 0) {
+ goldfish_battery_set_prop(0, POWER_SUPPLY_PROP_STATUS,
+ POWER_SUPPLY_STATUS_FULL);
+ return;
+ }
+ }
+
+ monitor_printf(mon, "KO: Usage: \"status unknown|charging|"
+ "discharging|not-charging|full\"\n");
+}
+
+
enum {
CMD_POWER,
CMD_POWER_DISPLAY,
CMD_POWER_AC,
+ CMD_POWER_STATUS,
};
static const char *power_help[] = {
@@ -337,6 +371,9 @@ static const char *power_help[] = {
"display battery and charger state",
/* CMD_POWER_AC */
"'ac on|off' allows you to set the AC charging state to on or off",
+ /* CMD_POWER_STATUS */
+ "'status unknown|charging|discharging|not-charging|full' allows you "
+ "to set battery status",
};
void android_console_power(Monitor *mon, const QDict *qdict)
@@ -352,6 +389,8 @@ void android_console_power(Monitor *mon, const QDict *qdict)
cmd = CMD_POWER_DISPLAY;
} else if (strstr(helptext, "ac")) {
cmd = CMD_POWER_AC;
+ } else if (strstr(helptext, "status")) {
+ cmd = CMD_POWER_STATUS;
}
}
@@ -30,6 +30,7 @@ void android_console_redir_del(Monitor *mon, const QDict *qdict);
void android_console_power_display(Monitor *mon, const QDict *qdict);
void android_console_power_ac(Monitor *mon, const QDict *qdict);
+void android_console_power_status(Monitor *mon, const QDict *qdict);
void android_console_power(Monitor *mon, const QDict *qdict);
void android_monitor_print_error(Monitor *mon, const char *fmt, ...);
Add the Android emulator console "power status" command and associated help messages. The "status" command allows the battery status of the device to be manipulated. Signed-off-by: Greg Bellows <greg.bellows@linaro.org> --- android-commands.h | 7 +++++++ android-console.c | 39 +++++++++++++++++++++++++++++++++++++++ android-console.h | 1 + 3 files changed, 47 insertions(+)