aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/src/test/kotlin/utils/contentUtils.kt
blob: ec119ebb2941636d6ef5feff966dec64032224b2 (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
201
package utils

import matchers.content.*
import org.jetbrains.dokka.model.*
import org.jetbrains.dokka.pages.ContentGroup
import kotlin.text.Typography.nbsp

//TODO: Try to unify those functions after update to 1.4
fun ContentMatcherBuilder<*>.functionSignature(
    annotations: Map<String, Set<String>>,
    visibility: String,
    modifier: String,
    keywords: Set<String>,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, ParamAttributes>
) =
    platformHinted {
        bareSignature(annotations, visibility, modifier, keywords, name, returnType, *params)
    }

fun ContentMatcherBuilder<*>.bareSignature(
    annotations: Map<String, Set<String>>,
    visibility: String,
    modifier: String,
    keywords: Set<String>,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, ParamAttributes>
) = group { // TODO: remove it when double wrapping for signatures will be resolved
    group {
        annotations.entries.forEach {
            group {
                unwrapAnnotation(it)
            }
        }
        +("$visibility $modifier ${keywords.joinToString("") { "$it " }} fun")
        link { +name }
        +"("
        params.forEachIndexed { id, (n, t) ->

            t.annotations.forEach {
                unwrapAnnotation(it)
            }
            t.keywords.forEach {
                +it
            }

            +"$n:"
            group { link { +(t.type) } }
            if (id != params.lastIndex)
                +", "
        }
        +")"
        if (returnType != null) {
            +(": ")
            group {
                link {
                    +(returnType)
                }
            }
        }
    }
}

fun ContentMatcherBuilder<*>.functionSignatureWithReceiver(
    annotations: Map<String, Set<String>>,
    visibility: String?,
    modifier: String?,
    keywords: Set<String>,
    receiver: String,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, ParamAttributes>
) =
    platformHinted {
        bareSignatureWithReceiver(annotations, visibility, modifier, keywords, receiver, name, returnType, *params)
    }

fun ContentMatcherBuilder<*>.bareSignatureWithReceiver(
    annotations: Map<String, Set<String>>,
    visibility: String?,
    modifier: String?,
    keywords: Set<String>,
    receiver: String,
    name: String,
    returnType: String? = null,
    vararg params: Pair<String, ParamAttributes>
) = group { // TODO: remove it when double wrapping for signatures will be resolved
    group {
        annotations.entries.forEach {
            group {
                unwrapAnnotation(it)
            }
        }
        +("$visibility $modifier ${keywords.joinToString("") { "$it " }} fun")
        group {
            link { +receiver }
        }
        +"."
        link { +name }
        +"("
        params.forEachIndexed { id, (n, t) ->

            t.annotations.forEach {
                unwrapAnnotation(it)
            }
            t.keywords.forEach {
                +it
            }

            +"$n:"
            group { link { +(t.type) } }
            if (id != params.lastIndex)
                +", "
        }
        +")"
        if (returnType != null) {
            +(": ")
            group {
                link {
                    +(returnType)
                }
            }
        }
    }
}

fun ContentMatcherBuilder<*>.propertySignature(
    annotations: Map<String, Set<String>>,
    visibility: String,
    modifier: String,
    keywords: Set<String>,
    preposition: String,
    name: String,
    type: String? = null
) {
    group {
        header { +"Package test" }
    }
    group {
        group {
            skipAllNotMatching()
            header { +"Properties" }
            table {
                group {
                    link { +name }
                    platformHinted {
                        group {
                            group {
                                annotations.entries.forEach {
                                    group {
                                        unwrapAnnotation(it)
                                    }
                                }
                                +("$visibility $modifier ${keywords.joinToString("") { "$it " }} $preposition")
                                link { +name }
                                if (type != null) {
                                    +(": ")
                                    group {
                                        link {
                                            +(type)
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}

fun ContentMatcherBuilder<*>.pWrapped(text: String) =
    group {// TODO: remove it when double wrapping for descriptions will be resolved
        group { +text }
    }

fun ContentMatcherBuilder<*>.unnamedTag(tag: String, content: ContentMatcherBuilder<ContentGroup>.() -> Unit) =
    group {
        header(4) { +tag }
        group { content() }
    }

private fun ContentMatcherBuilder<*>.unwrapAnnotation(elem: Map.Entry<String, Set<String>>) {
    +"@"
    link { +elem.key }
    +"("
    elem.value.forEach {
        +("$it = ")
        skipAllNotMatching()
    }
    +")"
}

data class ParamAttributes(
    val annotations: Map<String, Set<String>>,
    val keywords: Set<String>,
    val type: String
)