| /* |
| * Copyright (C) 2013 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.documentsui; |
| |
| import android.annotation.SuppressLint; |
| import android.app.ActivityManager; |
| import android.app.Application; |
| import android.content.BroadcastReceiver; |
| import android.content.ContentProviderClient; |
| import android.content.ContentResolver; |
| import android.content.Context; |
| import android.content.Intent; |
| import android.content.IntentFilter; |
| import android.content.om.OverlayManager; |
| import android.net.Uri; |
| import android.os.RemoteException; |
| import android.text.format.DateUtils; |
| import android.util.Log; |
| |
| import androidx.localbroadcastmanager.content.LocalBroadcastManager; |
| |
| import com.android.documentsui.base.Lookup; |
| import com.android.documentsui.base.UserId; |
| import com.android.documentsui.clipping.ClipStorage; |
| import com.android.documentsui.clipping.ClipStore; |
| import com.android.documentsui.clipping.DocumentClipper; |
| import com.android.documentsui.queries.SearchHistoryManager; |
| import com.android.documentsui.roots.ProvidersCache; |
| import com.android.documentsui.theme.ThemeOverlayManager; |
| |
| import com.google.common.collect.Lists; |
| |
| import java.util.List; |
| |
| public class DocumentsApplication extends Application { |
| private static final String TAG = "DocumentsApplication"; |
| private static final long PROVIDER_ANR_TIMEOUT = 20 * DateUtils.SECOND_IN_MILLIS; |
| |
| private static final List<String> PACKAGE_FILTER_ACTIONS = Lists.newArrayList( |
| Intent.ACTION_PACKAGE_ADDED, |
| Intent.ACTION_PACKAGE_CHANGED, |
| Intent.ACTION_PACKAGE_REMOVED, |
| Intent.ACTION_PACKAGE_DATA_CLEARED |
| ); |
| |
| private static final List<String> MANAGED_PROFILE_FILTER_ACTIONS = Lists.newArrayList( |
| Intent.ACTION_MANAGED_PROFILE_ADDED, |
| Intent.ACTION_MANAGED_PROFILE_REMOVED, |
| Intent.ACTION_MANAGED_PROFILE_UNLOCKED, |
| Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE |
| ); |
| |
| private ProvidersCache mProviders; |
| private ThumbnailCache mThumbnailCache; |
| private ClipStorage mClipStore; |
| private DocumentClipper mClipper; |
| private DragAndDropManager mDragAndDropManager; |
| private UserIdManager mUserIdManager; |
| private Lookup<String, String> mFileTypeLookup; |
| |
| public static ProvidersCache getProvidersCache(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mProviders; |
| } |
| |
| public static ThumbnailCache getThumbnailCache(Context context) { |
| final DocumentsApplication app = (DocumentsApplication) context.getApplicationContext(); |
| return app.mThumbnailCache; |
| } |
| |
| public static ContentProviderClient acquireUnstableProviderOrThrow( |
| ContentResolver resolver, String authority) throws RemoteException { |
| final ContentProviderClient client = resolver.acquireUnstableContentProviderClient( |
| authority); |
| if (client == null) { |
| throw new RemoteException("Failed to acquire provider for " + authority); |
| } |
| client.setDetectNotResponding(PROVIDER_ANR_TIMEOUT); |
| return client; |
| } |
| |
| public static DocumentClipper getDocumentClipper(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mClipper; |
| } |
| |
| public static ClipStore getClipStore(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mClipStore; |
| } |
| |
| public static UserIdManager getUserIdManager(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mUserIdManager; |
| } |
| |
| public static DragAndDropManager getDragAndDropManager(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mDragAndDropManager; |
| } |
| |
| public static Lookup<String, String> getFileTypeLookup(Context context) { |
| return ((DocumentsApplication) context.getApplicationContext()).mFileTypeLookup; |
| } |
| |
| private void onApplyOverlayFinish(boolean result) { |
| Log.d(TAG, "OverlayManager.setEnabled() result: " + result); |
| } |
| |
| @SuppressLint("NewApi") // OverlayManager.class is @hide |
| @Override |
| public void onCreate() { |
| super.onCreate(); |
| |
| final ActivityManager am = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE); |
| final OverlayManager om = getSystemService(OverlayManager.class); |
| final int memoryClassBytes = am.getMemoryClass() * 1024 * 1024; |
| |
| if (om != null) { |
| new ThemeOverlayManager(om, getPackageName()).applyOverlays(this, true, |
| this::onApplyOverlayFinish); |
| } else { |
| Log.w(TAG, "Can't obtain OverlayManager from System Service!"); |
| } |
| |
| mUserIdManager = UserIdManager.create(this); |
| |
| mProviders = new ProvidersCache(this, mUserIdManager); |
| mProviders.updateAsync(/* forceRefreshAll= */ false, /* callback= */ null); |
| |
| mThumbnailCache = new ThumbnailCache(memoryClassBytes / 4); |
| |
| mClipStore = new ClipStorage( |
| ClipStorage.prepareStorage(getCacheDir()), |
| getSharedPreferences(ClipStorage.PREF_NAME, 0)); |
| mClipper = DocumentClipper.create(this, mClipStore); |
| |
| mDragAndDropManager = DragAndDropManager.create(this, mClipper); |
| |
| mFileTypeLookup = new FileTypeMap(this); |
| |
| final IntentFilter packageFilter = new IntentFilter(); |
| for (String packageAction : PACKAGE_FILTER_ACTIONS) { |
| packageFilter.addAction(packageAction); |
| } |
| packageFilter.addDataScheme("package"); |
| registerReceiver(mCacheReceiver, packageFilter); |
| |
| final IntentFilter localeFilter = new IntentFilter(); |
| localeFilter.addAction(Intent.ACTION_LOCALE_CHANGED); |
| registerReceiver(mCacheReceiver, localeFilter); |
| |
| final IntentFilter managedProfileFilter = new IntentFilter(); |
| for (String managedProfileAction : MANAGED_PROFILE_FILTER_ACTIONS) { |
| managedProfileFilter.addAction(managedProfileAction); |
| } |
| registerReceiver(mCacheReceiver, managedProfileFilter); |
| |
| SearchHistoryManager.getInstance(getApplicationContext()); |
| } |
| |
| @Override |
| public void onTrimMemory(int level) { |
| super.onTrimMemory(level); |
| |
| mThumbnailCache.onTrimMemory(level); |
| } |
| |
| private BroadcastReceiver mCacheReceiver = new BroadcastReceiver() { |
| @Override |
| public void onReceive(Context context, Intent intent) { |
| final Uri data = intent.getData(); |
| final String action = intent.getAction(); |
| if (PACKAGE_FILTER_ACTIONS.contains(action) && data != null) { |
| final String packageName = data.getSchemeSpecificPart(); |
| mProviders.updatePackageAsync(UserId.DEFAULT_USER, packageName); |
| } else if (MANAGED_PROFILE_FILTER_ACTIONS.contains(action)) { |
| // After we have reloaded roots. Resend the broadcast locally so the other |
| // components can reload properly after roots are updated. |
| mProviders.updateAsync(/* forceRefreshAll= */ true, |
| () -> LocalBroadcastManager.getInstance(context).sendBroadcast(intent)); |
| } else { |
| mProviders.updateAsync(/* forceRefreshAll= */ true, /* callback= */ null); |
| } |
| } |
| }; |
| } |