Created
June 7, 2018 09:58
-
-
Save ncruces/708f623210c03b3d63d3ddfc93742478 to your computer and use it in GitHub Desktop.
Caches a Parcelable (e.g. a Bitmap) in Parcel memory (i.e. off the heap)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package io.github.ncruces.utils; | |
import android.graphics.Bitmap; | |
import android.os.BadParcelableException; | |
import android.os.Parcel; | |
import android.os.Parcelable; | |
public final class CachedParcelable<T extends Parcelable> implements AutoCloseable { | |
private final Parcelable.Creator<T> creator; | |
private Parcel cache; | |
public CachedParcelable(Parcelable.Creator<T> creator) { | |
this.creator = creator; | |
} | |
public synchronized T get() { | |
if (cache == null) return null; | |
try { | |
cache.setDataPosition(0); | |
return creator.createFromParcel(cache); | |
} catch (BadParcelableException e) { | |
// | |
} catch (RuntimeException e) { | |
if (creator != Bitmap.CREATOR) throw e; | |
} | |
return null; | |
} | |
public synchronized void put(T value) { | |
if (cache != null) cache.recycle(); | |
if (value == null) { | |
cache = null; | |
return; | |
} | |
try { | |
cache = Parcel.obtain(); | |
value.writeToParcel(cache, 0); | |
} catch (RuntimeException e) { | |
if (creator != Bitmap.CREATOR) throw e; | |
} | |
} | |
@Override | |
public synchronized void close() { | |
if (cache != null) { | |
cache.recycle(); | |
cache = null; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment