aboutsummaryrefslogtreecommitdiff
path: root/src/Analysis/CommentsAPI.kt
blob: 03b1911c3eda038c2ee059d88451caef539c9e7d (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
package org.jetbrains.dokka

import org.jetbrains.jet.lang.descriptors.*
import org.jetbrains.jet.lang.resolve.*
import org.jetbrains.jet.kdoc.psi.api.*
import org.jetbrains.jet.lang.psi.*

fun BindingContext.getDocumentation(descriptor: DeclarationDescriptor): String {
    return getDocumentationElements(descriptor).map { it.extractText() }.join("\n")
}

fun BindingContext.getDocumentationElements(descriptor: DeclarationDescriptor): List<KDoc> {
    val psiElement = DescriptorToSourceUtils.descriptorToDeclaration(descriptor)
    if (psiElement == null)
        throw IllegalArgumentException("$descriptor doesn't have connection to source code, is it synthetic?")

    return psiElement.previousSiblings() // go backwards
            .takeWhile { it !is JetDeclaration } // till previous declaration
            .filter { it is KDoc } // get KDocs
            .map { it as KDoc } // cast
            .toList()
            .reverse() // make reversed list
}

fun KDoc?.extractText(): String {
    if (this == null)
        return ""
    val text = getText()
    if (text == null)
        return ""
    val lines = text.replace("\r", "").split("\n")
    return lines.map {
        val comment = it.trim()
                .dropWhile { it == '/' }
                .dropWhile { it == '*' }
                .dropWhile { it == '/' }
                .trim()
        if (comment.endsWith("*/"))
            comment.substring(0, comment.length - 2).trim()
        else
            comment
    }.filter { it.any() }.join("\n")
}