Skip to content

Commit

Permalink
Merge pull request #3460 from adhu2018/harmless
Browse files Browse the repository at this point in the history
优化
  • Loading branch information
gedoor authored Nov 1, 2023
2 parents 922f3fc + 060ffd6 commit 6c56dcd
Show file tree
Hide file tree
Showing 20 changed files with 17 additions and 26 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
*.iml
.gradle
/local.properties
local.properties
.DS_Store
/build
/captures
Expand All @@ -12,5 +12,5 @@ node_modules/
/app/google
/app/gradle.properties
package-lock.json
.idea/*
.idea/

2 changes: 2 additions & 0 deletions app/src/main/java/io/legado/app/data/entities/ReplaceRule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import androidx.room.Entity
import androidx.room.Index
import androidx.room.PrimaryKey
import io.legado.app.R
import io.legado.app.constant.AppLog
import io.legado.app.exception.NoStackTraceException
import kotlinx.parcelize.Parcelize
import splitties.init.appCtx
Expand Down Expand Up @@ -84,6 +85,7 @@ data class ReplaceRule(
try {
Pattern.compile(pattern)
} catch (ex: PatternSyntaxException) {
AppLog.put(ex.message)
return false
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package io.legado.app.data.entities

import androidx.room.Entity
import androidx.room.PrimaryKey
import io.legado.app.utils.GSON


@Entity(tableName = "txtTocRules")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ fun Book.getExportFileName(suffix: String): String {
RhinoScriptEngine.eval(jsStr, bindings).toString() + "." + suffix
}.onFailure {
AppLog.put("导出书名规则错误,使用默认规则\n${it.localizedMessage}", it)
}.getOrDefault("${name} 作者:${getRealAuthor()}.$suffix")
}.getOrDefault("$name 作者:${getRealAuthor()}.$suffix")
}

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package io.legado.app.help.http

import android.os.Build
import androidx.annotation.RequiresApi
import io.legado.app.help.http.CookieManager.cookieJarHeader
import io.legado.app.help.http.SSLHelper.unsafeTrustManager
import okhttp3.Call
Expand Down Expand Up @@ -797,6 +799,7 @@ class ObsoleteUrlFactory(private var client: OkHttpClient) : URLStreamHandlerFac
}

// Should only be invoked on Java 8+ or Android API 24+.
@RequiresApi(Build.VERSION_CODES.N)
override fun getContentLengthLong(): Long {
return delegate.contentLengthLong
}
Expand Down Expand Up @@ -846,6 +849,7 @@ class ObsoleteUrlFactory(private var client: OkHttpClient) : URLStreamHandlerFac
}

// Should only be invoked on Java 8+ or Android API 24+.
@RequiresApi(Build.VERSION_CODES.N)
override fun getHeaderFieldLong(field: String, defaultValue: Long): Long {
return delegate.getHeaderFieldLong(field, defaultValue)
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/io/legado/app/lib/prefs/Preference.kt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ open class Preference(context: Context, attrs: AttributeSet) :
val tvTitle = viewHolder.findViewById(R.id.preference_title) as? TextView
tvTitle?.let {
tvTitle.text = title
tvTitle.isVisible = title != null && title.isNotEmpty()
tvTitle.isVisible = !title.isNullOrEmpty()
}
val tvSummary = viewHolder.findViewById(R.id.preference_desc) as? TextView
tvSummary?.let {
Expand Down
1 change: 0 additions & 1 deletion app/src/main/java/io/legado/app/model/CheckSource.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package io.legado.app.model
import android.content.Context
import io.legado.app.R
import io.legado.app.constant.IntentAction
import io.legado.app.data.entities.BookSource
import io.legado.app.data.entities.BookSourcePart
import io.legado.app.help.CacheManager
import io.legado.app.help.IntentData
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class AnalyzeByJSonPath(json: Any) {
val results = ArrayList<ArrayList<*>>()
for (rl in rules) {
val temp = getList(rl)
if (temp != null && temp.isNotEmpty()) {
if (!temp.isNullOrEmpty()) {
results.add(temp)
if (temp.isNotEmpty() && ruleAnalyzes.elementsType == "||") {
break
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ class AnalyzeByJSoup(doc: Any) {
}

val len = elements.size
val lastIndexes = (indexDefault.size - 1).takeIf { it != -1 } ?: indexes.size - 1
val lastIndexes = (indexDefault.size - 1).takeIf { it != -1 } ?: (indexes.size - 1)
val indexSet = mutableSetOf<Int>()

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ class AnalyzeByXPath(doc: Any) {
val results = ArrayList<List<JXNode>>()
for (rl in rules) {
val temp = getElements(rl)
if (temp != null && temp.isNotEmpty()) {
if (!temp.isNullOrEmpty()) {
results.add(temp)
if (temp.isNotEmpty() && ruleAnalyzes.elementsType == "||") {
break
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ import io.legado.app.model.analyzeRule.AnalyzeUrl
import io.legado.app.utils.*
import kotlinx.coroutines.runBlocking
import org.apache.commons.text.StringEscapeUtils
import org.jsoup.nodes.Entities
import splitties.init.appCtx
import java.io.*
import java.util.regex.Pattern
Expand Down
6 changes: 2 additions & 4 deletions app/src/main/java/io/legado/app/model/localBook/PdfFile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,7 @@ class PdfFile(var book: Book) {
if (!File(book.coverUrl!!).exists()) {

FileOutputStream(FileUtils.createFileIfNotExist(book.coverUrl!!)).use { out ->
openPdfPage(renderer, 0)?.let { cover ->
cover.compress(Bitmap.CompressFormat.JPEG, 90, out)
}
openPdfPage(renderer, 0)?.compress(Bitmap.CompressFormat.JPEG, 90, out)
out.flush()
}
}
Expand Down Expand Up @@ -159,7 +157,7 @@ class PdfFile(var book: Book) {

buildString {
val start = chapter.index * PAGE_SIZE
val end = Math.min((chapter.index + 1) * PAGE_SIZE, renderer.pageCount)
val end = ((chapter.index + 1) * PAGE_SIZE).coerceAtMost(renderer.pageCount)
(start until end).forEach {
append("<img src=").append('"').append(it).append('"').append(" >")
.append('\n')
Expand Down
2 changes: 0 additions & 2 deletions app/src/main/java/io/legado/app/model/localBook/UmdFile.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import io.legado.app.data.entities.BookChapter
import io.legado.app.utils.*
import me.ag2s.umdlib.domain.UmdBook
import me.ag2s.umdlib.umd.UmdReader
import splitties.init.appCtx

import java.io.File
import java.io.InputStream

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ import io.legado.app.utils.HtmlFormatter
import io.legado.app.utils.MD5Utils
import io.legado.app.utils.NetworkUtils
import io.legado.app.utils.activityPendingIntent
import io.legado.app.utils.buildMainHandler
import io.legado.app.utils.cnCompare
import io.legado.app.utils.createFolderIfNotExist
import io.legado.app.utils.isContentScheme
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
package io.legado.app.ui.book.read.page.entities

import android.graphics.Paint.FontMetrics
import android.text.TextPaint
import androidx.annotation.Keep
import io.legado.app.ui.book.read.page.entities.column.BaseColumn
import io.legado.app.ui.book.read.page.provider.ChapterProvider
import io.legado.app.utils.textHeight

/**
* 行信息
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package io.legado.app.ui.book.read.page.entities.column
import android.graphics.Canvas
import android.graphics.Paint
import android.graphics.Path
import android.text.StaticLayout
import androidx.annotation.Keep
import io.legado.app.ui.book.read.page.provider.ChapterProvider

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import androidx.recyclerview.widget.RecyclerView
import io.legado.app.R
import io.legado.app.base.adapter.ItemViewHolder
import io.legado.app.base.adapter.RecyclerAdapter
import io.legado.app.data.entities.ReplaceRule
import io.legado.app.data.entities.TxtTocRule
import io.legado.app.databinding.ItemTxtTocRuleBinding
import io.legado.app.lib.theme.backgroundColor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,6 @@ class RefreshProgressBar @JvmOverloads constructor(

if (secondDurProgress > 0 && secondMaxProgress > 0) {
var secondDur = secondDurProgress
if (secondDur < 0) {
secondDur = 0
}
if (secondDur > secondMaxProgress) {
secondDur = secondMaxProgress
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ val legadoPattern: Pattern = Pattern.compile("\\|\\||&&|%%|@js:|@Json:|@css:|@@|
val jsonPattern: Pattern = Pattern.compile("\"[A-Za-z0-9]*?\"\\:|\"|\\{|\\}|\\[|\\]")
val wrapPattern: Pattern = Pattern.compile("\\\\n")
val operationPattern: Pattern =
Pattern.compile(":|==|>|<|!=|>=|<=|->|=|>|<|%|-|-=|%=|\\+|\\-|\\-=|\\+=|\\^|\\&|\\|::|\\?|\\*")
Pattern.compile(":|==|>|<|!=|>=|<=|->|=|%|-|-=|%=|\\+|\\-|\\-=|\\+=|\\^|\\&|\\|::|\\?|\\*")
val jsPattern: Pattern = Pattern.compile("var")

fun CodeView.addLegadoPattern() {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,5 @@ plugins {
}

tasks.register('clean', Delete) {
delete rootProject.buildDir
delete rootProject.layout.buildDirectory
}

0 comments on commit 6c56dcd

Please sign in to comment.