Package com.castlabs.android.player
Class MemoryHlsClearKeyCache
- java.lang.Object
-
- com.castlabs.android.player.HlsClearKeyCache
-
- com.castlabs.android.player.MemoryHlsClearKeyCache
-
- All Implemented Interfaces:
Parcelable
public class MemoryHlsClearKeyCache extends HlsClearKeyCache implements Parcelable
Cache forDrm.Clearkey
which stores keys in memory.Can be
gotten
orPlayerController.setHlsKeyCache(HlsClearKeyCache)
set} in the PlayerController.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface android.os.Parcelable
Parcelable.ClassLoaderCreator<T extends Object>, Parcelable.Creator<T extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description static Parcelable.Creator<MemoryHlsClearKeyCache>
CREATOR
static int
DEFAULT_CACHE_SIZE
Default maximum cache size-
Fields inherited from interface android.os.Parcelable
CONTENTS_FILE_DESCRIPTOR, PARCELABLE_WRITE_RETURN_VALUE
-
-
Constructor Summary
Constructors Constructor Description MemoryHlsClearKeyCache()
Create an empty cache with a size ofDEFAULT_CACHE_SIZE
MemoryHlsClearKeyCache(int maxCacheSize, Map<Uri,byte[]> cache)
Creates a cache with a size of maxCacheSize and pre-filled with the provided Map.MemoryHlsClearKeyCache(Map<Uri,byte[]> cache)
Create a cache with a size ofDEFAULT_CACHE_SIZE
and pre-filled with the provided Map.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
containsUri(Uri uri)
Returns true ifuri
is present in the cache.int
describeContents()
byte[]
get(Uri uri)
Returns theencryptionKey
cached against thisuri
, or null ifuri
is null or not present in the cache.byte[]
put(Uri uri, byte[] encryptionKey)
Inserts an entry into the cache.byte[]
remove(Uri uri)
Removesuri
from the cache.void
writeToParcel(Parcel dest, int flags)
-
-
-
Field Detail
-
DEFAULT_CACHE_SIZE
public static final int DEFAULT_CACHE_SIZE
Default maximum cache size- See Also:
- Constant Field Values
-
CREATOR
public static final Parcelable.Creator<MemoryHlsClearKeyCache> CREATOR
-
-
Constructor Detail
-
MemoryHlsClearKeyCache
public MemoryHlsClearKeyCache()
Create an empty cache with a size ofDEFAULT_CACHE_SIZE
-
MemoryHlsClearKeyCache
public MemoryHlsClearKeyCache(@Nullable Map<Uri,byte[]> cache)
Create a cache with a size ofDEFAULT_CACHE_SIZE
and pre-filled with the provided Map.- Parameters:
cache
- Existing entries to pre-fill the cache with
-
-
Method Detail
-
writeToParcel
public void writeToParcel(Parcel dest, int flags)
- Specified by:
writeToParcel
in interfaceParcelable
-
describeContents
public int describeContents()
- Specified by:
describeContents
in interfaceParcelable
-
get
@Nullable public byte[] get(@Nullable Uri uri)
Description copied from class:HlsClearKeyCache
Returns theencryptionKey
cached against thisuri
, or null ifuri
is null or not present in the cache.- Specified by:
get
in classHlsClearKeyCache
-
put
@Nullable public byte[] put(@NonNull Uri uri, @NonNull byte[] encryptionKey)
Description copied from class:HlsClearKeyCache
Inserts an entry into the cache.- Specified by:
put
in classHlsClearKeyCache
-
containsUri
public boolean containsUri(@NonNull Uri uri)
Description copied from class:HlsClearKeyCache
Returns true ifuri
is present in the cache.- Specified by:
containsUri
in classHlsClearKeyCache
-
remove
@Nullable public byte[] remove(@NonNull Uri uri)
Description copied from class:HlsClearKeyCache
Removesuri
from the cache. Ifuri
was present in the cahce, this returns the correspondingencryptionKey
, otherwise null.- Specified by:
remove
in classHlsClearKeyCache
-
-