aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/kotlin/renderers/DefaultRenderer.kt
blob: 606eea543ffd67c9713434e66cb39ebd759ef2dd (plain)
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package org.jetbrains.dokka.renderers

import org.jetbrains.dokka.CoreExtensions
import org.jetbrains.dokka.pages.*
import org.jetbrains.dokka.plugability.DokkaContext
import org.jetbrains.dokka.plugability.single
import org.jetbrains.dokka.resolvers.LocationProvider
import org.jetbrains.dokka.transformers.pages.PageNodeTransformer

abstract class DefaultRenderer<T>(
    protected val outputWriter: OutputWriter,
    protected val context: DokkaContext
) : Renderer {

    private val extension = context.single(CoreExtensions.fileExtension)

    protected lateinit var locationProvider: LocationProvider
        private set

    protected open val preprocessors: Iterable<PageNodeTransformer> = emptyList()

    protected abstract fun T.buildHeader(level: Int, content: T.() -> Unit)
    protected abstract fun T.buildLink(address: String, content: T.() -> Unit)
    protected abstract fun T.buildList(node: ContentList, pageContext: ContentPage)
    protected abstract fun T.buildNewLine()
    protected abstract fun T.buildResource(node: ContentEmbeddedResource, pageContext: ContentPage)
    protected abstract fun T.buildTable(node: ContentTable, pageContext: ContentPage)
    protected abstract fun T.buildText(textNode: ContentText)
    protected abstract fun T.buildNavigation(page: PageNode)

    protected abstract fun buildPage(page: ContentPage, content: (T, ContentPage) -> Unit): String
    protected abstract fun buildError(node: ContentNode)

    protected open fun T.buildGroup(node: ContentGroup, pageContext: ContentPage) {
        node.children.forEach { it.build(this, pageContext) }
    }

    protected open fun T.buildLinkText(nodes: List<ContentNode>, pageContext: ContentPage) {
        nodes.forEach { it.build(this, pageContext) }
    }

    protected open fun T.buildCode(code: List<ContentNode>, language: String, pageContext: ContentPage) {
        code.forEach { it.build(this, pageContext) }
    }

    protected open fun T.buildHeader(node: ContentHeader, pageContext: ContentPage) {
        buildHeader(node.level) { node.children.forEach { it.build(this, pageContext) } }
    }

    protected open fun ContentNode.build(builder: T, pageContext: ContentPage) =
        builder.buildContentNode(this, pageContext)

    protected open fun T.buildContentNode(node: ContentNode, pageContext: ContentPage) {
        when (node) {
            is ContentText -> buildText(node)
            is ContentHeader -> buildHeader(node, pageContext)
            is ContentCode -> buildCode(node.children, node.language, pageContext)
            is ContentDRILink -> buildLink(
                locationProvider.resolve(node.address, node.platforms.toList(), pageContext)
            ) {
                buildLinkText(node.children, pageContext)
            }
            is ContentResolvedLink -> buildLink(node.address) { buildLinkText(node.children, pageContext) }
            is ContentEmbeddedResource -> buildResource(node, pageContext)
            is ContentList -> buildList(node, pageContext)
            is ContentTable -> buildTable(node, pageContext)
            is ContentGroup -> buildGroup(node, pageContext)
            else -> buildError(node)
        }
    }

    protected open fun buildPageContent(context: T, page: ContentPage) {
        context.buildNavigation(page)
        page.content.build(context, page)
    }

    protected open fun renderPage(page: PageNode) {
        val path by lazy { locationProvider.resolve(page, skipExtension = true) }
        when (page) {
            is ContentPage -> outputWriter.write(path, buildPage(page) { c, p -> buildPageContent(c, p) }, extension)
            is RendererSpecificPage -> when (val strategy = page.strategy) {
                is RenderingStrategy.Copy -> outputWriter.writeResources(strategy.from, path)
                is RenderingStrategy.Write -> outputWriter.write(path, strategy.text, "")
                is RenderingStrategy.Callback -> outputWriter.write(path, strategy.instructions(this, page))
                RenderingStrategy.DoNothing -> Unit
            }
            else -> throw AssertionError(
                "Page ${page.name} cannot be rendered by renderer as it is not renderer specific nor contains content"
            )
        }
    }

    protected open fun renderPages(root: PageNode) {
        renderPage(root)
        root.children.forEach { renderPages(it) }
    }

    // reimplement this as preprocessor
    protected open fun renderPackageList(root: ContentPage) =
        getPackageNamesAndPlatforms(root)
            .keys
            .joinToString("\n")
            .also { outputWriter.write("${root.name}/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: RootPageNode) {
        val newRoot = preprocessors.fold(root) { acc, t -> t(acc) }

        locationProvider =
            context.single(CoreExtensions.locationProviderFactory).getLocationProvider(newRoot)

        root.children<ModulePageNode>().forEach { renderPackageList(it) }

        renderPages(newRoot)
    }
}

fun ContentPage.platforms() = this.content.platforms.toList()