package org.jetbrains.dokka.plugability import org.jetbrains.dokka.DokkaConfiguration import org.jetbrains.dokka.utilities.parseJson import org.jetbrains.dokka.utilities.toJsonString import kotlin.properties.ReadOnlyProperty import kotlin.reflect.KProperty import kotlin.reflect.KProperty1 import kotlin.reflect.full.createInstance abstract class DokkaPlugin { private val extensionDelegates = mutableListOf>() @PublishedApi internal var context: DokkaContext? = null protected inline fun plugin(): T = context?.plugin(T::class) ?: throwIllegalQuery() protected fun extensionPoint() = ReadOnlyProperty> { thisRef, property -> 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 (configuration.(it.condition)()) ctx.installExtension(it) } } } interface WithUnsafeExtensionSuppression { val extensionsSuppressed: List> } interface Configurable { val pluginsConfiguration: Map } interface ConfigurableBlock inline fun Configurable.pluginConfiguration(block: T.() -> Unit) { val instance = T::class.createInstance().apply(block) val mutablePluginsConfiguration = pluginsConfiguration as MutableMap mutablePluginsConfiguration[P::class.qualifiedName!!] = toJsonString(instance) } inline fun P.query(extension: P.() -> ExtensionPoint): List = context?.let { it[extension()] } ?: throwIllegalQuery() inline fun P.querySingle(extension: P.() -> ExtensionPoint): E = context?.single(extension()) ?: throwIllegalQuery() fun throwIllegalQuery(): Nothing = throw IllegalStateException("Querying about plugins is only possible with dokka context initialised") inline fun configuration(context: DokkaContext): ReadOnlyProperty { return ReadOnlyProperty { _, _ -> val configuration = context.configuration.pluginsConfiguration[ T::class.qualifiedName ?: throw AssertionError("Plugin must be named class") ] parseJson(checkNotNull(configuration)) } }