/* * 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.tv.modules; import android.content.Context; import com.android.tv.MainActivity; import com.android.tv.SetupPassthroughActivity; import com.android.tv.TvApplication; import com.android.tv.common.buildtype.BuildTypeModule; import com.android.tv.common.concurrent.NamedThreadFactory; import com.android.tv.common.dagger.ApplicationModule; import com.android.tv.common.dagger.annotations.ApplicationContext; import com.android.tv.data.ChannelDataManager; import com.android.tv.data.ChannelDataManagerFactory; import com.android.tv.dialog.PinDialogFragment; import com.android.tv.dvr.ui.playback.DvrPlaybackActivity; import com.android.tv.onboarding.OnboardingActivity; import com.android.tv.ui.DetailsActivity; import com.android.tv.util.AsyncDbTask; import com.android.tv.util.TvInputManagerHelper; import dagger.Module; import dagger.Provides; import dagger.android.ContributesAndroidInjector; import com.android.tv.common.flags.LegacyFlags; import java.util.concurrent.Executor; import java.util.concurrent.Executors; import javax.inject.Singleton; /** Dagger module for {@link TvApplication}. */ @Module( includes = { ApplicationModule.class, BuildTypeModule.class, DetailsActivity.Module.class, DvrPlaybackActivity.Module.class, MainActivity.Module.class, OnboardingActivity.Module.class, SetupPassthroughActivity.Module.class, TvSingletonsModule.class, }) public abstract class TvApplicationModule { private static final NamedThreadFactory THREAD_FACTORY = new NamedThreadFactory("tv-app-db"); @Provides @AsyncDbTask.DbExecutor @Singleton static Executor providesDbExecutor() { return Executors.newSingleThreadExecutor(THREAD_FACTORY); } @Provides @Singleton static TvInputManagerHelper providesTvInputManagerHelper( @ApplicationContext Context context, LegacyFlags legacyFlags) { TvInputManagerHelper tvInputManagerHelper = new TvInputManagerHelper(context, legacyFlags); tvInputManagerHelper.start(); // Since this is injected as a Lazy in the application start is delayed. return tvInputManagerHelper; } @Provides @Singleton static ChannelDataManager providesChannelDataManager(ChannelDataManagerFactory factory) { ChannelDataManager channelDataManager = factory.create(); channelDataManager.start(); // Since this is injected as a Lazy in the application start is delayed. return channelDataManager; } @ContributesAndroidInjector abstract PinDialogFragment contributesPinDialogFragment(); }