mirror of
https://github.com/jrpie/Launcher.git
synced 2025-06-28 11:55:44 +02:00
Move algorithms to separate file
This commit is contained in:
parent
51cc55af98
commit
3917e34239
2 changed files with 63 additions and 61 deletions
|
@ -8,9 +8,10 @@ import de.jrpie.android.launcher.actions.AppAction
|
||||||
import de.jrpie.android.launcher.actions.Gesture
|
import de.jrpie.android.launcher.actions.Gesture
|
||||||
import de.jrpie.android.launcher.actions.ShortcutAction
|
import de.jrpie.android.launcher.actions.ShortcutAction
|
||||||
import de.jrpie.android.launcher.preferences.LauncherPreferences
|
import de.jrpie.android.launcher.preferences.LauncherPreferences
|
||||||
|
import de.jrpie.android.launcher.util.countOccurrences
|
||||||
|
import de.jrpie.android.launcher.util.isSubsequent
|
||||||
import java.util.Locale
|
import java.util.Locale
|
||||||
import kotlin.text.Regex.Companion.escape
|
import kotlin.text.Regex.Companion.escape
|
||||||
import kotlin.text.iterator
|
|
||||||
|
|
||||||
class AppFilter(
|
class AppFilter(
|
||||||
var context: Context,
|
var context: Context,
|
||||||
|
@ -63,7 +64,7 @@ class AppFilter(
|
||||||
|
|
||||||
if (query.isEmpty()) {
|
if (query.isEmpty()) {
|
||||||
return apps
|
return apps
|
||||||
} else {
|
}
|
||||||
val r: MutableSet<AbstractDetailedAppInfo> = hashSetOf()
|
val r: MutableSet<AbstractDetailedAppInfo> = hashSetOf()
|
||||||
val normalizedQuery: String = normalize(query)
|
val normalizedQuery: String = normalize(query)
|
||||||
val subsequentResult: MutableList<AbstractDetailedAppInfo> = mutableListOf()
|
val subsequentResult: MutableList<AbstractDetailedAppInfo> = mutableListOf()
|
||||||
|
@ -95,41 +96,7 @@ class AppFilter(
|
||||||
}
|
}
|
||||||
return r.toList()
|
return r.toList()
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns true if `search` is a subsequence of `text`.
|
|
||||||
* A subsequence means all characters in `search` appear in `text`
|
|
||||||
* in the same order, but not necessarily contiguously.
|
|
||||||
*/
|
|
||||||
fun isSubsequent(text: String, search: String): Boolean {
|
|
||||||
var i = 0
|
|
||||||
for (char in text) {
|
|
||||||
if (char != search[i]) continue
|
|
||||||
i++
|
|
||||||
if (i == search.length) {
|
|
||||||
return true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return false
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the amount of characters from `search` that occur inside `text`.
|
|
||||||
* If `text` contains the same character multiple times, it is only counted
|
|
||||||
* as often as it occurs in `search`.
|
|
||||||
*/
|
|
||||||
fun countOccurrences(text: String, search: String): Int {
|
|
||||||
val foundCharacters = mutableListOf<Char>()
|
|
||||||
var mutText = text
|
|
||||||
for (char in search) {
|
|
||||||
if (mutText.contains(char)) {
|
|
||||||
foundCharacters.add(char)
|
|
||||||
mutText = mutText.replaceFirst(char.toString(), "")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return foundCharacters.size
|
|
||||||
}
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
enum class AppSetVisibility(
|
enum class AppSetVisibility(
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
package de.jrpie.android.launcher.util
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns true if `search` is a subsequence of `text`.
|
||||||
|
* A subsequence means all characters in `search` appear in `text`
|
||||||
|
* in the same order, but not necessarily contiguously.
|
||||||
|
*/
|
||||||
|
fun isSubsequent(text: String, search: String): Boolean {
|
||||||
|
var i = 0
|
||||||
|
for (char in text) {
|
||||||
|
if (char != search[i]) continue
|
||||||
|
i++
|
||||||
|
if (i == search.length) {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the amount of characters from `search` that occur inside `text`.
|
||||||
|
* If `text` contains the same character multiple times, it is only counted
|
||||||
|
* as often as it occurs in `search`.
|
||||||
|
*/
|
||||||
|
fun countOccurrences(text: String, search: String): Int {
|
||||||
|
val foundCharacters = mutableListOf<Char>()
|
||||||
|
var mutText = text
|
||||||
|
for (char in search) {
|
||||||
|
if (mutText.contains(char)) {
|
||||||
|
foundCharacters.add(char)
|
||||||
|
mutText = mutText.replaceFirst(char.toString(), "")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return foundCharacters.size
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue