Class CacheDataSource
- java.lang.Object
-
- com.google.android.exoplayer2.upstream.cache.CacheDataSource
-
- All Implemented Interfaces:
DataReader
,DataSource
@Deprecated public final class CacheDataSource extends Object implements DataSource
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.ADataSource
that reads and writes aCache
. Requests are fulfilled from the cache when possible. When data is not cached it is requested from an upstreamDataSource
and written into the cache.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
CacheDataSource.CacheIgnoredReason
Deprecated.Reasons the cache may be ignored.static interface
CacheDataSource.EventListener
Deprecated.Listener ofCacheDataSource
events.static class
CacheDataSource.Factory
Deprecated.DataSource.Factory
forCacheDataSource
instances.static interface
CacheDataSource.Flags
Deprecated.Flags controlling the CacheDataSource's behavior.
-
Field Summary
Fields Modifier and Type Field Description static int
CACHE_IGNORED_REASON_ERROR
Deprecated.Cache ignored due to a cache related error.static int
CACHE_IGNORED_REASON_UNSET_LENGTH
Deprecated.Cache ignored due to a request with an unset length.static int
FLAG_BLOCK_ON_CACHE
Deprecated.A flag indicating whether we will block reads if the cache key is locked.static int
FLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
Deprecated.A flag indicating that the cache should be bypassed for requests whose lengths are unset.static int
FLAG_IGNORE_CACHE_ON_ERROR
Deprecated.A flag indicating whether the cache is bypassed following any cache related error.
-
Constructor Summary
Constructors Constructor Description CacheDataSource(Cache cache, DataSource upstreamDataSource)
Deprecated.Constructs an instance with defaultDataSource
andDataSink
instances for reading and writing the cache.CacheDataSource(Cache cache, DataSource upstreamDataSource, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags)
Deprecated.Constructs an instance with defaultDataSource
andDataSink
instances for reading and writing the cache.CacheDataSource(Cache cache, DataSource upstreamDataSource, DataSource cacheReadDataSource, DataSink cacheWriteDataSink, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags, CacheDataSource.EventListener eventListener)
Deprecated.Constructs an instance with arbitraryDataSource
andDataSink
instances for reading and writing the cache.CacheDataSource(Cache cache, DataSource upstreamDataSource, DataSource cacheReadDataSource, DataSink cacheWriteDataSink, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags, CacheDataSource.EventListener eventListener, CacheKeyFactory cacheKeyFactory)
Deprecated.Constructs an instance with arbitraryDataSource
andDataSink
instances for reading and writing the cache.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
addTransferListener(TransferListener transferListener)
Deprecated.Adds aTransferListener
to listen to data transfers.void
close()
Deprecated.Closes the source.Cache
getCache()
Deprecated.Returns theCache
used by this instance.CacheKeyFactory
getCacheKeyFactory()
Deprecated.Returns theCacheKeyFactory
used by this instance.Map<String,List<String>>
getResponseHeaders()
Deprecated.When the source is open, returns the response headers associated with the lastDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
call.Uri
getUri()
Deprecated.When the source is open, returns theUri
from which data is being read.long
open(DataSpec dataSpec)
Deprecated.Opens the source to read the specified data.int
read(byte[] buffer, int offset, int length)
Deprecated.Reads up tolength
bytes of data from the input.
-
-
-
Field Detail
-
FLAG_BLOCK_ON_CACHE
public static final int FLAG_BLOCK_ON_CACHE
Deprecated.A flag indicating whether we will block reads if the cache key is locked. If unset then data is read from upstream if the cache key is locked, regardless of whether the data is cached.- See Also:
- Constant Field Values
-
FLAG_IGNORE_CACHE_ON_ERROR
public static final int FLAG_IGNORE_CACHE_ON_ERROR
Deprecated.A flag indicating whether the cache is bypassed following any cache related error. If set then cache related exceptions may be thrown for one cycle of open, read and close calls. Subsequent cycles of these calls will then bypass the cache.- See Also:
- Constant Field Values
-
FLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
public static final int FLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
Deprecated.A flag indicating that the cache should be bypassed for requests whose lengths are unset. This flag is provided for legacy reasons only.- See Also:
- Constant Field Values
-
CACHE_IGNORED_REASON_ERROR
public static final int CACHE_IGNORED_REASON_ERROR
Deprecated.Cache ignored due to a cache related error.- See Also:
- Constant Field Values
-
CACHE_IGNORED_REASON_UNSET_LENGTH
public static final int CACHE_IGNORED_REASON_UNSET_LENGTH
Deprecated.Cache ignored due to a request with an unset length.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CacheDataSource
public CacheDataSource(Cache cache, @Nullable DataSource upstreamDataSource)
Deprecated.Constructs an instance with defaultDataSource
andDataSink
instances for reading and writing the cache.- Parameters:
cache
- The cache.upstreamDataSource
- ADataSource
for reading data not in the cache. If null, reading will fail if a cache miss occurs.
-
CacheDataSource
public CacheDataSource(Cache cache, @Nullable DataSource upstreamDataSource, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags)
Deprecated.Constructs an instance with defaultDataSource
andDataSink
instances for reading and writing the cache.- Parameters:
cache
- The cache.upstreamDataSource
- ADataSource
for reading data not in the cache. If null, reading will fail if a cache miss occurs.flags
- A combination ofFLAG_BLOCK_ON_CACHE
,FLAG_IGNORE_CACHE_ON_ERROR
andFLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
, or 0.
-
CacheDataSource
public CacheDataSource(Cache cache, @Nullable DataSource upstreamDataSource, DataSource cacheReadDataSource, @Nullable DataSink cacheWriteDataSink, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags, @Nullable CacheDataSource.EventListener eventListener)
Deprecated.Constructs an instance with arbitraryDataSource
andDataSink
instances for reading and writing the cache. One use of this constructor is to allow data to be transformed before it is written to disk.- Parameters:
cache
- The cache.upstreamDataSource
- ADataSource
for reading data not in the cache. If null, reading will fail if a cache miss occurs.cacheReadDataSource
- ADataSource
for reading data from the cache.cacheWriteDataSink
- ADataSink
for writing data to the cache. If null, cache is accessed read-only.flags
- A combination ofFLAG_BLOCK_ON_CACHE
,FLAG_IGNORE_CACHE_ON_ERROR
andFLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
, or 0.eventListener
- An optionalCacheDataSource.EventListener
to receive events.
-
CacheDataSource
public CacheDataSource(Cache cache, @Nullable DataSource upstreamDataSource, DataSource cacheReadDataSource, @Nullable DataSink cacheWriteDataSink, @com.google.android.exoplayer2.upstream.cache.CacheDataSource.Flags int flags, @Nullable CacheDataSource.EventListener eventListener, @Nullable CacheKeyFactory cacheKeyFactory)
Deprecated.Constructs an instance with arbitraryDataSource
andDataSink
instances for reading and writing the cache. One use of this constructor is to allow data to be transformed before it is written to disk.- Parameters:
cache
- The cache.upstreamDataSource
- ADataSource
for reading data not in the cache. If null, reading will fail if a cache miss occurs.cacheReadDataSource
- ADataSource
for reading data from the cache.cacheWriteDataSink
- ADataSink
for writing data to the cache. If null, cache is accessed read-only.flags
- A combination ofFLAG_BLOCK_ON_CACHE
,FLAG_IGNORE_CACHE_ON_ERROR
andFLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS
, or 0.eventListener
- An optionalCacheDataSource.EventListener
to receive events.cacheKeyFactory
- An optional factory for cache keys.
-
-
Method Detail
-
getCacheKeyFactory
public CacheKeyFactory getCacheKeyFactory()
Deprecated.Returns theCacheKeyFactory
used by this instance.
-
addTransferListener
public void addTransferListener(TransferListener transferListener)
Deprecated.Description copied from interface:DataSource
Adds aTransferListener
to listen to data transfers. This method is not thread-safe.- Specified by:
addTransferListener
in interfaceDataSource
- Parameters:
transferListener
- ATransferListener
.
-
open
public long open(DataSpec dataSpec) throws IOException
Deprecated.Description copied from interface:DataSource
Opens the source to read the specified data. If anIOException
is thrown, callers must still callDataSource.close()
to ensure that any partial effects of the invocation are cleaned up.The following edge case behaviors apply:
- If the
requested position
is within the resource, but therequested length
extends beyond the end of the resource, thenDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
will succeed and data from the requested position to the end of the resource will be made available throughDataReader.read(byte[], int, int)
. - If the
requested position
is equal to the length of the resource, thenDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
will succeed, andDataReader.read(byte[], int, int)
will immediately returnC.RESULT_END_OF_INPUT
. - If the
requested position
is greater than the length of the resource, thenDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
will throw anIOException
for whichDataSourceException.isCausedByPositionOutOfRange(java.io.IOException)
will betrue
.
- Specified by:
open
in interfaceDataSource
- Parameters:
dataSpec
- Defines the data to be read.- Returns:
- The number of bytes that can be read from the opened source. For unbounded requests
(i.e., requests where
DataSpec.length
equalsC.LENGTH_UNSET
) this value is the resolved length of the request, orC.LENGTH_UNSET
if the length is still unresolved. For all other requests, the value returned will be equal to the request'sDataSpec.length
. - Throws:
IOException
- If an error occurs opening the source.DataSourceException
can be thrown or used as a cause of the thrown exception to specify the reason of the error.
- If the
-
read
public int read(byte[] buffer, int offset, int length) throws IOException
Deprecated.Description copied from interface:DataReader
Reads up tolength
bytes of data from the input.If
readLength
is zero then 0 is returned. Otherwise, if no data is available because the end of the opened range has been reached, thenC.RESULT_END_OF_INPUT
is returned. Otherwise, the call will block until at least one byte of data has been read and the number of bytes read is returned.- Specified by:
read
in interfaceDataReader
- Parameters:
buffer
- A target array into which data should be written.offset
- The offset into the target array at which to write.length
- The maximum number of bytes to read from the input.- Returns:
- The number of bytes read, or
C.RESULT_END_OF_INPUT
if the input has ended. This may be less thanlength
because the end of the input (or available data) was reached, the method was interrupted, or the operation was aborted early for another reason. - Throws:
IOException
- If an error occurs reading from the input.
-
getUri
@Nullable public Uri getUri()
Deprecated.Description copied from interface:DataSource
When the source is open, returns theUri
from which data is being read. The returnedUri
will be identical to the one passedDataSource.open(DataSpec)
in theDataSpec
unless redirection has occurred. If redirection has occurred, theUri
after redirection is returned.- Specified by:
getUri
in interfaceDataSource
- Returns:
- The
Uri
from which data is being read, or null if the source is not open.
-
getResponseHeaders
public Map<String,List<String>> getResponseHeaders()
Deprecated.Description copied from interface:DataSource
When the source is open, returns the response headers associated with the lastDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
call. Otherwise, returns an empty map.Key look-up in the returned map is case-insensitive.
- Specified by:
getResponseHeaders
in interfaceDataSource
-
close
public void close() throws IOException
Deprecated.Description copied from interface:DataSource
Closes the source. This method must be called even if the corresponding call toDataSource.open(DataSpec)
threw anIOException
.- Specified by:
close
in interfaceDataSource
- Throws:
IOException
- If an error occurs closing the source.
-
-