This commit is contained in:
2022-02-10 21:09:54 +08:00
parent a859b0c739
commit 9cbe7c4d34
2 changed files with 76 additions and 1 deletions

View File

@@ -0,0 +1,43 @@
/*
* YukiHookAPI - An efficient Kotlin version of the Xposed Hook API.
* Copyright (C) 2019-2022 HighCapable
* https://github.com/fankes/YukiHookAPI
*
* MIT License
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* This file is Created by fankes on 2022/2/10.
*/
package com.highcapable.yukihookapi.hook.bean
/**
* 这是一个不确定性 [Class] 类名装载器
* @param name 可指定多个类名 - 将会自动匹配存在的第一个类名
*/
class VariousClass(vararg var name: String) {
override fun toString(): String {
var result = ""
return if (name.isNotEmpty()) {
name.forEach { result += "\"$it\"," }
"[${result.substring(0, result.lastIndex)}]"
} else "[]"
}
}

View File

@@ -32,6 +32,7 @@ package com.highcapable.yukihookapi.hook.param
import android.content.pm.ApplicationInfo
import com.highcapable.yukihookapi.annotation.DoNotUseMethod
import com.highcapable.yukihookapi.hook.bean.HookClass
import com.highcapable.yukihookapi.hook.bean.VariousClass
import com.highcapable.yukihookapi.hook.core.YukiHookCreater
import com.highcapable.yukihookapi.hook.entity.YukiBaseHooker
import com.highcapable.yukihookapi.hook.factory.hookClass
@@ -139,6 +140,37 @@ open class PackageParam(private var wrapper: PackageParamWrapper? = null) {
HookClass(name = name, throwable = e)
}
/**
* 通过 [appClassLoader] 查询并装载 [Class]
*
* 使用此方法查询将会取 [name] 其中命中存在的第一个 [Class] 作为结果
* @param name 可填入多个类名 - 自动匹配
* @return [HookClass]
*/
fun findClass(vararg name: String) = findClass(VariousClass(*name))
/**
* 通过 [appClassLoader] 查询并装载 [VariousClass]
* @param various 实例
* @return [HookClass]
*/
fun findClass(various: VariousClass): HookClass {
var finalClass: Class<*>? = null
if (various.name.isNotEmpty())
run {
various.name.forEach {
runCatching {
finalClass = appClassLoader.loadClass(it)
return@run
}
}
}
return finalClass?.hookClass ?: HookClass(
name = "VariousClass",
throwable = Throwable("VariousClass match failed of those $various")
)
}
/**
* Hook 方法、构造类
* @param initiate 方法体
@@ -162,7 +194,7 @@ open class PackageParam(private var wrapper: PackageParamWrapper? = null) {
private fun HookClass.bind() = try {
appClassLoader.loadClass(name).hookClass
} catch (e: Throwable) {
HookClass(name = name, throwable = e)
HookClass(name = name, throwable = throwable ?: e)
}
/**