diff options
author | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-02 23:46:16 +0300 |
---|---|---|
committer | Simon Ogorodnik <Simon.Ogorodnik@jetbrains.com> | 2016-12-02 23:46:16 +0300 |
commit | 13bda7371cc60beaa4cc8302239efd21695b9e1f (patch) | |
tree | 1673a8ff05e3398a9826af09ece88f05fd4c56ae /integration/src | |
parent | 039bb97123fd8a74b9954598d7a102e235fd108d (diff) | |
download | dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.tar.gz dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.tar.bz2 dokka-13bda7371cc60beaa4cc8302239efd21695b9e1f.zip |
Now dokka-fatjar complete isolated from poisonous Gradle environment
Diffstat (limited to 'integration/src')
3 files changed, 106 insertions, 0 deletions
diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt new file mode 100644 index 00000000..548aceb0 --- /dev/null +++ b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaBootstrap.kt @@ -0,0 +1,22 @@ +package org.jetbrains.dokka + +interface DokkaBootstrap { + + fun configure(logger: DokkaLogger, + moduleName: String, + classpath: List<String>, + sources: List<String>, + samples: List<String>, + includes: List<String>, + outputDir: String, + format: String, + includeNonPublic: Boolean, + reportUndocumented: Boolean, + skipEmptyPackages: Boolean, + skipDeprecated: Boolean, + jdkVersion: Int, + generateIndexPages: Boolean, + sourceLinks: List<String>) + + fun generate() +}
\ No newline at end of file diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/DokkaLogger.kt b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaLogger.kt new file mode 100644 index 00000000..fc1fac22 --- /dev/null +++ b/integration/src/main/kotlin/org/jetbrains/dokka/DokkaLogger.kt @@ -0,0 +1,8 @@ +package org.jetbrains.dokka + +interface DokkaLogger { + fun info(message: String) + fun warn(message: String) + fun error(message: String) +} + diff --git a/integration/src/main/kotlin/org/jetbrains/dokka/ProxyUtils.kt b/integration/src/main/kotlin/org/jetbrains/dokka/ProxyUtils.kt new file mode 100644 index 00000000..66356f66 --- /dev/null +++ b/integration/src/main/kotlin/org/jetbrains/dokka/ProxyUtils.kt @@ -0,0 +1,76 @@ +package org.jetbrains.dokka + +import java.lang.reflect.InvocationHandler +import java.lang.reflect.InvocationTargetException +import java.lang.reflect.Method +import java.lang.reflect.Proxy +import java.util.function.Predicate + + +/** + * Warning! Hard reflection magic used here. + * + * Creates [java.lang.reflect.Proxy] with pass through invocation algorithm, + * to create access proxy for [delegate] from [targetClassLoader] to [delegateClassLoader]. + * + * Every object type contained in method calls will be translated to proxy, if [filter.test] will success for it's class + * + */ +@Suppress("UNCHECKED_CAST") +fun <T> automagicTypedProxy(targetClassLoader: ClassLoader, targetType: Class<T>, + delegateClassLoader: ClassLoader, delegate: Any, + filter: Predicate<Class<*>>): T = + automagicProxy(targetClassLoader, targetType, delegateClassLoader, delegate, filter) as T + + +/** + * Warning! Hard reflection magic used here. + * + * Creates [java.lang.reflect.Proxy] with pass through invocation algorithm, + * to create access proxy for [delegate] from [targetClassLoader] to [delegateClassLoader]. + * + * Every object type contained in method calls will be translated to proxy, if [filter.test] will success for it's class + * + */ +fun automagicProxy(targetClassLoader: ClassLoader, targetType: Class<*>, + delegateClassLoader: ClassLoader, delegate: Any, + filter: Predicate<Class<*>>): Any = + Proxy.newProxyInstance( + targetClassLoader, + arrayOf(targetType), + DelegatedInvocationHandler( + delegate, + delegateClassLoader, + filter + ) + ) + +class DelegatedInvocationHandler(private val delegate: Any, + private val delegateClassLoader: ClassLoader, + private val filter: Predicate<Class<*>>) + : InvocationHandler { + + @Throws(Throwable::class) + override fun invoke(proxy: Any, method: Method, args: Array<Any?>?): Any? { + val (argTypes, argValues) = method.parameterTypes.zip(args ?: emptyArray()).map { typeAndValue -> + val (type, value) = typeAndValue + if (filter.test(type)) { + val newType = delegateClassLoader.loadClass(type.name) + val newValue = value?.let { + automagicProxy(delegateClassLoader, newType, type.classLoader, value, filter) + } + newType to newValue + } else + typeAndValue + }.unzip() + + val delegateMethod = delegate.javaClass.getMethod(method.name, *argTypes.toTypedArray()) + try { + delegateMethod.isAccessible = true + return delegateMethod.invoke(delegate, *argValues.toTypedArray()) + } catch (ex: InvocationTargetException) { + throw ex.targetException + } + + } +} |