refactor(android): migrate ReactExoplayerLoadErrorHandlingPolicy to Kotlin (#3995)

* Rename .java to .kt

* refactor(android): migrate ReactExoplayerLoadErrorHandlingPolicy to Kotlin
This commit is contained in:
Seyed Mostafa Hasani 2024-07-15 13:00:53 +03:30 committed by GitHub
parent bed9b8e4d9
commit 4e7c64e707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 27 additions and 36 deletions

View File

@ -1,36 +0,0 @@
package com.brentvatne.exoplayer;
import androidx.media3.common.C;
import androidx.media3.datasource.HttpDataSource.HttpDataSourceException;
import androidx.media3.exoplayer.upstream.DefaultLoadErrorHandlingPolicy;
public final class ReactExoplayerLoadErrorHandlingPolicy extends DefaultLoadErrorHandlingPolicy {
private final int minLoadRetryCount;
public ReactExoplayerLoadErrorHandlingPolicy(int minLoadRetryCount) {
super(minLoadRetryCount);
this.minLoadRetryCount = minLoadRetryCount;
}
@Override
public long getRetryDelayMsFor(LoadErrorInfo loadErrorInfo) {
String errorMessage = loadErrorInfo.exception.getMessage();
if (
loadErrorInfo.exception instanceof HttpDataSourceException &&
errorMessage != null && (errorMessage.equals("Unable to connect") || errorMessage.equals("Software caused connection abort"))
) {
// Capture the error we get when there is no network connectivity and keep retrying it
return 1000; // Retry every second
} else if(loadErrorInfo.errorCount < this.minLoadRetryCount) {
return Math.min((loadErrorInfo.errorCount - 1) * 1000, 5000); // Default timeout handling
} else {
return C.TIME_UNSET; // Done retrying and will return the error immediately
}
}
@Override
public int getMinimumLoadableRetryCount(int dataType) {
return Integer.MAX_VALUE;
}
}

View File

@ -0,0 +1,27 @@
package com.brentvatne.exoplayer
import androidx.media3.common.C
import androidx.media3.datasource.HttpDataSource.HttpDataSourceException
import androidx.media3.exoplayer.upstream.DefaultLoadErrorHandlingPolicy
import androidx.media3.exoplayer.upstream.LoadErrorHandlingPolicy.LoadErrorInfo
import kotlin.math.min
class ReactExoplayerLoadErrorHandlingPolicy(private val minLoadRetryCount: Int) : DefaultLoadErrorHandlingPolicy(minLoadRetryCount) {
override fun getRetryDelayMsFor(loadErrorInfo: LoadErrorInfo): Long {
val errorMessage: String? = loadErrorInfo.exception.message
return if (loadErrorInfo.exception is HttpDataSourceException &&
errorMessage != null &&
(errorMessage == "Unable to connect" || errorMessage == "Software caused connection abort")
) {
// Capture the error we get when there is no network connectivity and keep retrying it
1000 // Retry every second
} else if (loadErrorInfo.errorCount < minLoadRetryCount) {
min(((loadErrorInfo.errorCount - 1) * 1000L), 5000L) // Default timeout handling
} else {
C.TIME_UNSET // Done retrying and will return the error immediately
}
}
override fun getMinimumLoadableRetryCount(dataType: Int): Int = Int.MAX_VALUE
}