blob: be651417150f08a70ea28d5e498aaa2ea0ba8ea8 [file] [log] [blame]
Mike Lockwoodbad80e02009-07-30 01:21:08 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.server;
18
19import android.app.Activity;
Dianne Hackbornc428aae2012-10-03 16:38:22 -070020import android.content.Context;
Mike Lockwoodbad80e02009-07-30 01:21:08 -070021import android.content.Intent;
22import android.os.Bundle;
23import android.os.Handler;
Dianne Hackbornc428aae2012-10-03 16:38:22 -070024import android.os.IPowerManager;
25import android.os.RemoteException;
26import android.os.ServiceManager;
Joe Onorato8a9b2202010-02-26 18:56:32 -080027import android.util.Slog;
Jeff Brown7304c342012-05-11 18:42:42 -070028
Jeff Brown4f8ecd82012-06-18 18:29:13 -070029import com.android.server.power.ShutdownThread;
Mike Lockwoodbad80e02009-07-30 01:21:08 -070030
31public class ShutdownActivity extends Activity {
32
33 private static final String TAG = "ShutdownActivity";
Mike Lockwoodb8a8a572010-09-08 07:21:07 -040034 private boolean mReboot;
Mike Lockwoodbad80e02009-07-30 01:21:08 -070035 private boolean mConfirm;
36
37 @Override
38 protected void onCreate(Bundle savedInstanceState) {
39 super.onCreate(savedInstanceState);
40
Mike Lockwoodb8a8a572010-09-08 07:21:07 -040041 Intent intent = getIntent();
42 mReboot = Intent.ACTION_REBOOT.equals(intent.getAction());
43 mConfirm = intent.getBooleanExtra(Intent.EXTRA_KEY_CONFIRM, false);
Joe Onorato8a9b2202010-02-26 18:56:32 -080044 Slog.i(TAG, "onCreate(): confirm=" + mConfirm);
Mike Lockwoodbad80e02009-07-30 01:21:08 -070045
Dianne Hackbornc428aae2012-10-03 16:38:22 -070046 Thread thr = new Thread("ShutdownActivity") {
47 @Override
Mike Lockwoodbad80e02009-07-30 01:21:08 -070048 public void run() {
Dianne Hackbornc428aae2012-10-03 16:38:22 -070049 IPowerManager pm = IPowerManager.Stub.asInterface(
50 ServiceManager.getService(Context.POWER_SERVICE));
51 try {
52 if (mReboot) {
53 pm.reboot(mConfirm, null, false);
54 } else {
55 pm.shutdown(mConfirm, false);
56 }
57 } catch (RemoteException e) {
Mike Lockwoodb8a8a572010-09-08 07:21:07 -040058 }
Mike Lockwoodbad80e02009-07-30 01:21:08 -070059 }
Dianne Hackbornc428aae2012-10-03 16:38:22 -070060 };
61 thr.start();
62 finish();
63 // Wait for us to tell the power manager to shutdown.
64 try {
65 thr.join();
66 } catch (InterruptedException e) {
67 }
Mike Lockwoodbad80e02009-07-30 01:21:08 -070068 }
69}