Move SimpleCache creation in PlayerDataSource to avoid an IllegalStateException
This IllegalStateException, almost not reproducible, indicates that another SimpleCache instance uses the cache folder, which was so trying to be created at least twice. Moving the SimpleCache creation in PlayerDataSource should avoid this exception.
This commit is contained in:
parent
7d6bf4b0ca
commit
fbee310261
|
@ -1,12 +1,10 @@
|
||||||
package org.schabi.newpipe.player.helper;
|
package org.schabi.newpipe.player.helper;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.util.Log;
|
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
import com.google.android.exoplayer2.database.StandaloneDatabaseProvider;
|
|
||||||
import com.google.android.exoplayer2.upstream.DataSource;
|
import com.google.android.exoplayer2.upstream.DataSource;
|
||||||
import com.google.android.exoplayer2.upstream.DefaultDataSource;
|
import com.google.android.exoplayer2.upstream.DefaultDataSource;
|
||||||
import com.google.android.exoplayer2.upstream.DefaultHttpDataSource;
|
import com.google.android.exoplayer2.upstream.DefaultHttpDataSource;
|
||||||
|
@ -14,31 +12,26 @@ import com.google.android.exoplayer2.upstream.FileDataSource;
|
||||||
import com.google.android.exoplayer2.upstream.TransferListener;
|
import com.google.android.exoplayer2.upstream.TransferListener;
|
||||||
import com.google.android.exoplayer2.upstream.cache.CacheDataSink;
|
import com.google.android.exoplayer2.upstream.cache.CacheDataSink;
|
||||||
import com.google.android.exoplayer2.upstream.cache.CacheDataSource;
|
import com.google.android.exoplayer2.upstream.cache.CacheDataSource;
|
||||||
import com.google.android.exoplayer2.upstream.cache.LeastRecentlyUsedCacheEvictor;
|
|
||||||
import com.google.android.exoplayer2.upstream.cache.SimpleCache;
|
import com.google.android.exoplayer2.upstream.cache.SimpleCache;
|
||||||
|
|
||||||
import org.schabi.newpipe.player.datasource.YoutubeHttpDataSource;
|
import org.schabi.newpipe.player.datasource.YoutubeHttpDataSource;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
|
|
||||||
/* package-private */ final class CacheFactory implements DataSource.Factory {
|
/* package-private */ final class CacheFactory implements DataSource.Factory {
|
||||||
private static final String TAG = CacheFactory.class.getSimpleName();
|
|
||||||
|
|
||||||
private static final String CACHE_FOLDER_NAME = "exoplayer";
|
|
||||||
private static final int CACHE_FLAGS = CacheDataSource.FLAG_IGNORE_CACHE_ON_ERROR;
|
private static final int CACHE_FLAGS = CacheDataSource.FLAG_IGNORE_CACHE_ON_ERROR;
|
||||||
private static SimpleCache cache;
|
|
||||||
|
|
||||||
private final long maxFileSize;
|
private final long maxFileSize;
|
||||||
private final Context context;
|
private final Context context;
|
||||||
private final String userAgent;
|
private final String userAgent;
|
||||||
private final TransferListener transferListener;
|
private final TransferListener transferListener;
|
||||||
private final DataSource.Factory upstreamDataSourceFactory;
|
private final DataSource.Factory upstreamDataSourceFactory;
|
||||||
|
private final SimpleCache simpleCache;
|
||||||
|
|
||||||
public static class Builder {
|
public static class Builder {
|
||||||
private final Context context;
|
private final Context context;
|
||||||
private final String userAgent;
|
private final String userAgent;
|
||||||
private final TransferListener transferListener;
|
private final TransferListener transferListener;
|
||||||
private DataSource.Factory upstreamDataSourceFactory;
|
private DataSource.Factory upstreamDataSourceFactory;
|
||||||
|
private SimpleCache simpleCache;
|
||||||
|
|
||||||
Builder(@NonNull final Context context,
|
Builder(@NonNull final Context context,
|
||||||
@NonNull final String userAgent,
|
@NonNull final String userAgent,
|
||||||
|
@ -53,8 +46,16 @@ import java.io.File;
|
||||||
this.upstreamDataSourceFactory = upstreamDataSourceFactory;
|
this.upstreamDataSourceFactory = upstreamDataSourceFactory;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setSimpleCache(@NonNull final SimpleCache simpleCache) {
|
||||||
|
this.simpleCache = simpleCache;
|
||||||
|
}
|
||||||
|
|
||||||
public CacheFactory build() {
|
public CacheFactory build() {
|
||||||
return new CacheFactory(context, userAgent, transferListener,
|
if (simpleCache == null) {
|
||||||
|
throw new IllegalStateException("No SimpleCache instance has been specified. "
|
||||||
|
+ "Please specify one with setSimpleCache");
|
||||||
|
}
|
||||||
|
return new CacheFactory(context, userAgent, transferListener, simpleCache,
|
||||||
upstreamDataSourceFactory);
|
upstreamDataSourceFactory);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -62,25 +63,14 @@ import java.io.File;
|
||||||
private CacheFactory(@NonNull final Context context,
|
private CacheFactory(@NonNull final Context context,
|
||||||
@NonNull final String userAgent,
|
@NonNull final String userAgent,
|
||||||
@NonNull final TransferListener transferListener,
|
@NonNull final TransferListener transferListener,
|
||||||
|
@NonNull final SimpleCache simpleCache,
|
||||||
@Nullable final DataSource.Factory upstreamDataSourceFactory) {
|
@Nullable final DataSource.Factory upstreamDataSourceFactory) {
|
||||||
this.context = context;
|
this.context = context;
|
||||||
this.userAgent = userAgent;
|
this.userAgent = userAgent;
|
||||||
this.transferListener = transferListener;
|
this.transferListener = transferListener;
|
||||||
|
this.simpleCache = simpleCache;
|
||||||
this.upstreamDataSourceFactory = upstreamDataSourceFactory;
|
this.upstreamDataSourceFactory = upstreamDataSourceFactory;
|
||||||
|
|
||||||
final File cacheDir = new File(context.getExternalCacheDir(), CACHE_FOLDER_NAME);
|
|
||||||
if (!cacheDir.exists()) {
|
|
||||||
//noinspection ResultOfMethodCallIgnored
|
|
||||||
cacheDir.mkdir();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (cache == null) {
|
|
||||||
final LeastRecentlyUsedCacheEvictor evictor
|
|
||||||
= new LeastRecentlyUsedCacheEvictor(PlayerHelper.getPreferredCacheSize());
|
|
||||||
cache = new SimpleCache(cacheDir, evictor, new StandaloneDatabaseProvider(context));
|
|
||||||
Log.d(TAG, "initExoPlayerCache: cacheDir = " + cacheDir.getAbsolutePath());
|
|
||||||
}
|
|
||||||
|
|
||||||
maxFileSize = PlayerHelper.getPreferredFileSize();
|
maxFileSize = PlayerHelper.getPreferredFileSize();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -112,7 +102,8 @@ import java.io.File;
|
||||||
.createDataSource();
|
.createDataSource();
|
||||||
|
|
||||||
final FileDataSource fileSource = new FileDataSource();
|
final FileDataSource fileSource = new FileDataSource();
|
||||||
final CacheDataSink dataSink = new CacheDataSink(cache, maxFileSize);
|
final CacheDataSink dataSink = new CacheDataSink(simpleCache, maxFileSize);
|
||||||
return new CacheDataSource(cache, dataSource, fileSource, dataSink, CACHE_FLAGS, null);
|
return new CacheDataSource(simpleCache, dataSource, fileSource, dataSink, CACHE_FLAGS,
|
||||||
|
null);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
package org.schabi.newpipe.player.helper;
|
package org.schabi.newpipe.player.helper;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
|
import android.util.Log;
|
||||||
|
|
||||||
import androidx.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
import androidx.annotation.Nullable;
|
import androidx.annotation.Nullable;
|
||||||
|
|
||||||
|
import com.google.android.exoplayer2.database.StandaloneDatabaseProvider;
|
||||||
import com.google.android.exoplayer2.source.ProgressiveMediaSource;
|
import com.google.android.exoplayer2.source.ProgressiveMediaSource;
|
||||||
import com.google.android.exoplayer2.source.SingleSampleMediaSource;
|
import com.google.android.exoplayer2.source.SingleSampleMediaSource;
|
||||||
import com.google.android.exoplayer2.source.dash.DashMediaSource;
|
import com.google.android.exoplayer2.source.dash.DashMediaSource;
|
||||||
|
@ -18,12 +20,16 @@ import com.google.android.exoplayer2.upstream.DataSource;
|
||||||
import com.google.android.exoplayer2.upstream.DefaultDataSource;
|
import com.google.android.exoplayer2.upstream.DefaultDataSource;
|
||||||
import com.google.android.exoplayer2.upstream.DefaultHttpDataSource;
|
import com.google.android.exoplayer2.upstream.DefaultHttpDataSource;
|
||||||
import com.google.android.exoplayer2.upstream.TransferListener;
|
import com.google.android.exoplayer2.upstream.TransferListener;
|
||||||
|
import com.google.android.exoplayer2.upstream.cache.LeastRecentlyUsedCacheEvictor;
|
||||||
|
import com.google.android.exoplayer2.upstream.cache.SimpleCache;
|
||||||
|
|
||||||
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubeOtfDashManifestCreator;
|
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubeOtfDashManifestCreator;
|
||||||
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubePostLiveStreamDvrDashManifestCreator;
|
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubePostLiveStreamDvrDashManifestCreator;
|
||||||
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubeProgressiveDashManifestCreator;
|
import org.schabi.newpipe.extractor.services.youtube.dashmanifestcreators.YoutubeProgressiveDashManifestCreator;
|
||||||
import org.schabi.newpipe.player.datasource.YoutubeHttpDataSource;
|
import org.schabi.newpipe.player.datasource.YoutubeHttpDataSource;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
|
||||||
public class PlayerDataSource {
|
public class PlayerDataSource {
|
||||||
|
|
||||||
public static final int LIVE_STREAM_EDGE_GAP_MILLIS = 10000;
|
public static final int LIVE_STREAM_EDGE_GAP_MILLIS = 10000;
|
||||||
|
@ -43,6 +49,18 @@ public class PlayerDataSource {
|
||||||
*/
|
*/
|
||||||
private static final int MAXIMUM_SIZE_CACHED_GENERATED_MANIFESTS_PER_CACHE = 500;
|
private static final int MAXIMUM_SIZE_CACHED_GENERATED_MANIFESTS_PER_CACHE = 500;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The folder name in which the ExoPlayer cache will be written.
|
||||||
|
*/
|
||||||
|
private static final String CACHE_FOLDER_NAME = "exoplayer";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The {@link SimpleCache} instance which will be used to build
|
||||||
|
* {@link com.google.android.exoplayer2.upstream.cache.CacheDataSource}s instances (with
|
||||||
|
* {@link CacheFactory}).
|
||||||
|
*/
|
||||||
|
private static SimpleCache cache;
|
||||||
|
|
||||||
private final int continueLoadingCheckIntervalBytes;
|
private final int continueLoadingCheckIntervalBytes;
|
||||||
private final CacheFactory.Builder cacheDataSourceFactoryBuilder;
|
private final CacheFactory.Builder cacheDataSourceFactoryBuilder;
|
||||||
private final DataSource.Factory cachelessDataSourceFactory;
|
private final DataSource.Factory cachelessDataSourceFactory;
|
||||||
|
@ -51,8 +69,24 @@ public class PlayerDataSource {
|
||||||
@NonNull final String userAgent,
|
@NonNull final String userAgent,
|
||||||
@NonNull final TransferListener transferListener) {
|
@NonNull final TransferListener transferListener) {
|
||||||
continueLoadingCheckIntervalBytes = PlayerHelper.getProgressiveLoadIntervalBytes(context);
|
continueLoadingCheckIntervalBytes = PlayerHelper.getProgressiveLoadIntervalBytes(context);
|
||||||
|
final File cacheDir = new File(context.getExternalCacheDir(), CACHE_FOLDER_NAME);
|
||||||
|
if (!cacheDir.exists()) {
|
||||||
|
//noinspection ResultOfMethodCallIgnored
|
||||||
|
cacheDir.mkdir();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (cache == null) {
|
||||||
|
final LeastRecentlyUsedCacheEvictor evictor
|
||||||
|
= new LeastRecentlyUsedCacheEvictor(PlayerHelper.getPreferredCacheSize());
|
||||||
|
cache = new SimpleCache(cacheDir, evictor, new StandaloneDatabaseProvider(context));
|
||||||
|
Log.d(PlayerDataSource.class.getSimpleName(), "initExoPlayerCache: cacheDir = "
|
||||||
|
+ cacheDir.getAbsolutePath());
|
||||||
|
}
|
||||||
|
|
||||||
cacheDataSourceFactoryBuilder = new CacheFactory.Builder(context, userAgent,
|
cacheDataSourceFactoryBuilder = new CacheFactory.Builder(context, userAgent,
|
||||||
transferListener);
|
transferListener);
|
||||||
|
cacheDataSourceFactoryBuilder.setSimpleCache(cache);
|
||||||
|
|
||||||
cachelessDataSourceFactory = new DefaultDataSource.Factory(context,
|
cachelessDataSourceFactory = new DefaultDataSource.Factory(context,
|
||||||
new DefaultHttpDataSource.Factory().setUserAgent(userAgent))
|
new DefaultHttpDataSource.Factory().setUserAgent(userAgent))
|
||||||
.setTransferListener(transferListener);
|
.setTransferListener(transferListener);
|
||||||
|
|
Loading…
Reference in New Issue