jvmMain.mu.internal.KLoggerNameResolver.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonarlint-core Show documentation
Show all versions of sonarlint-core Show documentation
Common library used by some SonarLint flavors
package mu.internal
import java.lang.reflect.Modifier
/**
* Resolves name of java classes
*/
@Suppress("NOTHING_TO_INLINE")
internal object KLoggerNameResolver {
/**
* get class name for function by the package of the function
*/
inline internal fun name(noinline func: () -> Unit): String {
val name = func.javaClass.name
val slicedName = when {
name.contains("Kt$") -> name.substringBefore("Kt$")
name.contains("$") -> name.substringBefore("$")
else -> name
}
return slicedName
}
/**
* get class name for java class (that usually represents kotlin class)
*/
inline internal fun name(forClass: Class): String =
unwrapCompanionClass(forClass).name
/**
* unwrap companion class to enclosing class given a Java Class
*/
inline private fun unwrapCompanionClass(clazz: Class): Class<*> {
if (clazz.enclosingClass != null) {
try {
val field = clazz.enclosingClass.getField(clazz.simpleName)
if (Modifier.isStatic(field.modifiers) && field.type == clazz) {
// && field.get(null) === obj
// the above might be safer but problematic with initialization order
return clazz.enclosingClass
}
} catch (e: Exception) {
//ok, it is not a companion object
}
}
return clazz
}
}