summaryrefslogtreecommitdiff
path: root/packages/SystemUI/src/com/android/systemui/user/UserModule.java
blob: b2bf9727b5347b30f317ef8e70c44534f405791d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
 * Copyright (C) 2020 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.systemui.user;

import android.os.UserHandle;

import com.android.settingslib.users.EditUserInfoController;
import com.android.systemui.user.data.repository.UserRepositoryModule;
import com.android.systemui.user.domain.interactor.HeadlessSystemUserModeModule;
import com.android.systemui.user.ui.dialog.UserDialogModule;

import dagger.Module;
import dagger.Provides;

/**
 * Dagger module for User related classes.
 */
@Module(
        includes = {
                UserDialogModule.class,
                UserRepositoryModule.class,
                HeadlessSystemUserModeModule.class,
        }
)
public abstract class UserModule {

    private static final String FILE_PROVIDER_AUTHORITY = "com.android.systemui.fileprovider";

    @Provides
    public static EditUserInfoController provideEditUserInfoController() {
        return new EditUserInfoController(FILE_PROVIDER_AUTHORITY);
    }

    /**
     * Provides the {@link UserHandle} for the user associated with this System UI process.
     *
     * <p>Note that this is static and unchanging for the life-time of the process we are running
     * in. It can be <i>different</i> from the user that is the currently-selected user, which may
     * be associated with a different System UI process.
     *
     * <p>For example, the System UI process which creates all the windows and renders UI is always
     * the one associated with the primary user on the device. However, if the user is switched to
     * another, non-primary user (for example user "X"), then a secondary System UI process will be
     * spawned. While the original primary user process continues to be the only one rendering UI,
     * the new system UI process may be used for things like file or content access.
     */
    @Provides
    public static UserHandle provideUserHandle() {
        return new UserHandle(UserHandle.myUserId());
    }
}