Class CronetDataSource
- java.lang.Object
-
- com.google.android.exoplayer2.upstream.BaseDataSource
-
- com.google.android.exoplayer2.ext.cronet.CronetDataSource
-
- All Implemented Interfaces:
DataReader
,DataSource
,HttpDataSource
@Deprecated public class CronetDataSource extends BaseDataSource implements HttpDataSource
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.DataSource without intermediate buffer based on Cronet API set using UrlRequest.Note: HTTP request headers will be set using all parameters passed via (in order of decreasing priority) the
dataSpec
,setRequestProperty(java.lang.String, java.lang.String)
and the default parameters used to construct the instance.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CronetDataSource.Factory
Deprecated.DataSource.Factory
forCronetDataSource
instances.static class
CronetDataSource.OpenException
Deprecated.Thrown when an error is encountered when trying to open aCronetDataSource
.-
Nested classes/interfaces inherited from interface com.google.android.exoplayer2.upstream.HttpDataSource
HttpDataSource.BaseFactory, HttpDataSource.CleartextNotPermittedException, HttpDataSource.HttpDataSourceException, HttpDataSource.InvalidContentTypeException, HttpDataSource.InvalidResponseCodeException, HttpDataSource.RequestProperties
-
-
Field Summary
Fields Modifier and Type Field Description static int
DEFAULT_CONNECT_TIMEOUT_MILLIS
Deprecated.The default connection timeout, in milliseconds.static int
DEFAULT_READ_TIMEOUT_MILLIS
Deprecated.The default read timeout, in milliseconds.-
Fields inherited from interface com.google.android.exoplayer2.upstream.HttpDataSource
REJECT_PAYWALL_TYPES
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
CronetDataSource(org.chromium.net.CronetEngine cronetEngine, Executor executor, int requestPriority, int connectTimeoutMs, int readTimeoutMs, boolean resetTimeoutOnRedirects, boolean handleSetCookieRequests, String userAgent, HttpDataSource.RequestProperties defaultRequestProperties, Predicate<String> contentTypePredicate, boolean keepPostFor302Redirects)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected org.chromium.net.UrlRequest.Builder
buildRequestBuilder(DataSpec dataSpec)
Deprecated.void
clearAllRequestProperties()
Deprecated.Clears all request headers that were set byHttpDataSource.setRequestProperty(String, String)
.void
clearRequestProperty(String name)
Deprecated.Clears the value of a request header.void
close()
Deprecated.Closes the source.protected org.chromium.net.UrlRequest
getCurrentUrlRequest()
Deprecated.Returns currentUrlRequest
.protected org.chromium.net.UrlResponseInfo
getCurrentUrlResponseInfo()
Deprecated.Returns currentUrlResponseInfo
.int
getResponseCode()
Deprecated.When the source is open, returns the HTTP response status code associated with the lastHttpDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
call.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.int
read(ByteBuffer buffer)
Deprecated.Reads up tobuffer.remaining()
bytes of data and stores them intobuffer
, starting atbuffer.position()
.void
setContentTypePredicate(Predicate<String> contentTypePredicate)
Deprecated.void
setRequestProperty(String name, String value)
Deprecated.Sets the value of a request header.-
Methods inherited from class com.google.android.exoplayer2.upstream.BaseDataSource
addTransferListener, bytesTransferred, transferEnded, transferInitializing, transferStarted
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.google.android.exoplayer2.upstream.DataSource
addTransferListener
-
-
-
-
Field Detail
-
DEFAULT_CONNECT_TIMEOUT_MILLIS
public static final int DEFAULT_CONNECT_TIMEOUT_MILLIS
Deprecated.The default connection timeout, in milliseconds.- See Also:
- Constant Field Values
-
DEFAULT_READ_TIMEOUT_MILLIS
public static final int DEFAULT_READ_TIMEOUT_MILLIS
Deprecated.The default read timeout, in milliseconds.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CronetDataSource
protected CronetDataSource(org.chromium.net.CronetEngine cronetEngine, Executor executor, int requestPriority, int connectTimeoutMs, int readTimeoutMs, boolean resetTimeoutOnRedirects, boolean handleSetCookieRequests, @Nullable String userAgent, @Nullable HttpDataSource.RequestProperties defaultRequestProperties, @Nullable Predicate<String> contentTypePredicate, boolean keepPostFor302Redirects)
Deprecated.
-
-
Method Detail
-
setContentTypePredicate
@Deprecated public void setContentTypePredicate(@Nullable Predicate<String> contentTypePredicate)
Deprecated.
-
setRequestProperty
public void setRequestProperty(String name, String value)
Deprecated.Description copied from interface:HttpDataSource
Sets the value of a request header. The value will be used for subsequent connections established by the source.Note: If the same header is set as a default parameter in the
HttpDataSource.Factory
, then the header value set with this method should be preferred when connecting with the data source. SeeHttpDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
.- Specified by:
setRequestProperty
in interfaceHttpDataSource
- Parameters:
name
- The name of the header field.value
- The value of the field.
-
clearRequestProperty
public void clearRequestProperty(String name)
Deprecated.Description copied from interface:HttpDataSource
Clears the value of a request header. The change will apply to subsequent connections established by the source.- Specified by:
clearRequestProperty
in interfaceHttpDataSource
- Parameters:
name
- The name of the header field.
-
clearAllRequestProperties
public void clearAllRequestProperties()
Deprecated.Description copied from interface:HttpDataSource
Clears all request headers that were set byHttpDataSource.setRequestProperty(String, String)
.- Specified by:
clearAllRequestProperties
in interfaceHttpDataSource
-
getResponseCode
public int getResponseCode()
Deprecated.Description copied from interface:HttpDataSource
When the source is open, returns the HTTP response status code associated with the lastHttpDataSource.open(com.google.android.exoplayer2.upstream.DataSpec)
call. Otherwise, returns a negative value.- Specified by:
getResponseCode
in interfaceHttpDataSource
-
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
- Specified by:
getResponseHeaders
in interfaceHttpDataSource
-
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.
-
open
public long open(DataSpec dataSpec) throws HttpDataSource.HttpDataSourceException
Deprecated.Description copied from interface:HttpDataSource
Opens the source to read the specified data.Note:
HttpDataSource
implementations are advised to set request headers passed via (in order of decreasing priority) thedataSpec
,HttpDataSource.setRequestProperty(java.lang.String, java.lang.String)
and the default parameters set in theHttpDataSource.Factory
.- Specified by:
open
in interfaceDataSource
- Specified by:
open
in interfaceHttpDataSource
- 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:
HttpDataSource.HttpDataSourceException
-
read
public int read(byte[] buffer, int offset, int length) throws HttpDataSource.HttpDataSourceException
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
- Specified by:
read
in interfaceHttpDataSource
- 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:
HttpDataSource.HttpDataSourceException
-
read
public int read(ByteBuffer buffer) throws HttpDataSource.HttpDataSourceException
Deprecated.Reads up tobuffer.remaining()
bytes of data and stores them intobuffer
, starting atbuffer.position()
. Advances the position of the buffer by the number of bytes read and returns this length.If there is an error, a
HttpDataSource.HttpDataSourceException
is thrown and the contents ofbuffer
should be ignored. If the exception has error codeHttpDataSourceException.TYPE_READ
, note that Cronet may continue writing intobuffer
after the method has returned. Thus the caller should not attempt to reuse the buffer.If
buffer.remaining()
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.Passed buffer must be direct ByteBuffer. If you have a non-direct ByteBuffer, consider the alternative read method with its backed array.
- Parameters:
buffer
- The ByteBuffer into which the read data should be stored. Must be a direct ByteBuffer.- Returns:
- The number of bytes read, or
C.RESULT_END_OF_INPUT
if no data is available because the end of the opened range has been reached. - Throws:
HttpDataSource.HttpDataSourceException
- If an error occurs reading from the source.IllegalArgumentException
- Ifbuffer
is not a direct ByteBuffer.
-
close
public void close()
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
- Specified by:
close
in interfaceHttpDataSource
-
getCurrentUrlRequest
@Nullable protected org.chromium.net.UrlRequest getCurrentUrlRequest()
Deprecated.Returns currentUrlRequest
. May be null if the data source is not opened.
-
getCurrentUrlResponseInfo
@Nullable protected org.chromium.net.UrlResponseInfo getCurrentUrlResponseInfo()
Deprecated.Returns currentUrlResponseInfo
. May be null if the data source is not opened.
-
buildRequestBuilder
protected org.chromium.net.UrlRequest.Builder buildRequestBuilder(DataSpec dataSpec) throws IOException
Deprecated.- Throws:
IOException
-
-