aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/main/kotlin/transformers/documentables/DefaultDocumentableMerger.kt
blob: c8e4f565b1b6b4ffb0124f728cc7025b72c3ee23 (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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
package org.jetbrains.dokka.base.transformers.documentables

import org.jetbrains.dokka.model.*
import org.jetbrains.dokka.model.properties.mergeExtras
import org.jetbrains.dokka.plugability.DokkaContext
import org.jetbrains.dokka.transformers.documentation.DocumentableMerger
import org.jetbrains.kotlin.utils.addToStdlib.firstNotNullResult

internal object DefaultDocumentableMerger : DocumentableMerger {

    override fun invoke(modules: Collection<DModule>, context: DokkaContext): DModule {

        val projectName =
            modules.fold(modules.first().name) { acc, module -> acc.commonPrefixWith(module.name) }
                .takeIf { it.isNotEmpty() }
                ?: "project"

        return modules.reduce { left, right ->
            val list = listOf(left, right)
            DModule(
                name = projectName,
                packages = merge(
                    list.flatMap { it.packages },
                    DPackage::mergeWith
                ),
                documentation = list.map { it.documentation }.flatMap { it.entries }.associate { (k,v) -> k to v },
                expectPresentInSet = list.firstNotNullResult { it.expectPresentInSet },
                sourceSets = list.flatMap { it.sourceSets }.toSet()
            ).mergeExtras(left, right)
        }
    }
}

private fun <T : Documentable> merge(elements: List<T>, reducer: (T, T) -> T): List<T> =
    elements.groupingBy { it.dri }
        .reduce { _, left, right -> reducer(left, right) }
        .values.toList()

private fun <T> mergeExpectActual(
    elements: List<T>,
    reducer: (T, T) -> T
): List<T> where T : Documentable, T : WithExpectActual {

    fun analyzeExpectActual(sameDriElements: List<T>) = sameDriElements.reduce(reducer)

    return elements.groupBy { it.dri }.values.map(::analyzeExpectActual)
}

fun DPackage.mergeWith(other: DPackage): DPackage = copy(
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    typealiases = merge(typealiases + other.typealiases, DTypeAlias::mergeWith),
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DFunction.mergeWith(other: DFunction): DFunction = copy(
    parameters = merge(this.parameters + other.parameters, DParameter::mergeWith),
    receiver = receiver?.let { r -> other.receiver?.let { r.mergeWith(it) } ?: r } ?: other.receiver,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    modifier = modifier + other.modifier,
    sourceSets = sourceSets + other.sourceSets,
    generics = merge(generics + other.generics, DTypeParameter::mergeWith)
).mergeExtras(this, other)

fun DProperty.mergeWith(other: DProperty): DProperty = copy(
    receiver = receiver?.let { r -> other.receiver?.let { r.mergeWith(it) } ?: r } ?: other.receiver,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    modifier = modifier + other.modifier,
    sourceSets = sourceSets + other.sourceSets,
    getter = getter?.let { g -> other.getter?.let { g.mergeWith(it) } ?: g } ?: other.getter,
    setter = setter?.let { s -> other.setter?.let { s.mergeWith(it) } ?: s } ?: other.setter,
    generics = merge(generics + other.generics, DTypeParameter::mergeWith)
).mergeExtras(this, other)

fun DClasslike.mergeWith(other: DClasslike): DClasslike = when {
    this is DClass && other is DClass -> mergeWith(other)
    this is DEnum && other is DEnum -> mergeWith(other)
    this is DInterface && other is DInterface -> mergeWith(other)
    this is DObject && other is DObject -> mergeWith(other)
    this is DAnnotation && other is DAnnotation -> mergeWith(other)
    else -> throw IllegalStateException("${this::class.qualifiedName} ${this.name} cannot be mergesd with ${other::class.qualifiedName} ${other.name}")
}

fun DClass.mergeWith(other: DClass): DClass = copy(
    constructors = mergeExpectActual(
        constructors + other.constructors,
        DFunction::mergeWith
    ),
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    companion = companion?.let { c -> other.companion?.let { c.mergeWith(it) } ?: c } ?: other.companion,
    generics = merge(generics + other.generics, DTypeParameter::mergeWith),
    modifier = modifier + other.modifier,
    supertypes = supertypes + other.supertypes,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DEnum.mergeWith(other: DEnum): DEnum = copy(
    entries = merge(entries + other.entries, DEnumEntry::mergeWith),
    constructors = mergeExpectActual(
        constructors + other.constructors,
        DFunction::mergeWith
    ),
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    companion = companion?.let { c -> other.companion?.let { c.mergeWith(it) } ?: c } ?: other.companion,
    supertypes = supertypes + other.supertypes,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DEnumEntry.mergeWith(other: DEnumEntry): DEnumEntry = copy(
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DObject.mergeWith(other: DObject): DObject = copy(
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    supertypes = supertypes + other.supertypes,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DInterface.mergeWith(other: DInterface): DInterface = copy(
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    companion = companion?.let { c -> other.companion?.let { c.mergeWith(it) } ?: c } ?: other.companion,
    generics = merge(generics + other.generics, DTypeParameter::mergeWith),
    supertypes = supertypes + other.supertypes,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DAnnotation.mergeWith(other: DAnnotation): DAnnotation = copy(
    constructors = mergeExpectActual(
        constructors + other.constructors,
        DFunction::mergeWith
    ),
    functions = mergeExpectActual(functions + other.functions, DFunction::mergeWith),
    properties = mergeExpectActual(properties + other.properties, DProperty::mergeWith),
    classlikes = mergeExpectActual(classlikes + other.classlikes, DClasslike::mergeWith),
    companion = companion?.let { c -> other.companion?.let { c.mergeWith(it) } ?: c } ?: other.companion,
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sources = sources+ other.sources,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets,
    generics = merge(generics + other.generics, DTypeParameter::mergeWith)
).mergeExtras(this, other)

fun DParameter.mergeWith(other: DParameter): DParameter = copy(
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DTypeParameter.mergeWith(other: DTypeParameter): DTypeParameter = copy(
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)

fun DTypeAlias.mergeWith(other: DTypeAlias): DTypeAlias = copy(
    documentation = documentation + other.documentation,
    expectPresentInSet = expectPresentInSet ?: other.expectPresentInSet,
    underlyingType = underlyingType + other.underlyingType,
    visibility = visibility + other.visibility,
    sourceSets = sourceSets + other.sourceSets
).mergeExtras(this, other)