Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 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.contacts; |
| 18 | |
| 19 | import android.app.Application; |
Makoto Onuki | 7c91de1 | 2011-11-02 15:43:20 -0700 | [diff] [blame] | 20 | import android.app.FragmentManager; |
| 21 | import android.app.LoaderManager; |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 22 | import android.content.ContentResolver; |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 23 | import android.content.ContentUris; |
Dmitri Plotnikov | 3b7dedd | 2010-11-29 14:46:10 -0800 | [diff] [blame] | 24 | import android.content.Context; |
Dmitri Plotnikov | 072d911 | 2011-01-09 15:48:11 -0800 | [diff] [blame] | 25 | import android.content.SharedPreferences; |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 26 | import android.os.AsyncTask; |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 27 | import android.os.StrictMode; |
Dmitri Plotnikov | 3b7dedd | 2010-11-29 14:46:10 -0800 | [diff] [blame] | 28 | import android.preference.PreferenceManager; |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 29 | import android.provider.ContactsContract.Contacts; |
Makoto Onuki | 49627cc | 2011-08-28 13:56:48 -0700 | [diff] [blame] | 30 | import android.util.Log; |
Dmitri Plotnikov | 3b7dedd | 2010-11-29 14:46:10 -0800 | [diff] [blame] | 31 | |
Yorke Lee | 7039633 | 2014-05-28 12:16:35 -0700 | [diff] [blame] | 32 | import com.android.contacts.common.testing.InjectedServices; |
Chiao Cheng | d9eab4d | 2012-11-14 18:24:25 -0800 | [diff] [blame] | 33 | import com.android.contacts.common.util.Constants; |
Brian Attwell | a3e498a | 2014-10-27 10:46:24 -0700 | [diff] [blame] | 34 | import com.android.contacts.commonbind.analytics.AnalyticsUtil; |
| 35 | |
Tingting Wang | 9deead6 | 2016-03-28 10:08:08 -0700 | [diff] [blame^] | 36 | import com.android.contacts.common.testing.NeededForTesting; |
Chiao Cheng | e0b2f1e | 2012-06-12 13:07:56 -0700 | [diff] [blame] | 37 | import com.google.common.annotations.VisibleForTesting; |
| 38 | |
Tingting Wang | 9deead6 | 2016-03-28 10:08:08 -0700 | [diff] [blame^] | 39 | @NeededForTesting |
Walter Jang | 457f865 | 2016-01-08 09:47:24 -0800 | [diff] [blame] | 40 | public class ContactsApplication extends Application { |
Makoto Onuki | 7c91de1 | 2011-11-02 15:43:20 -0700 | [diff] [blame] | 41 | private static final boolean ENABLE_LOADER_LOG = false; // Don't submit with true |
| 42 | private static final boolean ENABLE_FRAGMENT_LOG = false; // Don't submit with true |
| 43 | |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 44 | private static InjectedServices sInjectedServices; |
Chiao Cheng | d9eab4d | 2012-11-14 18:24:25 -0800 | [diff] [blame] | 45 | /** |
| 46 | * Log tag for enabling/disabling StrictMode violation log. |
| 47 | * To enable: adb shell setprop log.tag.ContactsStrictMode DEBUG |
| 48 | */ |
| 49 | public static final String STRICT_MODE_TAG = "ContactsStrictMode"; |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 50 | |
| 51 | /** |
| 52 | * Overrides the system services with mocks for testing. |
| 53 | */ |
Flavio Lerda | 37a2684 | 2011-06-27 11:36:52 +0100 | [diff] [blame] | 54 | @VisibleForTesting |
Dmitri Plotnikov | 6f667b5 | 2011-01-09 12:53:13 -0800 | [diff] [blame] | 55 | public static void injectServices(InjectedServices services) { |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 56 | sInjectedServices = services; |
| 57 | } |
| 58 | |
Dmitri Plotnikov | 1173ae2 | 2011-01-09 14:00:39 -0800 | [diff] [blame] | 59 | public static InjectedServices getInjectedServices() { |
| 60 | return sInjectedServices; |
| 61 | } |
| 62 | |
Dmitri Plotnikov | 43fd1e8 | 2011-01-09 11:29:39 -0800 | [diff] [blame] | 63 | @Override |
| 64 | public ContentResolver getContentResolver() { |
| 65 | if (sInjectedServices != null) { |
| 66 | ContentResolver resolver = sInjectedServices.getContentResolver(); |
| 67 | if (resolver != null) { |
| 68 | return resolver; |
| 69 | } |
| 70 | } |
| 71 | return super.getContentResolver(); |
| 72 | } |
| 73 | |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 74 | @Override |
Dmitri Plotnikov | 072d911 | 2011-01-09 15:48:11 -0800 | [diff] [blame] | 75 | public SharedPreferences getSharedPreferences(String name, int mode) { |
| 76 | if (sInjectedServices != null) { |
| 77 | SharedPreferences prefs = sInjectedServices.getSharedPreferences(); |
| 78 | if (prefs != null) { |
| 79 | return prefs; |
| 80 | } |
| 81 | } |
| 82 | |
| 83 | return super.getSharedPreferences(name, mode); |
| 84 | } |
| 85 | |
| 86 | @Override |
Dmitri Plotnikov | 6f667b5 | 2011-01-09 12:53:13 -0800 | [diff] [blame] | 87 | public Object getSystemService(String name) { |
| 88 | if (sInjectedServices != null) { |
| 89 | Object service = sInjectedServices.getSystemService(name); |
| 90 | if (service != null) { |
| 91 | return service; |
| 92 | } |
| 93 | } |
| 94 | |
Dmitri Plotnikov | 6f667b5 | 2011-01-09 12:53:13 -0800 | [diff] [blame] | 95 | return super.getSystemService(name); |
| 96 | } |
| 97 | |
| 98 | @Override |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 99 | public void onCreate() { |
| 100 | super.onCreate(); |
| 101 | |
Makoto Onuki | 49627cc | 2011-08-28 13:56:48 -0700 | [diff] [blame] | 102 | if (Log.isLoggable(Constants.PERFORMANCE_TAG, Log.DEBUG)) { |
| 103 | Log.d(Constants.PERFORMANCE_TAG, "ContactsApplication.onCreate start"); |
| 104 | } |
| 105 | |
Makoto Onuki | 7c91de1 | 2011-11-02 15:43:20 -0700 | [diff] [blame] | 106 | if (ENABLE_FRAGMENT_LOG) FragmentManager.enableDebugLogging(true); |
| 107 | if (ENABLE_LOADER_LOG) LoaderManager.enableDebugLogging(true); |
Dmitri Plotnikov | 3b7dedd | 2010-11-29 14:46:10 -0800 | [diff] [blame] | 108 | |
Chiao Cheng | d9eab4d | 2012-11-14 18:24:25 -0800 | [diff] [blame] | 109 | if (Log.isLoggable(STRICT_MODE_TAG, Log.DEBUG)) { |
Daisuke Miyakawa | b5c9f63 | 2011-09-21 16:05:18 -0700 | [diff] [blame] | 110 | StrictMode.setThreadPolicy( |
| 111 | new StrictMode.ThreadPolicy.Builder().detectAll().penaltyLog().build()); |
| 112 | } |
Makoto Onuki | 49627cc | 2011-08-28 13:56:48 -0700 | [diff] [blame] | 113 | |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 114 | // Perform the initialization that doesn't have to finish immediately. |
| 115 | // We use an async task here just to avoid creating a new thread. |
| 116 | (new DelayedInitializer()).execute(); |
| 117 | |
Makoto Onuki | 49627cc | 2011-08-28 13:56:48 -0700 | [diff] [blame] | 118 | if (Log.isLoggable(Constants.PERFORMANCE_TAG, Log.DEBUG)) { |
| 119 | Log.d(Constants.PERFORMANCE_TAG, "ContactsApplication.onCreate finish"); |
| 120 | } |
Brian Attwell | a3e498a | 2014-10-27 10:46:24 -0700 | [diff] [blame] | 121 | |
| 122 | AnalyticsUtil.initialize(this); |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 123 | } |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 124 | |
| 125 | private class DelayedInitializer extends AsyncTask<Void, Void, Void> { |
| 126 | @Override |
| 127 | protected Void doInBackground(Void... params) { |
| 128 | final Context context = ContactsApplication.this; |
| 129 | |
Walter Jang | dccfa94 | 2015-07-23 15:08:00 -0700 | [diff] [blame] | 130 | // Warm up the preferences and the contacts provider. We delay initialization |
| 131 | // of the account type manager because we may not have the contacts group permission |
| 132 | // (and thus not have the get accounts permission). |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 133 | PreferenceManager.getDefaultSharedPreferences(context); |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 134 | getContentResolver().getType(ContentUris.withAppendedId(Contacts.CONTENT_URI, 1)); |
Walter Jang | dccfa94 | 2015-07-23 15:08:00 -0700 | [diff] [blame] | 135 | |
Makoto Onuki | fc0a89f | 2012-05-14 17:37:34 -0700 | [diff] [blame] | 136 | return null; |
| 137 | } |
| 138 | |
| 139 | public void execute() { |
| 140 | executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, |
| 141 | (Void[]) null); |
| 142 | } |
| 143 | } |
Dmitri Plotnikov | f049ff0 | 2010-11-29 10:15:24 -0800 | [diff] [blame] | 144 | } |