Home | History | Annotate | Download | only in policy
      1 /*
      2  * Copyright (C) 2018 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 package com.android.server.policy;
     17 
     18 import android.content.Context;
     19 import android.os.UserManager;
     20 import com.android.internal.globalactions.LongPressAction;
     21 import com.android.internal.globalactions.SinglePressAction;
     22 import com.android.internal.R;
     23 import com.android.server.policy.WindowManagerPolicy;
     24 
     25 public final class RestartAction extends SinglePressAction implements LongPressAction {
     26     private final Context mContext;
     27     private final WindowManagerPolicy.WindowManagerFuncs mWindowManagerFuncs;
     28 
     29     public RestartAction(Context context,
     30             WindowManagerPolicy.WindowManagerFuncs windowManagerFuncs) {
     31         super(R.drawable.ic_restart, R.string.global_action_restart);
     32         mContext = context;
     33         mWindowManagerFuncs = windowManagerFuncs;
     34     }
     35 
     36     @Override
     37     public boolean onLongPress() {
     38         UserManager um = mContext.getSystemService(UserManager.class);
     39         if (!um.hasUserRestriction(UserManager.DISALLOW_SAFE_BOOT)) {
     40             mWindowManagerFuncs.rebootSafeMode(true);
     41             return true;
     42         }
     43         return false;
     44     }
     45 
     46     @Override
     47     public boolean showDuringKeyguard() {
     48         return true;
     49     }
     50 
     51     @Override
     52     public boolean showBeforeProvisioning() {
     53         return true;
     54     }
     55 
     56     @Override
     57     public void onPress() {
     58         mWindowManagerFuncs.reboot(false /* confirm */);
     59     }
     60 }
     61