2013-02-07 14:01:49 -05:00
|
|
|
package com.fsck.k9.activity.misc;
|
|
|
|
|
|
|
|
import java.io.FileNotFoundException;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.lang.ref.WeakReference;
|
|
|
|
import java.util.concurrent.RejectedExecutionException;
|
2013-07-21 10:58:38 -04:00
|
|
|
import java.util.regex.Matcher;
|
|
|
|
import java.util.regex.Pattern;
|
2013-02-07 14:01:49 -05:00
|
|
|
|
|
|
|
import android.app.ActivityManager;
|
|
|
|
import android.content.ContentResolver;
|
|
|
|
import android.content.Context;
|
|
|
|
import android.content.res.Resources;
|
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
2013-07-21 10:58:38 -04:00
|
|
|
import android.graphics.Canvas;
|
|
|
|
import android.graphics.Paint;
|
|
|
|
import android.graphics.Rect;
|
2013-02-07 14:01:49 -05:00
|
|
|
import android.graphics.drawable.BitmapDrawable;
|
|
|
|
import android.graphics.drawable.Drawable;
|
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.AsyncTask;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.support.v4.util.LruCache;
|
|
|
|
import android.widget.QuickContactBadge;
|
|
|
|
import com.fsck.k9.helper.Contacts;
|
2013-07-21 10:58:38 -04:00
|
|
|
import com.fsck.k9.mail.Address;
|
2013-02-07 14:01:49 -05:00
|
|
|
|
|
|
|
public class ContactPictureLoader {
|
2013-02-08 12:04:38 -05:00
|
|
|
/**
|
|
|
|
* Resize the pictures to the following value (device-independent pixels).
|
|
|
|
*/
|
2013-02-13 13:43:07 -05:00
|
|
|
private static final int PICTURE_SIZE = 40;
|
2013-02-08 12:04:38 -05:00
|
|
|
|
2013-02-07 14:01:49 -05:00
|
|
|
private ContentResolver mContentResolver;
|
|
|
|
private Resources mResources;
|
|
|
|
private Contacts mContactsHelper;
|
2013-02-08 12:04:38 -05:00
|
|
|
private int mPictureSizeInPx;
|
2013-02-07 14:01:49 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LRU cache of contact pictures.
|
|
|
|
*/
|
|
|
|
private final LruCache<String, Bitmap> mBitmapCache;
|
|
|
|
|
|
|
|
/**
|
2013-07-23 18:49:58 -04:00
|
|
|
* @see <a href="http://developer.android.com/design/style/color.html">Color palette used</a>
|
2013-02-07 14:01:49 -05:00
|
|
|
*/
|
2013-07-23 15:46:03 -04:00
|
|
|
private final static int CONTACT_DUMMY_COLORS_ARGB[] = {
|
2013-07-23 18:49:58 -04:00
|
|
|
0xff33B5E5,
|
|
|
|
0xffAA66CC,
|
|
|
|
0xff99CC00,
|
|
|
|
0xffFFBB33,
|
|
|
|
0xffFF4444,
|
|
|
|
0xff0099CC,
|
|
|
|
0xff9933CC,
|
|
|
|
0xff669900,
|
|
|
|
0xffFF8800,
|
|
|
|
0xffCC0000
|
2013-07-23 15:46:03 -04:00
|
|
|
};
|
2013-02-07 14:01:49 -05:00
|
|
|
|
|
|
|
public ContactPictureLoader(Context context, int defaultPictureResource) {
|
|
|
|
Context appContext = context.getApplicationContext();
|
|
|
|
mContentResolver = appContext.getContentResolver();
|
|
|
|
mResources = appContext.getResources();
|
|
|
|
mContactsHelper = Contacts.getInstance(appContext);
|
|
|
|
|
2013-02-08 12:04:38 -05:00
|
|
|
float scale = mResources.getDisplayMetrics().density;
|
|
|
|
mPictureSizeInPx = (int) (PICTURE_SIZE * scale);
|
|
|
|
|
2013-02-07 14:01:49 -05:00
|
|
|
ActivityManager activityManager =
|
|
|
|
(ActivityManager) appContext.getSystemService(Context.ACTIVITY_SERVICE);
|
|
|
|
int memClass = activityManager.getMemoryClass();
|
|
|
|
|
|
|
|
// Use 1/16th of the available memory for this memory cache.
|
|
|
|
final int cacheSize = 1024 * 1024 * memClass / 16;
|
|
|
|
|
|
|
|
mBitmapCache = new LruCache<String, Bitmap>(cacheSize) {
|
|
|
|
@Override
|
|
|
|
protected int sizeOf(String key, Bitmap bitmap) {
|
|
|
|
// The cache size will be measured in bytes rather than number of items.
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB_MR1) {
|
|
|
|
return bitmap.getByteCount();
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitmap.getRowBytes() * bitmap.getHeight();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a contact picture and display it using the supplied {@link QuickContactBadge} instance.
|
|
|
|
*
|
|
|
|
* <p>
|
|
|
|
* If the supplied email address doesn't belong to any of our contacts, the default picture is
|
|
|
|
* returned. If the picture is found in the cache, it is displayed in the
|
|
|
|
* {@code QuickContactBadge} immediately. Otherwise a {@link ContactPictureRetrievalTask} is
|
|
|
|
* started to try to load the contact picture in a background thread. The picture is then
|
|
|
|
* stored in the bitmap cache or the email address is stored in the "unknown contacts cache" if
|
|
|
|
* it doesn't belong to one of our contacts.
|
|
|
|
* </p>
|
|
|
|
*
|
|
|
|
* @param email
|
|
|
|
* The email address that is used to search the contacts database.
|
|
|
|
* @param badge
|
|
|
|
* The {@code QuickContactBadge} instance to receive the picture.
|
|
|
|
*
|
|
|
|
* @see #mBitmapCache
|
|
|
|
* @see #mUnknownContactsCache
|
|
|
|
*/
|
2013-07-21 10:58:38 -04:00
|
|
|
public void loadContactPicture(Address address, QuickContactBadge badge) {
|
2013-07-21 10:58:38 -04:00
|
|
|
String email = address.getAddress();
|
2013-02-07 14:01:49 -05:00
|
|
|
Bitmap bitmap = getBitmapFromCache(email);
|
|
|
|
if (bitmap != null) {
|
|
|
|
// The picture was found in the bitmap cache
|
|
|
|
badge.setImageBitmap(bitmap);
|
|
|
|
} else if (cancelPotentialWork(email, badge)) {
|
|
|
|
// Query the contacts database in a background thread and try to load the contact
|
|
|
|
// picture, if there is one.
|
|
|
|
ContactPictureRetrievalTask task = new ContactPictureRetrievalTask(badge);
|
2013-07-21 10:58:38 -04:00
|
|
|
AsyncDrawable asyncDrawable = new AsyncDrawable(mResources, calculateFallbackBitmap(address), task);
|
2013-02-07 14:01:49 -05:00
|
|
|
badge.setImageDrawable(asyncDrawable);
|
|
|
|
try {
|
2013-07-21 10:58:38 -04:00
|
|
|
task.exec(address.getAddress(), address.getPersonal());
|
2013-02-07 14:01:49 -05:00
|
|
|
} catch (RejectedExecutionException e) {
|
|
|
|
// We flooded the thread pool queue... fall back to using the default picture
|
2013-07-21 10:58:38 -04:00
|
|
|
badge.setImageBitmap(calculateFallbackBitmap(address));
|
2013-02-07 14:01:49 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-21 10:58:38 -04:00
|
|
|
|
2013-07-21 10:58:38 -04:00
|
|
|
private int calcUnknownContactColor(Address address) {
|
2013-07-23 15:46:03 -04:00
|
|
|
int val = address.getAddress().toLowerCase().hashCode();
|
2013-07-23 17:27:44 -04:00
|
|
|
int rgb = CONTACT_DUMMY_COLORS_ARGB[Math.abs(val) % CONTACT_DUMMY_COLORS_ARGB.length];
|
2013-07-21 10:58:38 -04:00
|
|
|
return rgb;
|
2013-07-21 10:58:38 -04:00
|
|
|
}
|
2013-07-21 10:58:38 -04:00
|
|
|
|
2013-07-21 10:58:38 -04:00
|
|
|
private char calcUnknownContactLetter(Address address) {
|
2013-07-21 10:58:38 -04:00
|
|
|
String letter = "";
|
|
|
|
Pattern p = Pattern.compile("[^a-zA-Z]*([a-zA-Z]).*");
|
|
|
|
String str = address.getPersonal() != null ? address.getPersonal() : address.getAddress();
|
|
|
|
Matcher m = p.matcher(str);
|
|
|
|
if (m.matches()) {
|
|
|
|
letter = m.group(1).toUpperCase();
|
|
|
|
}
|
|
|
|
|
2013-07-23 19:07:12 -04:00
|
|
|
return letter.length() == 0 ? '?' : letter.charAt(0);
|
2013-07-21 10:58:38 -04:00
|
|
|
}
|
2013-07-21 10:58:38 -04:00
|
|
|
|
2013-07-21 10:58:38 -04:00
|
|
|
/** Calculates a bitmap with a color and a capital letter for
|
|
|
|
* contacts without picture.
|
|
|
|
* */
|
|
|
|
private Bitmap calculateFallbackBitmap(Address address) {
|
2013-07-21 10:58:38 -04:00
|
|
|
Bitmap result = Bitmap.createBitmap(mPictureSizeInPx, mPictureSizeInPx, Bitmap.Config.ARGB_8888);
|
|
|
|
|
|
|
|
Canvas canvas = new Canvas(result);
|
|
|
|
|
|
|
|
int rgb = calcUnknownContactColor(address);
|
|
|
|
result.eraseColor(rgb);
|
|
|
|
|
|
|
|
String letter = Character.toString(calcUnknownContactLetter(address));
|
|
|
|
|
|
|
|
Paint paint = new Paint();
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setStyle(Paint.Style.FILL);
|
|
|
|
paint.setARGB(255, 255, 255, 255);
|
2013-07-23 18:32:27 -04:00
|
|
|
paint.setTextSize(mPictureSizeInPx * 3 / 4); // just scale this down a bit
|
2013-07-21 10:58:38 -04:00
|
|
|
Rect rect = new Rect();
|
|
|
|
paint.getTextBounds(letter, 0, 1, rect);
|
|
|
|
float width = paint.measureText(letter);
|
|
|
|
canvas.drawText(letter,
|
|
|
|
mPictureSizeInPx/2f-width/2f,
|
|
|
|
mPictureSizeInPx/2f+rect.height()/2f, paint);
|
|
|
|
|
|
|
|
return result;
|
2013-07-21 10:58:38 -04:00
|
|
|
}
|
|
|
|
|
2013-02-07 14:01:49 -05:00
|
|
|
private void addBitmapToCache(String key, Bitmap bitmap) {
|
|
|
|
if (getBitmapFromCache(key) == null) {
|
|
|
|
mBitmapCache.put(key, bitmap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private Bitmap getBitmapFromCache(String key) {
|
|
|
|
return mBitmapCache.get(key);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if a {@code ContactPictureRetrievalTask} was already created to load the contact
|
|
|
|
* picture for the supplied email address.
|
|
|
|
*
|
|
|
|
* @param email
|
|
|
|
* The email address to check the contacts database for.
|
|
|
|
* @param badge
|
|
|
|
* The {@code QuickContactBadge} instance that will receive the picture.
|
|
|
|
*
|
|
|
|
* @return {@code true}, if the contact picture should be loaded in a background thread.
|
|
|
|
* {@code false}, if another {@link ContactPictureRetrievalTask} was already scheduled
|
|
|
|
* to load that contact picture.
|
|
|
|
*/
|
|
|
|
private boolean cancelPotentialWork(String email, QuickContactBadge badge) {
|
|
|
|
final ContactPictureRetrievalTask task = getContactPictureRetrievalTask(badge);
|
|
|
|
|
|
|
|
if (task != null && email != null) {
|
2013-07-21 10:58:38 -04:00
|
|
|
String emailFromTask = task.getAddress().getAddress();
|
2013-02-07 14:01:49 -05:00
|
|
|
if (!email.equals(emailFromTask)) {
|
|
|
|
// Cancel previous task
|
|
|
|
task.cancel(true);
|
|
|
|
} else {
|
|
|
|
// The same work is already in progress
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// No task associated with the QuickContactBadge, or an existing task was cancelled
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private ContactPictureRetrievalTask getContactPictureRetrievalTask(QuickContactBadge badge) {
|
|
|
|
if (badge != null) {
|
|
|
|
Drawable drawable = badge.getDrawable();
|
|
|
|
if (drawable instanceof AsyncDrawable) {
|
|
|
|
AsyncDrawable asyncDrawable = (AsyncDrawable) drawable;
|
|
|
|
return asyncDrawable.getContactPictureRetrievalTask();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a contact picture in a background thread.
|
|
|
|
*/
|
|
|
|
class ContactPictureRetrievalTask extends AsyncTask<String, Void, Bitmap> {
|
|
|
|
private final WeakReference<QuickContactBadge> mQuickContactBadgeReference;
|
2013-07-21 10:58:38 -04:00
|
|
|
private Address mAddress;
|
2013-02-07 14:01:49 -05:00
|
|
|
|
|
|
|
ContactPictureRetrievalTask(QuickContactBadge badge) {
|
|
|
|
mQuickContactBadgeReference = new WeakReference<QuickContactBadge>(badge);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void exec(String... args) {
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
|
|
|
|
executeOnExecutor(AsyncTask.THREAD_POOL_EXECUTOR, args);
|
|
|
|
} else {
|
|
|
|
execute(args);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-21 10:58:38 -04:00
|
|
|
public Address getAddress() {
|
|
|
|
return mAddress;
|
2013-02-07 14:01:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Bitmap doInBackground(String... args) {
|
|
|
|
String email = args[0];
|
2013-07-21 10:58:38 -04:00
|
|
|
String personal = args[1];
|
|
|
|
mAddress = new Address(email, personal);
|
2013-02-07 14:01:49 -05:00
|
|
|
final Uri x = mContactsHelper.getPhotoUri(email);
|
|
|
|
Bitmap bitmap = null;
|
|
|
|
if (x != null) {
|
|
|
|
try {
|
|
|
|
InputStream stream = mContentResolver.openInputStream(x);
|
|
|
|
if (stream != null) {
|
|
|
|
try {
|
2013-02-08 12:04:38 -05:00
|
|
|
Bitmap tempBitmap = BitmapFactory.decodeStream(stream);
|
2013-03-18 21:59:05 -04:00
|
|
|
if (tempBitmap != null) {
|
|
|
|
bitmap = Bitmap.createScaledBitmap(tempBitmap, mPictureSizeInPx,
|
|
|
|
mPictureSizeInPx, true);
|
|
|
|
if (tempBitmap != bitmap) {
|
|
|
|
tempBitmap.recycle();
|
|
|
|
}
|
2013-02-08 12:04:38 -05:00
|
|
|
}
|
2013-02-07 14:01:49 -05:00
|
|
|
} finally {
|
|
|
|
try { stream.close(); } catch (IOException e) { /* ignore */ }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (FileNotFoundException e) {
|
|
|
|
/* ignore */
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (bitmap == null) {
|
2013-07-21 10:58:38 -04:00
|
|
|
bitmap = calculateFallbackBitmap(mAddress);
|
2013-02-07 14:01:49 -05:00
|
|
|
// Remember that we don't have a contact picture for this email address
|
2013-07-23 17:42:45 -04:00
|
|
|
addBitmapToCache(email, bitmap);
|
2013-02-07 14:01:49 -05:00
|
|
|
} else {
|
|
|
|
// Save the picture of the contact with that email address in the memory cache
|
|
|
|
addBitmapToCache(email, bitmap);
|
|
|
|
}
|
|
|
|
|
|
|
|
return bitmap;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostExecute(Bitmap bitmap) {
|
|
|
|
if (mQuickContactBadgeReference != null) {
|
|
|
|
QuickContactBadge badge = mQuickContactBadgeReference.get();
|
|
|
|
if (badge != null && getContactPictureRetrievalTask(badge) == this) {
|
|
|
|
badge.setImageBitmap(bitmap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* {@code Drawable} subclass that stores a reference to the {@link ContactPictureRetrievalTask}
|
|
|
|
* that is trying to load the contact picture.
|
|
|
|
*
|
|
|
|
* <p>
|
|
|
|
* The reference is used by {@link ContactPictureLoader#cancelPotentialWork(String,
|
|
|
|
* QuickContactBadge)} to find out if the contact picture is already being loaded by a
|
|
|
|
* {@code ContactPictureRetrievalTask}.
|
|
|
|
* </p>
|
|
|
|
*/
|
|
|
|
static class AsyncDrawable extends BitmapDrawable {
|
|
|
|
private final WeakReference<ContactPictureRetrievalTask> mAsyncTaskReference;
|
|
|
|
|
|
|
|
public AsyncDrawable(Resources res, Bitmap bitmap, ContactPictureRetrievalTask task) {
|
|
|
|
super(res, bitmap);
|
|
|
|
mAsyncTaskReference = new WeakReference<ContactPictureRetrievalTask>(task);
|
|
|
|
}
|
|
|
|
|
|
|
|
public ContactPictureRetrievalTask getContactPictureRetrievalTask() {
|
|
|
|
return mAsyncTaskReference.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|