2012-05-25 09:07:52 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 The Android Open Source Project
|
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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
|
2012-05-25 09:07:52 +00:00
|
|
|
*
|
2013-01-21 12:52:57 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-05-25 09:07:52 +00:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
2013-01-21 12:52:57 +00:00
|
|
|
* 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.
|
2012-05-25 09:07:52 +00:00
|
|
|
*/
|
|
|
|
|
2013-06-23 16:11:32 +00:00
|
|
|
package com.android.inputmethod.latin.utils;
|
2012-05-25 09:07:52 +00:00
|
|
|
|
|
|
|
import android.content.Context;
|
2013-05-15 07:49:15 +00:00
|
|
|
import android.content.pm.PackageInfo;
|
2012-05-25 09:07:52 +00:00
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.os.AsyncTask;
|
2012-05-25 09:19:19 +00:00
|
|
|
import android.util.LruCache;
|
2012-05-25 09:07:52 +00:00
|
|
|
|
2013-12-20 06:00:44 +00:00
|
|
|
import com.android.inputmethod.compat.AppWorkaroundsUtils;
|
|
|
|
|
2013-05-15 07:49:15 +00:00
|
|
|
public final class TargetPackageInfoGetterTask extends
|
|
|
|
AsyncTask<String, Void, PackageInfo> {
|
2012-05-25 09:19:19 +00:00
|
|
|
private static final int MAX_CACHE_ENTRIES = 64; // arbitrary
|
2014-05-23 11:18:17 +00:00
|
|
|
private static final LruCache<String, PackageInfo> sCache = new LruCache<>(MAX_CACHE_ENTRIES);
|
2012-05-25 09:19:19 +00:00
|
|
|
|
2013-05-15 07:49:15 +00:00
|
|
|
public static PackageInfo getCachedPackageInfo(final String packageName) {
|
2012-05-31 10:33:39 +00:00
|
|
|
if (null == packageName) return null;
|
2012-05-25 09:19:19 +00:00
|
|
|
return sCache.get(packageName);
|
|
|
|
}
|
2012-09-27 09:16:16 +00:00
|
|
|
|
2013-05-15 07:49:15 +00:00
|
|
|
public static void removeCachedPackageInfo(final String packageName) {
|
2012-05-25 09:39:27 +00:00
|
|
|
sCache.remove(packageName);
|
|
|
|
}
|
2012-05-25 09:19:19 +00:00
|
|
|
|
2012-05-25 09:07:52 +00:00
|
|
|
private Context mContext;
|
2013-12-20 06:00:44 +00:00
|
|
|
private final AsyncResultHolder<AppWorkaroundsUtils> mResult;
|
2012-05-25 09:07:52 +00:00
|
|
|
|
2013-05-15 07:49:15 +00:00
|
|
|
public TargetPackageInfoGetterTask(final Context context,
|
2013-12-20 06:00:44 +00:00
|
|
|
final AsyncResultHolder<AppWorkaroundsUtils> result) {
|
2012-05-25 09:07:52 +00:00
|
|
|
mContext = context;
|
2013-12-20 06:00:44 +00:00
|
|
|
mResult = result;
|
2012-05-25 09:07:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-05-15 07:49:15 +00:00
|
|
|
protected PackageInfo doInBackground(final String... packageName) {
|
2012-05-25 09:07:52 +00:00
|
|
|
final PackageManager pm = mContext.getPackageManager();
|
|
|
|
mContext = null; // Bazooka-powered anti-leak device
|
|
|
|
try {
|
2013-05-15 07:49:15 +00:00
|
|
|
final PackageInfo packageInfo = pm.getPackageInfo(packageName[0], 0 /* flags */);
|
|
|
|
sCache.put(packageName[0], packageInfo);
|
|
|
|
return packageInfo;
|
2012-05-25 09:07:52 +00:00
|
|
|
} catch (android.content.pm.PackageManager.NameNotFoundException e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2013-05-15 07:49:15 +00:00
|
|
|
protected void onPostExecute(final PackageInfo info) {
|
2013-12-20 06:00:44 +00:00
|
|
|
mResult.set(new AppWorkaroundsUtils(info));
|
2012-05-25 09:07:52 +00:00
|
|
|
}
|
|
|
|
}
|