mirror of
https://github.com/ReVanced/revanced-patches.git
synced 2026-01-22 10:23:55 +00:00
63 lines
2.5 KiB
Kotlin
63 lines
2.5 KiB
Kotlin
package app.revanced.patches.shared.integrations
|
|
|
|
import app.revanced.patcher.data.BytecodeContext
|
|
import app.revanced.patcher.extensions.InstructionExtensions.addInstruction
|
|
import app.revanced.patcher.fingerprint.MethodFingerprint
|
|
import app.revanced.patcher.patch.BytecodePatch
|
|
import app.revanced.patcher.patch.PatchException
|
|
import app.revanced.patches.shared.integrations.AbstractIntegrationsPatch.IntegrationsFingerprint.RegisterResolver
|
|
import com.android.tools.smali.dexlib2.Opcode
|
|
import com.android.tools.smali.dexlib2.iface.ClassDef
|
|
import com.android.tools.smali.dexlib2.iface.Method
|
|
|
|
abstract class AbstractIntegrationsPatch(
|
|
private val integrationsDescriptor: String,
|
|
private val hooks: Set<IntegrationsFingerprint>
|
|
) : BytecodePatch(hooks) {
|
|
/**
|
|
* [MethodFingerprint] for integrations.
|
|
*
|
|
* @param contextRegisterResolver A [RegisterResolver] to get the register.
|
|
* @see MethodFingerprint
|
|
*/
|
|
abstract class IntegrationsFingerprint(
|
|
returnType: String? = null,
|
|
accessFlags: Int? = null,
|
|
parameters: Iterable<String>? = null,
|
|
opcodes: Iterable<Opcode?>? = null,
|
|
strings: Iterable<String>? = null,
|
|
customFingerprint: ((methodDef: Method, classDef: ClassDef) -> Boolean)? = null,
|
|
private val contextRegisterResolver: (Method) -> Int = object : RegisterResolver {}
|
|
) : MethodFingerprint(
|
|
returnType,
|
|
accessFlags,
|
|
parameters,
|
|
opcodes,
|
|
strings,
|
|
customFingerprint
|
|
) {
|
|
fun invoke(integrationsDescriptor: String) {
|
|
result?.mutableMethod?.let { method ->
|
|
val contextRegister = contextRegisterResolver(method)
|
|
|
|
method.addInstruction(
|
|
0,
|
|
"sput-object v$contextRegister, " +
|
|
"$integrationsDescriptor->context:Landroid/content/Context;"
|
|
)
|
|
} ?: throw PatchException("Could not find hook target fingerprint.")
|
|
}
|
|
|
|
interface RegisterResolver : (Method) -> Int {
|
|
override operator fun invoke(method: Method) = method.implementation!!.registerCount - 1
|
|
}
|
|
}
|
|
|
|
override fun execute(context: BytecodeContext) {
|
|
if (context.findClass(integrationsDescriptor) == null) throw PatchException(
|
|
"Integrations have not been merged yet. This patch can not succeed without merging the integrations."
|
|
)
|
|
|
|
for (hook in hooks) hook.invoke(integrationsDescriptor)
|
|
}
|
|
} |