mirror of
https://github.com/pierre42100/ComunicAndroid
synced 2024-11-23 22:09:30 +00:00
Put a lock on image loading.
This commit is contained in:
parent
98713def11
commit
92b2d846bb
@ -24,17 +24,24 @@ class ImageLoadApplyRunnable implements Runnable {
|
|||||||
*/
|
*/
|
||||||
private ImageView imageView;
|
private ImageView imageView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Object to notify when the image has been posted
|
||||||
|
*/
|
||||||
|
private Object obj = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Construct the class
|
* Construct the class
|
||||||
*
|
*
|
||||||
* @param imageView The target image view
|
* @param imageView The target image view
|
||||||
* @param bitmap The bitmap to apply
|
* @param bitmap The bitmap to apply
|
||||||
|
* @param obj Object to notify once the image has been applied
|
||||||
*/
|
*/
|
||||||
ImageLoadApplyRunnable(ImageView imageView, Bitmap bitmap){
|
ImageLoadApplyRunnable(ImageView imageView, Bitmap bitmap, Object obj){
|
||||||
|
|
||||||
//Save the values
|
//Save the values
|
||||||
this.bitmap = bitmap;
|
this.bitmap = bitmap;
|
||||||
this.imageView = imageView;
|
this.imageView = imageView;
|
||||||
|
this.obj = obj;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -46,5 +53,11 @@ class ImageLoadApplyRunnable implements Runnable {
|
|||||||
|
|
||||||
//Apply the image
|
//Apply the image
|
||||||
imageView.setImageBitmap(bitmap);
|
imageView.setImageBitmap(bitmap);
|
||||||
|
|
||||||
|
synchronized (obj){
|
||||||
|
//Notify
|
||||||
|
obj.notifyAll();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -11,6 +11,7 @@ import org.communiquons.android.comunic.client.data.utils.ImageLoadUtils;
|
|||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
|
import java.util.concurrent.locks.ReentrantLock;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Image loading runnable
|
* Image loading runnable
|
||||||
@ -29,6 +30,11 @@ public class ImageLoadRunnable implements Runnable {
|
|||||||
*/
|
*/
|
||||||
private static final String TAG = "ImageLoadRunnable";
|
private static final String TAG = "ImageLoadRunnable";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Image load lock
|
||||||
|
*/
|
||||||
|
public static ReentrantLock ImageLoadLock = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* An array map with all the pending images associated with their URLs
|
* An array map with all the pending images associated with their URLs
|
||||||
*/
|
*/
|
||||||
@ -63,6 +69,10 @@ public class ImageLoadRunnable implements Runnable {
|
|||||||
*/
|
*/
|
||||||
public ImageLoadRunnable(Context context, ImageView imageView, String url){
|
public ImageLoadRunnable(Context context, ImageView imageView, String url){
|
||||||
|
|
||||||
|
if(ImageLoadLock == null)
|
||||||
|
ImageLoadLock = new ReentrantLock();
|
||||||
|
|
||||||
|
|
||||||
//Check if the list of pending operations has to be initialized or not
|
//Check if the list of pending operations has to be initialized or not
|
||||||
if(pendingOperation == null)
|
if(pendingOperation == null)
|
||||||
pendingOperation = new ArrayMap<>();
|
pendingOperation = new ArrayMap<>();
|
||||||
@ -92,10 +102,9 @@ public class ImageLoadRunnable implements Runnable {
|
|||||||
if (file.exists()) {
|
if (file.exists()) {
|
||||||
|
|
||||||
//Then the file can be loaded in a bitmap
|
//Then the file can be loaded in a bitmap
|
||||||
load_image();
|
safe_load_image();
|
||||||
return;
|
return;
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
|
|
||||||
//Create the thread and start it
|
//Create the thread and start it
|
||||||
Thread thread = new Thread(new ImageDownloadRunnable(url, file));
|
Thread thread = new Thread(new ImageDownloadRunnable(url, file));
|
||||||
@ -127,8 +136,21 @@ public class ImageLoadRunnable implements Runnable {
|
|||||||
//Remove the thread from the pending list
|
//Remove the thread from the pending list
|
||||||
pendingOperation.remove(url);
|
pendingOperation.remove(url);
|
||||||
|
|
||||||
|
safe_load_image();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Load images safely
|
||||||
|
*/
|
||||||
|
private void safe_load_image(){
|
||||||
|
|
||||||
|
Log.v(TAG, "Before lock");
|
||||||
|
ImageLoadLock.lock();
|
||||||
|
|
||||||
//Load the image
|
//Load the image
|
||||||
load_image();
|
load_image();
|
||||||
|
|
||||||
|
ImageLoadLock.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -160,11 +182,19 @@ public class ImageLoadRunnable implements Runnable {
|
|||||||
|
|
||||||
//Delete file
|
//Delete file
|
||||||
file.delete();
|
file.delete();
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
//Apply the bitmap on the image view (register operation)
|
//Apply the bitmap on the image view (register operation)
|
||||||
imageView.post(new ImageLoadApplyRunnable(imageView, bitmap));
|
Object obj = new Object();
|
||||||
|
synchronized (obj){
|
||||||
|
imageView.post(new ImageLoadApplyRunnable(imageView, bitmap, obj));
|
||||||
|
Log.v(TAG, "Locking for " + url);
|
||||||
|
obj.wait(1000); //Wait for the image to be applied
|
||||||
|
Log.v(TAG, "Unlocking " + url);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
} catch (Exception e){
|
} catch (Exception e){
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
Loading…
Reference in New Issue
Block a user