Architecture overview¶
Normally, you would think that a tool like Dokka simply parses some programming language sources and generates
HTML pages for whatever it sees along the way, with little to no abstractions. That would be the simplest and
shortest way to implement a documentation engine.
However, it was clear that Dokka may need to generate documentation from various sources (not only Kotlin), that users
might request additional output formats (like Markdown), that users might need additional features like supporting
custom KDoc tags or rendering mermaid.js diagrams - all these things would require changing a lot of code inside
Dokka itself if all solutions were hardcoded.
For this reason, Dokka was built from the ground up to be extensible and customizable. You can think of the general
flow of generating documentation with Dokka as mapping one intermediate representation / abstraction into another.
You, as a Dokka developer or a plugin writer, can use extension points and introduce selective changes to the
model on one particular level without touching the rest.
Overview of data model¶
Below you can find the general flow and transformation of Dokka's models.
flowchart TD
Input --> Documentables --> Documentables --> Pages --> Pages --> Output
Input- generalization of sources, by defaultKotlin/Javasources, but could be virtually anythingDocumentables- unified data model that represents any parsed sources as a tree. Examples: class/function/package/propertyPages- universal model that represents pages (e.g a function/property page) and its content (lists, text, code blocks) that the users needs to see. Not to be confused with.htmlpages. Goes hand in hand with so-called Content Model.Output- specific output format likeHTML/Markdown/Javadoc/etc. This is a mapping of pages/content model to some human-readable and visual representation. For instance:PageNodeis mapped as.htmlfile forHTMLformat.mdfile forMarkdownformat
ContentListis mapped as<li>/<ul>forHTMLformat1./*forMarkdownformat
ContentCodeBlockis mapped as<code>or<pre>with some CSS styles inHTMLformat- Text wrapped in triple backticks for
Markdownformat
For a deeper dive into Dokka's data model with more examples and details, see sections about Documentables and Page/Content
Overview of extension points¶
An extension point usually represents some pluggable interface that performs an action during one of the stages of generating documentation. An extension is therefore an implementation of that interface which is extending the extension point.
You can create extension points, provide your own implementations (extensions) and configure them. All of this is possible with Dokka's plugin/extension point API.
For a deeper dive into extensions and extension points with more examples and details, see Introduction to Extensions.
Here's a sneak peek of the DSL:
class MyPlugin : DokkaPlugin() {
// create an extension point for other developers
val signatureProvider by extensionPoint<SignatureProvider>()
// provide a default implementation
val defaultSignatureProvider by extending {
signatureProvider with KotlinSignatureProvider()
}
// register our own extension in base plugin and override its default
val dokkaBasePlugin by lazy { plugin<DokkaBase>() }
val multimoduleLocationProvider by extending {
(dokkaBasePlugin.locationProviderFactory
providing MultimoduleLocationProvider::Factory
override dokkaBasePlugin.locationProvider)
}
}
// use a registered extention, pretty much dependency injection
class MyExtension(val context: DokkaContext) {
val signatureProvider: SignatureProvider = context.plugin<MyPlugin>().querySingle { signatureProvider }
fun doSomething() {
signatureProvider.signature(..)
}
}
interface SignatureProvider {
fun signature(documentable: Documentable): List<ContentNode>
}
class KotlinSignatureProvider : SignatureProvider {
override fun signature(documentable: Documentable): List<ContentNode> = listOf()
}
Historical context¶
This is a second iteration of Dokka that was built from scratch.
If you want to learn more about why Dokka has been designed this way, watch this great talk by Paweł Marks: New Dokka - Designed for Fearless Creativity. The general principles and general architecture are the same, although it may be outdated in some areas, so please double-check.