1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package org.jetbrains.dokka.renderers
import org.jetbrains.dokka.pages.*
import org.jetbrains.dokka.resolvers.LocationProvider
abstract class DefaultRenderer(val outputDir: String, val fileWriter: FileWriter, val locationProvider: LocationProvider): Renderer {
protected abstract fun buildHeader(level: Int, text: String): String
protected abstract fun buildNewLine(): String
protected abstract fun buildLink(text: String, address: String): String
protected abstract fun buildCode(code: String): String
protected abstract fun buildNavigation(): String // TODO
protected open fun buildText(text: String): String = text
protected open fun buildGroup(children: List<ContentNode>): String = children.joinToString { it.build() }
protected open fun buildComment(parts: List<ContentNode>): String = parts.joinToString { it.build() }
protected open fun buildSymbol(parts: List<ContentNode>): String = parts.joinToString { it.build() }
protected open fun buildBlock(name: String, content: List<ContentNode>) = buildHeader(2, name) + content.joinToString("\n") { it.build() }
protected open fun ContentNode.build(): String =
when(this) {
is ContentText -> buildText(this.text)
is ContentComment -> buildComment(this.parts)
is ContentSymbol -> buildSymbol(this.parts)
is ContentCode -> buildCode(this.code)
is ContentBlock -> buildBlock(this.name, this.children)
is ContentLink -> buildLink(this.text, locationProvider.resolve(this.address, this.platforms))
is ContentGroup -> buildGroup(this.children)
else -> ""
}
protected open fun buildPageContent(page: PageNode): String =
buildHeader(1, page.name) + page.content.joinToString("\n") { it.build() }
protected open fun renderPage(page: PageNode) = fileWriter.write(locationProvider.resolve(page), buildPageContent(page))
protected open fun renderPages(root: PageNode) {
renderPage(root)
root.children.forEach { renderPages(it) }
}
protected open fun renderPackageList(root: PageNode) =
getPackageNamesAndPlatforms(root)
.keys
.joinToString("\n")
.also { fileWriter.write("package-list", it, "") }
protected open fun getPackageNamesAndPlatforms(root: PageNode): Map<String, List<PlatformData>> =
root.children
.map(::getPackageNamesAndPlatforms)
.fold(emptyMap<String, List<PlatformData>>()) { e, acc -> acc + e } +
if (root is PackagePageNode) {
mapOf(root.name to root.platforms())
} else {
emptyMap()
}
override fun render(root: PageNode) {
renderPackageList(root)
renderPages(root)
}
}
|