forked from ReVanced/revanced-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Patch Options CLI implementation (ReVanced#132)
* feat: Patch Options CLI implementation * fix: remove leftover log message
- Loading branch information
Showing
5 changed files
with
120 additions
and
56 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
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
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
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,62 @@ | ||
package app.revanced.utils | ||
|
||
import app.revanced.cli.command.MainCommand.logger | ||
import app.revanced.patcher.data.Data | ||
import app.revanced.patcher.extensions.PatchExtensions.options | ||
import app.revanced.patcher.extensions.PatchExtensions.patchName | ||
import app.revanced.patcher.patch.Patch | ||
import cc.ekblad.toml.encodeTo | ||
import cc.ekblad.toml.model.TomlValue | ||
import cc.ekblad.toml.serialization.from | ||
import cc.ekblad.toml.tomlMapper | ||
import java.io.File | ||
|
||
private typealias PatchList = List<Class<out Patch<Data>>> | ||
private typealias OptionsMap = Map<String, Map<String, Any>> | ||
|
||
private const val NULL = "null" | ||
|
||
object OptionsLoader { | ||
@JvmStatic | ||
private val mapper = tomlMapper {} | ||
|
||
@JvmStatic | ||
fun init(file: File, patches: PatchList) { | ||
if (!file.exists()) file.createNewFile() | ||
val path = file.toPath() | ||
val map = mapper.decodeWithDefaults( | ||
generateDefaults(patches), | ||
TomlValue.from(path) | ||
).also { mapper.encodeTo(path, it) } | ||
readAndSet(map, patches) | ||
} | ||
|
||
private fun readAndSet(map: OptionsMap, patches: PatchList) { | ||
for ((patchName, options) in map) { | ||
val patch = patches.find { it.patchName == patchName } ?: continue | ||
val patchOptions = patch.options ?: continue | ||
for ((key, value) in options) { | ||
try { | ||
patchOptions[key] = value.let { | ||
if (it == NULL) null else it | ||
} | ||
} catch (e: Exception) { | ||
logger.warn("Error while setting option $key for patch $patchName: ${e.message}") | ||
e.printStackTrace() | ||
} | ||
} | ||
} | ||
} | ||
|
||
private fun generateDefaults(patches: PatchList) = buildMap { | ||
for (patch in patches) { | ||
val options = patch.options ?: continue | ||
if (!options.iterator().hasNext()) continue | ||
put(patch.patchName, buildMap { | ||
for (option in options) { | ||
put(option.key, option.value ?: NULL) | ||
} | ||
}) | ||
} | ||
} | ||
} |
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