forked from ReVanced/revanced-cli
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
70 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
67 changes: 67 additions & 0 deletions
67
src/main/kotlin/app/revanced/cli/command/ListCompatibleVersions.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
package app.revanced.cli.command | ||
|
||
import app.revanced.library.PackageName | ||
import app.revanced.library.PatchUtils | ||
import app.revanced.library.VersionMap | ||
import app.revanced.patcher.PatchBundleLoader | ||
import picocli.CommandLine | ||
import java.io.File | ||
import java.util.logging.Logger | ||
|
||
@CommandLine.Command( | ||
name = "list-versions", | ||
description = [ | ||
"List the most common compatible versions of apps that are compatible " + | ||
"with the patches in the supplied patch bundles.", | ||
], | ||
) | ||
internal class ListCompatibleVersions : Runnable { | ||
private val logger = Logger.getLogger(ListCompatibleVersions::class.java.name) | ||
|
||
@CommandLine.Parameters( | ||
description = ["Paths to patch bundles."], | ||
arity = "1..*", | ||
) | ||
private lateinit var patchBundles: Array<File> | ||
|
||
@CommandLine.Option( | ||
names = ["-f", "--filter-package-names"], | ||
description = ["Filter patches by package name."], | ||
) | ||
private var packageNames: Set<String>? = null | ||
|
||
@CommandLine.Option( | ||
names = ["-u", "--count-unused-patches"], | ||
description = ["Count patches that are not used by default."], | ||
showDefaultValue = CommandLine.Help.Visibility.ALWAYS, | ||
) | ||
private var countUnusedPatches: Boolean = false | ||
|
||
override fun run() { | ||
val patches = PatchBundleLoader.Jar(*patchBundles) | ||
|
||
fun VersionMap.buildVersionsString(): String { | ||
if (isEmpty()) return "Any" | ||
|
||
fun buildPatchesCountString(count: Int) = if (count == 1) "1 patch" else "$count patches" | ||
|
||
return entries.joinToString("\n") { (version, count) -> | ||
"$version (${buildPatchesCountString(count)})" | ||
} | ||
} | ||
|
||
fun buildString(entry: Map.Entry<PackageName, VersionMap>) = | ||
buildString { | ||
val (name, versions) = entry | ||
appendLine("Package name: $name") | ||
appendLine("Most common compatible versions:") | ||
appendLine(versions.buildVersionsString().prependIndent("\t")) | ||
} | ||
|
||
PatchUtils.getMostCommonCompatibleVersions( | ||
patches, | ||
packageNames, | ||
countUnusedPatches, | ||
).entries.joinToString("\n", transform = ::buildString).let(logger::info) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters