|
|
|
@ -1,30 +1,18 @@ |
|
|
|
|
package io.legado.app.utils |
|
|
|
|
|
|
|
|
|
import android.util.Log |
|
|
|
|
import androidx.core.os.postDelayed |
|
|
|
|
import com.google.re2j.Pattern |
|
|
|
|
import com.script.SimpleBindings |
|
|
|
|
import io.legado.app.constant.AppConst |
|
|
|
|
import io.legado.app.exception.RegexTimeoutException |
|
|
|
|
import io.legado.app.help.CrashHandler |
|
|
|
|
import io.legado.app.help.coroutine.Coroutine |
|
|
|
|
import kotlinx.coroutines.suspendCancellableCoroutine |
|
|
|
|
import splitties.init.appCtx |
|
|
|
|
import kotlin.coroutines.resume |
|
|
|
|
import kotlin.coroutines.resumeWithException |
|
|
|
|
|
|
|
|
|
private val handler by lazy { buildMainHandler() } |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 带有超时检测的正则替换 |
|
|
|
|
*/ |
|
|
|
|
suspend fun CharSequence.replace(regex: Regex, replacement: String, timeout: Long): String { |
|
|
|
|
val charSequence = this@replace |
|
|
|
|
fun CharSequence.replaceRegex(regex: String, replacement: String): String { |
|
|
|
|
val charSequence = this |
|
|
|
|
val isJs = replacement.startsWith("@js:") |
|
|
|
|
val replacement1 = if (isJs) replacement.substring(4) else replacement |
|
|
|
|
return suspendCancellableCoroutine { block -> |
|
|
|
|
val coroutine = Coroutine.async { |
|
|
|
|
try { |
|
|
|
|
val pattern = regex.toPattern() |
|
|
|
|
val pattern = Pattern.compile(regex) |
|
|
|
|
val matcher = pattern.matcher(charSequence) |
|
|
|
|
val stringBuffer = StringBuffer() |
|
|
|
|
while (matcher.find()) { |
|
|
|
@ -40,25 +28,6 @@ suspend fun CharSequence.replace(regex: Regex, replacement: String, timeout: Lon |
|
|
|
|
} |
|
|
|
|
matcher.appendTail(stringBuffer) |
|
|
|
|
Log.e("regex", "end") |
|
|
|
|
block.resume(stringBuffer.toString()) |
|
|
|
|
} catch (e: Exception) { |
|
|
|
|
block.resumeWithException(e) |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
handler.postDelayed(timeout) { |
|
|
|
|
if (coroutine.isActive) { |
|
|
|
|
val timeoutMsg = "替换超时,3秒后还未结束将重启应用\n替换规则$regex\n替换内容:${this}" |
|
|
|
|
val exception = RegexTimeoutException(timeoutMsg) |
|
|
|
|
block.cancel(exception) |
|
|
|
|
appCtx.longToastOnUi(timeoutMsg) |
|
|
|
|
CrashHandler.saveCrashInfo2File(exception) |
|
|
|
|
handler.postDelayed(3000) { |
|
|
|
|
if (coroutine.isActive) { |
|
|
|
|
appCtx.restart() |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return stringBuffer.toString() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|