Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7c091e37 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Merge "Fixes switch-user -w command." into rvc-dev am: a0eed34e

Change-Id: I1d00812d0876e70642dab74f6e986a13f89fc568
parents 5a635420 a0eed34e
Loading
Loading
Loading
Loading
+14 −3
Original line number Diff line number Diff line
@@ -1763,6 +1763,12 @@ final class ActivityManagerShellCommand extends ShellCommand {
    }

    private boolean switchUserAndWaitForComplete(int userId) throws RemoteException {
        UserInfo currentUser = mInterface.getCurrentUser();
        if (currentUser != null && userId == currentUser.id) {
            // Already switched to the correct user, exit early.
            return true;
        }

        // Register switch observer.
        final CountDownLatch switchLatch = new CountDownLatch(1);
        mInterface.registerUserSwitchObserver(
@@ -1777,13 +1783,18 @@ final class ActivityManagerShellCommand extends ShellCommand {

        // Switch.
        boolean switched = mInterface.switchUser(userId);
        if (!switched) {
            // Switching failed, don't wait for the user switch observer.
            return false;
        }

        // Wait.
        try {
            switchLatch.await(USER_OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS);
            switched = switchLatch.await(USER_OPERATION_TIMEOUT_MS, TimeUnit.MILLISECONDS);
        } catch (InterruptedException e) {
            getErrPrintWriter().println("Thread interrupted unexpectedly.");
            getErrPrintWriter().println("Error: Thread interrupted unexpectedly.");
        }

        return switched;
    }

@@ -1815,7 +1826,7 @@ final class ActivityManagerShellCommand extends ShellCommand {
        if (switched) {
            return 0;
        } else {
            pw.printf("Failed to switch to user %d\n", userId);
            pw.printf("Error: Failed to switch to user %d\n", userId);
            return 1;
        }
    }