/*
|
* Copyright (C) 2018 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.server.accounts;
|
|
import android.annotation.NonNull;
|
import android.os.ShellCommand;
|
import android.os.UserHandle;
|
|
import java.io.PrintWriter;
|
|
/**
|
* Shell command implementation for the account manager service
|
*/
|
final class AccountManagerServiceShellCommand extends ShellCommand {
|
final @NonNull AccountManagerService mService;
|
|
AccountManagerServiceShellCommand(@NonNull AccountManagerService service) {
|
mService = service;
|
}
|
|
@Override
|
public int onCommand(String cmd) {
|
if (cmd == null) {
|
return handleDefaultCommands(cmd);
|
}
|
switch (cmd) {
|
case "get-bind-instant-service-allowed": {
|
return runGetBindInstantServiceAllowed();
|
}
|
case "set-bind-instant-service-allowed": {
|
return runSetBindInstantServiceAllowed();
|
}
|
}
|
return -1;
|
}
|
|
private int runGetBindInstantServiceAllowed() {
|
final Integer userId = parseUserId();
|
if (userId == null) {
|
return -1;
|
}
|
getOutPrintWriter().println(Boolean.toString(
|
mService.getBindInstantServiceAllowed(userId)));
|
return 0;
|
}
|
|
private int runSetBindInstantServiceAllowed() {
|
final Integer userId = parseUserId();
|
if (userId == null) {
|
return -1;
|
}
|
final String allowed = getNextArgRequired();
|
if (allowed == null) {
|
getErrPrintWriter().println("Error: no true/false specified");
|
return -1;
|
}
|
mService.setBindInstantServiceAllowed(userId,
|
Boolean.parseBoolean(allowed));
|
return 0;
|
}
|
|
private Integer parseUserId() {
|
final String option = getNextOption();
|
if (option != null) {
|
if (option.equals("--user")) {
|
return UserHandle.parseUserArg(getNextArgRequired());
|
} else {
|
getErrPrintWriter().println("Unknown option: " + option);
|
return null;
|
}
|
}
|
return UserHandle.USER_SYSTEM;
|
}
|
|
@Override
|
public void onHelp() {
|
PrintWriter pw = getOutPrintWriter();
|
pw.println("Account manager service commands:");
|
pw.println(" help");
|
pw.println(" Print this help text.");
|
pw.println(" set-bind-instant-service-allowed [--user <USER_ID>] true|false ");
|
pw.println(" Set whether binding to services provided by instant apps is allowed.");
|
pw.println(" get-bind-instant-service-allowed [--user <USER_ID>]");
|
pw.println(" Get whether binding to services provided by instant apps is allowed.");
|
}
|
}
|