1 /*
2  * Copyright (C) 2021 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 
17 package com.android.systemui.wallet.dagger;
18 
19 import android.app.Activity;
20 import android.app.Service;
21 import android.content.Context;
22 import android.service.quickaccesswallet.QuickAccessWalletClient;
23 
24 import com.android.systemui.dagger.SysUISingleton;
25 import com.android.systemui.dagger.qualifiers.Background;
26 import com.android.systemui.qs.tileimpl.QSTileImpl;
27 import com.android.systemui.qs.tiles.QuickAccessWalletTile;
28 import com.android.systemui.wallet.controller.WalletContextualLocationsService;
29 import com.android.systemui.wallet.ui.WalletActivity;
30 
31 import dagger.Binds;
32 import dagger.Module;
33 import dagger.Provides;
34 import dagger.multibindings.ClassKey;
35 import dagger.multibindings.IntoMap;
36 import dagger.multibindings.StringKey;
37 
38 import java.util.concurrent.Executor;
39 
40 /**
41  * Module for injecting classes in Wallet.
42  */
43 @Module
44 public abstract class WalletModule {
45 
46     @Binds
47     @IntoMap
48     @ClassKey(WalletContextualLocationsService.class)
bindWalletContextualLocationsService( WalletContextualLocationsService service)49     abstract Service bindWalletContextualLocationsService(
50         WalletContextualLocationsService service);
51 
52     /** */
53     @Binds
54     @IntoMap
55     @ClassKey(WalletActivity.class)
provideWalletActivity(WalletActivity activity)56     public abstract Activity provideWalletActivity(WalletActivity activity);
57 
58     /** */
59     @SysUISingleton
60     @Provides
provideQuickAccessWalletClient(Context context, @Background Executor bgExecutor)61     public static QuickAccessWalletClient provideQuickAccessWalletClient(Context context,
62             @Background Executor bgExecutor) {
63         return QuickAccessWalletClient.create(context, bgExecutor);
64     }
65 
66     /** */
67     @Binds
68     @IntoMap
69     @StringKey(QuickAccessWalletTile.TILE_SPEC)
bindQuickAccessWalletTile( QuickAccessWalletTile quickAccessWalletTile)70     public abstract QSTileImpl<?> bindQuickAccessWalletTile(
71             QuickAccessWalletTile quickAccessWalletTile);
72 }
73