mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 09:32:27 -06:00
246 lines
9.8 KiB
Java
246 lines
9.8 KiB
Java
|
package androidx.media3.datasource;
|
||
|
|
||
|
import android.content.Context;
|
||
|
import android.net.Uri;
|
||
|
import androidx.media3.common.util.Assertions;
|
||
|
import androidx.media3.common.util.Log;
|
||
|
import androidx.media3.common.util.Util;
|
||
|
import androidx.media3.datasource.DataSource;
|
||
|
import androidx.media3.datasource.DefaultHttpDataSource;
|
||
|
import java.io.IOException;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Collections;
|
||
|
import java.util.List;
|
||
|
import java.util.Map;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public final class DefaultDataSource implements DataSource {
|
||
|
private static final String SCHEME_ANDROID_RESOURCE = "android.resource";
|
||
|
private static final String SCHEME_ASSET = "asset";
|
||
|
private static final String SCHEME_CONTENT = "content";
|
||
|
private static final String SCHEME_DATA = "data";
|
||
|
private static final String SCHEME_RAW = "rawresource";
|
||
|
private static final String SCHEME_RTMP = "rtmp";
|
||
|
private static final String SCHEME_UDP = "udp";
|
||
|
private static final String TAG = "DefaultDataSource";
|
||
|
private DataSource assetDataSource;
|
||
|
private final DataSource baseDataSource;
|
||
|
private DataSource contentDataSource;
|
||
|
private final Context context;
|
||
|
private DataSource dataSchemeDataSource;
|
||
|
private DataSource dataSource;
|
||
|
private DataSource fileDataSource;
|
||
|
private DataSource rawResourceDataSource;
|
||
|
private DataSource rtmpDataSource;
|
||
|
private final List<TransferListener> transferListeners;
|
||
|
private DataSource udpDataSource;
|
||
|
|
||
|
/* loaded from: classes2.dex */
|
||
|
public static final class Factory implements DataSource.Factory {
|
||
|
private final DataSource.Factory baseDataSourceFactory;
|
||
|
private final Context context;
|
||
|
private TransferListener transferListener;
|
||
|
|
||
|
public Factory setTransferListener(TransferListener transferListener) {
|
||
|
this.transferListener = transferListener;
|
||
|
return this;
|
||
|
}
|
||
|
|
||
|
public Factory(Context context) {
|
||
|
this(context, new DefaultHttpDataSource.Factory());
|
||
|
}
|
||
|
|
||
|
public Factory(Context context, DataSource.Factory factory) {
|
||
|
this.context = context.getApplicationContext();
|
||
|
this.baseDataSourceFactory = factory;
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource.Factory
|
||
|
public DefaultDataSource createDataSource() {
|
||
|
DefaultDataSource defaultDataSource = new DefaultDataSource(this.context, this.baseDataSourceFactory.createDataSource());
|
||
|
TransferListener transferListener = this.transferListener;
|
||
|
if (transferListener != null) {
|
||
|
defaultDataSource.addTransferListener(transferListener);
|
||
|
}
|
||
|
return defaultDataSource;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public DefaultDataSource(Context context, boolean z) {
|
||
|
this(context, null, 8000, 8000, z);
|
||
|
}
|
||
|
|
||
|
public DefaultDataSource(Context context, String str, boolean z) {
|
||
|
this(context, str, 8000, 8000, z);
|
||
|
}
|
||
|
|
||
|
public DefaultDataSource(Context context, String str, int i, int i2, boolean z) {
|
||
|
this(context, new DefaultHttpDataSource.Factory().setUserAgent(str).setConnectTimeoutMs(i).setReadTimeoutMs(i2).setAllowCrossProtocolRedirects(z).createDataSource());
|
||
|
}
|
||
|
|
||
|
public DefaultDataSource(Context context, DataSource dataSource) {
|
||
|
this.context = context.getApplicationContext();
|
||
|
this.baseDataSource = (DataSource) Assertions.checkNotNull(dataSource);
|
||
|
this.transferListeners = new ArrayList();
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource
|
||
|
public void addTransferListener(TransferListener transferListener) {
|
||
|
Assertions.checkNotNull(transferListener);
|
||
|
this.baseDataSource.addTransferListener(transferListener);
|
||
|
this.transferListeners.add(transferListener);
|
||
|
maybeAddListenerToDataSource(this.fileDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.assetDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.contentDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.rtmpDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.udpDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.dataSchemeDataSource, transferListener);
|
||
|
maybeAddListenerToDataSource(this.rawResourceDataSource, transferListener);
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource
|
||
|
public long open(DataSpec dataSpec) throws IOException {
|
||
|
Assertions.checkState(this.dataSource == null);
|
||
|
String scheme = dataSpec.uri.getScheme();
|
||
|
if (Util.isLocalFileUri(dataSpec.uri)) {
|
||
|
String path = dataSpec.uri.getPath();
|
||
|
if (path != null && path.startsWith("/android_asset/")) {
|
||
|
this.dataSource = getAssetDataSource();
|
||
|
} else {
|
||
|
this.dataSource = getFileDataSource();
|
||
|
}
|
||
|
} else if (SCHEME_ASSET.equals(scheme)) {
|
||
|
this.dataSource = getAssetDataSource();
|
||
|
} else if (SCHEME_CONTENT.equals(scheme)) {
|
||
|
this.dataSource = getContentDataSource();
|
||
|
} else if (SCHEME_RTMP.equals(scheme)) {
|
||
|
this.dataSource = getRtmpDataSource();
|
||
|
} else if (SCHEME_UDP.equals(scheme)) {
|
||
|
this.dataSource = getUdpDataSource();
|
||
|
} else if ("data".equals(scheme)) {
|
||
|
this.dataSource = getDataSchemeDataSource();
|
||
|
} else if ("rawresource".equals(scheme) || SCHEME_ANDROID_RESOURCE.equals(scheme)) {
|
||
|
this.dataSource = getRawResourceDataSource();
|
||
|
} else {
|
||
|
this.dataSource = this.baseDataSource;
|
||
|
}
|
||
|
return this.dataSource.open(dataSpec);
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.common.DataReader
|
||
|
public int read(byte[] bArr, int i, int i2) throws IOException {
|
||
|
return ((DataSource) Assertions.checkNotNull(this.dataSource)).read(bArr, i, i2);
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource
|
||
|
public Uri getUri() {
|
||
|
DataSource dataSource = this.dataSource;
|
||
|
if (dataSource == null) {
|
||
|
return null;
|
||
|
}
|
||
|
return dataSource.getUri();
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource
|
||
|
public Map<String, List<String>> getResponseHeaders() {
|
||
|
DataSource dataSource = this.dataSource;
|
||
|
return dataSource == null ? Collections.emptyMap() : dataSource.getResponseHeaders();
|
||
|
}
|
||
|
|
||
|
@Override // androidx.media3.datasource.DataSource
|
||
|
public void close() throws IOException {
|
||
|
DataSource dataSource = this.dataSource;
|
||
|
if (dataSource != null) {
|
||
|
try {
|
||
|
dataSource.close();
|
||
|
} finally {
|
||
|
this.dataSource = null;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private DataSource getUdpDataSource() {
|
||
|
if (this.udpDataSource == null) {
|
||
|
UdpDataSource udpDataSource = new UdpDataSource();
|
||
|
this.udpDataSource = udpDataSource;
|
||
|
addListenersToDataSource(udpDataSource);
|
||
|
}
|
||
|
return this.udpDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getFileDataSource() {
|
||
|
if (this.fileDataSource == null) {
|
||
|
FileDataSource fileDataSource = new FileDataSource();
|
||
|
this.fileDataSource = fileDataSource;
|
||
|
addListenersToDataSource(fileDataSource);
|
||
|
}
|
||
|
return this.fileDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getAssetDataSource() {
|
||
|
if (this.assetDataSource == null) {
|
||
|
AssetDataSource assetDataSource = new AssetDataSource(this.context);
|
||
|
this.assetDataSource = assetDataSource;
|
||
|
addListenersToDataSource(assetDataSource);
|
||
|
}
|
||
|
return this.assetDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getContentDataSource() {
|
||
|
if (this.contentDataSource == null) {
|
||
|
ContentDataSource contentDataSource = new ContentDataSource(this.context);
|
||
|
this.contentDataSource = contentDataSource;
|
||
|
addListenersToDataSource(contentDataSource);
|
||
|
}
|
||
|
return this.contentDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getRtmpDataSource() {
|
||
|
if (this.rtmpDataSource == null) {
|
||
|
try {
|
||
|
DataSource dataSource = (DataSource) Class.forName("androidx.media3.datasource.rtmp.RtmpDataSource").getConstructor(new Class[0]).newInstance(new Object[0]);
|
||
|
this.rtmpDataSource = dataSource;
|
||
|
addListenersToDataSource(dataSource);
|
||
|
} catch (ClassNotFoundException unused) {
|
||
|
Log.w(TAG, "Attempting to play RTMP stream without depending on the RTMP extension");
|
||
|
} catch (Exception e) {
|
||
|
throw new RuntimeException("Error instantiating RTMP extension", e);
|
||
|
}
|
||
|
if (this.rtmpDataSource == null) {
|
||
|
this.rtmpDataSource = this.baseDataSource;
|
||
|
}
|
||
|
}
|
||
|
return this.rtmpDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getDataSchemeDataSource() {
|
||
|
if (this.dataSchemeDataSource == null) {
|
||
|
DataSchemeDataSource dataSchemeDataSource = new DataSchemeDataSource();
|
||
|
this.dataSchemeDataSource = dataSchemeDataSource;
|
||
|
addListenersToDataSource(dataSchemeDataSource);
|
||
|
}
|
||
|
return this.dataSchemeDataSource;
|
||
|
}
|
||
|
|
||
|
private DataSource getRawResourceDataSource() {
|
||
|
if (this.rawResourceDataSource == null) {
|
||
|
RawResourceDataSource rawResourceDataSource = new RawResourceDataSource(this.context);
|
||
|
this.rawResourceDataSource = rawResourceDataSource;
|
||
|
addListenersToDataSource(rawResourceDataSource);
|
||
|
}
|
||
|
return this.rawResourceDataSource;
|
||
|
}
|
||
|
|
||
|
private void addListenersToDataSource(DataSource dataSource) {
|
||
|
for (int i = 0; i < this.transferListeners.size(); i++) {
|
||
|
dataSource.addTransferListener(this.transferListeners.get(i));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private void maybeAddListenerToDataSource(DataSource dataSource, TransferListener transferListener) {
|
||
|
if (dataSource != null) {
|
||
|
dataSource.addTransferListener(transferListener);
|
||
|
}
|
||
|
}
|
||
|
}
|