blob: 990837f1794b9ebac79a9263779bb444f59d6631 [file] [log] [blame]
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.commands.svc;
import android.os.IPowerManager;
import android.os.ServiceManager;
import android.os.RemoteException;
public class PowerCommand extends Svc.Command {
public PowerCommand() {
super("power");
}
public String shortHelp() {
return "Control the power manager";
}
public String longHelp() {
return shortHelp() + "\n"
+ "\n"
+ "usage: svc power stayon [true|false]\n"
+ " Set the 'keep awake while plugged in' setting.\n";
}
public void run(String[] args) {
fail: {
if (args.length >= 2) {
if ("stayon".equals(args[1]) && args.length == 3) {
boolean val;
if ("true".equals(args[2])) {
val = true;
}
else if ("false".equals(args[2])) {
val = false;
}
else {
break fail;
}
IPowerManager pm
= IPowerManager.Stub.asInterface(ServiceManager.getService("power"));
try {
pm.setStayOnSetting(val);
}
catch (RemoteException e) {
System.err.println("Faild to set setting: " + e);
}
return;
}
}
}
System.err.println(longHelp());
}
}