All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.com.android.server.wm.PackageConfigurationUpdaterImpl Maven / Gradle / Ivy

/*
 * Copyright (C) 2021 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.wm;

import android.content.pm.PackageManager;
import android.os.Binder;
import android.os.LocaleList;
import android.util.ArraySet;
import android.util.Slog;

import java.util.Optional;

/**
 * An implementation of {@link ActivityTaskManagerInternal.PackageConfigurationUpdater}.
 */
final class PackageConfigurationUpdaterImpl implements
        ActivityTaskManagerInternal.PackageConfigurationUpdater {
    private static final String TAG = "PackageConfigurationUpdaterImpl";
    private final Optional mPid;
    private Integer mNightMode;
    private LocaleList mLocales;
    private String mPackageName;
    private int mUserId;
    private ActivityTaskManagerService mAtm;

    PackageConfigurationUpdaterImpl(int pid, ActivityTaskManagerService atm) {
        mPid = Optional.of(pid);
        mAtm = atm;
    }

    PackageConfigurationUpdaterImpl(String packageName, int userId,
            ActivityTaskManagerService atm) {
        mPackageName = packageName;
        mUserId = userId;
        mAtm = atm;
        mPid = Optional.empty();
    }

    @Override
    public ActivityTaskManagerInternal.PackageConfigurationUpdater setNightMode(int nightMode) {
        synchronized (this) {
            mNightMode = nightMode;
        }
        return this;
    }

    @Override
    public ActivityTaskManagerInternal.PackageConfigurationUpdater
            setLocales(LocaleList locales) {
        synchronized (this) {
            mLocales = locales;
        }
        return this;
    }

    @Override
    public boolean commit() {
        synchronized (this) {
            synchronized (mAtm.mGlobalLock) {
                final long ident = Binder.clearCallingIdentity();
                try {
                    final int uid;
                    if (mPid.isPresent()) {
                        WindowProcessController wpc = mAtm.mProcessMap.getProcess(mPid.get());
                        if (wpc == null) {
                            Slog.w(TAG, "commit: Override application configuration failed: "
                                    + "cannot find pid " + mPid);
                            return false;
                        }
                        uid = wpc.mUid;
                        mUserId = wpc.mUserId;
                        mPackageName = wpc.mInfo.packageName;
                    } else {
                        uid = mAtm.getPackageManagerInternalLocked().getPackageUid(mPackageName,
                                /* flags = */ PackageManager.MATCH_ALL, mUserId);
                        if (uid < 0) {
                            Slog.w(TAG, "commit: update of application configuration failed: "
                                    + "userId or packageName not valid " + mUserId);
                            return false;
                        }
                    }
                    updateConfig(uid, mPackageName);
                    return mAtm.mPackageConfigPersister
                            .updateFromImpl(mPackageName, mUserId, this);

                } finally {
                    Binder.restoreCallingIdentity(ident);
                }
            }
        }
    }

    private void updateConfig(int uid, String packageName) {
        final ArraySet processes = mAtm.mProcessMap.getProcesses(uid);
        if (processes == null || processes.isEmpty()) return;
        LocaleList localesOverride = LocaleOverlayHelper.combineLocalesIfOverlayExists(
                mLocales, mAtm.getGlobalConfiguration().getLocales());
        for (int i = processes.size() - 1; i >= 0; i--) {
            final WindowProcessController wpc = processes.valueAt(i);
            if (wpc.mInfo.packageName.equals(packageName)) {
                wpc.applyAppSpecificConfig(mNightMode, localesOverride);
            }
            // Always inform individual activities about the update, since activities from other
            // packages may be sharing this process
            wpc.updateAppSpecificSettingsForAllActivitiesInPackage(packageName, mNightMode,
                    localesOverride);
        }
    }

    Integer getNightMode() {
        return mNightMode;
    }

    LocaleList getLocales() {
        return mLocales;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy