package org.jetbrains.dokka.plugability import org.jetbrains.dokka.DokkaConfiguration import kotlin.properties.ReadOnlyProperty import kotlin.reflect.KProperty import kotlin.reflect.KProperty1 private typealias ExtensionDelegate = ReadOnlyProperty> abstract class DokkaPlugin { private val extensionDelegates = mutableListOf>() @PublishedApi internal var context: DokkaContext? = null protected inline fun plugin(): T = context?.plugin(T::class) ?: throw IllegalStateException("Querying about plugins is only possible with dokka context initialised") protected fun extensionPoint() = object : ReadOnlyProperty> { override fun getValue(thisRef: DokkaPlugin, property: KProperty<*>) = ExtensionPoint( thisRef::class.qualifiedName ?: throw AssertionError("Plugin must be named class"), property.name ) } protected fun extending(definition: ExtendingDSL.() -> Extension) = ExtensionProvider(definition) protected class ExtensionProvider internal constructor( private val definition: ExtendingDSL.() -> Extension ) { operator fun provideDelegate(thisRef: DokkaPlugin, property: KProperty<*>) = lazy { ExtendingDSL( thisRef::class.qualifiedName ?: throw AssertionError("Plugin must be named class"), property.name ).definition() }.also { thisRef.extensionDelegates += property } } internal fun internalInstall(ctx: DokkaContextConfiguration, configuration: DokkaConfiguration) { extensionDelegates.asSequence() .filterIsInstance>>() // should be always true .map { it.get(this) } .forEach { if(it.condition.invoke(configuration)) ctx.addExtensionDependencies(it) } } }