aboutsummaryrefslogtreecommitdiff
path: root/plugins/kotlin-as-java/src/main/kotlin/KotlinToJVMResolver.kt
blob: 87a173f3d5b1da674d3eb6feb71e72b2dae3dd90 (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
package org.jetbrains.dokka.kotlinAsJava.conversions

import org.jetbrains.dokka.kotlinAsJava.DescriptorCache
import org.jetbrains.dokka.links.*
import org.jetbrains.dokka.model.*
import org.jetbrains.dokka.model.Function
import org.jetbrains.dokka.model.Enum
import org.jetbrains.dokka.transformers.psi.JavaTypeWrapper
import org.jetbrains.kotlin.builtins.jvm.JavaToKotlinClassMap
import org.jetbrains.kotlin.descriptors.FunctionDescriptor
import org.jetbrains.kotlin.descriptors.PropertyDescriptor
import org.jetbrains.kotlin.name.ClassId
import org.jetbrains.kotlin.name.FqName
import org.jetbrains.kotlin.resolve.jvm.JvmPrimitiveType

fun String.getAsPrimitive(): JvmPrimitiveType? = org.jetbrains.kotlin.builtins.PrimitiveType.values()
    .find { it.typeFqName.asString() == this }
    ?.let { JvmPrimitiveType.get(it) }

fun TypeWrapper.getAsType(classId: ClassId, fqName: String, top: Boolean): TypeWrapper {
    val fqNameSplitted = fqName.takeIf { top }?.getAsPrimitive()?.name?.toLowerCase()
        ?.let { listOf(it) } ?: classId.asString().split("/")
    return JavaTypeWrapper(
        fqNameSplitted,
        arguments.mapNotNull { it.asJava(false) },
        classId.toDRI(dri),
        fqNameSplitted.last()[0].isLowerCase()
    )
}

fun TypeWrapper?.asJava(top: Boolean = true): TypeWrapper? = this?.constructorFqName
    ?.takeUnless { it.endsWith(".Unit") }
    ?.let { fqName ->
        fqName.mapToJava()
            ?.let { getAsType(it, fqName, top) } ?: this
    }

fun Classlike.asJava(): Classlike = when {
    this is Class -> this.asJava()
    this is Enum -> this.asJava()
    this is EnumEntry -> this
    else -> throw IllegalArgumentException("$this shouldn't be here")
}

fun Class.asJava(): Class = Class(
    dri, name, kind,
    constructors.map { it.asJava() },
    (functions + properties.flatMap { it.accessors }).map { it.asJava() },
    properties, classlikes.mapNotNull { (it as? Class)?.asJava() }, expected, actual, extra, visibility
)

fun Enum.asJava(): Enum = Enum(
    dri = dri,
    name = name,
    entries = entries.mapNotNull { it.asJava() as? EnumEntry },
    constructors = constructors.map(Function::asJava),
    functions = (functions + properties.flatMap { it.accessors }).map(Function::asJava),
    properties = properties,
    classlikes = classlikes.map(Classlike::asJava),
    expected = expected,
    actual = actual,
    extra = extra,
    visibility = visibility
)

fun tcAsJava(tc: TypeConstructor): TypeReference =
    tc.fullyQualifiedName.mapToJava()
        ?.let {
            tc.copy(
                fullyQualifiedName = it.asString(),
                params = tc.params.map { it.asJava() }
            )
        } ?: tc

fun tpAsJava(tp: TypeParam): TypeReference =
    tp.copy(bounds = tp.bounds.map { it.asJava() })

fun TypeReference.asJava(): TypeReference = when (this) {
    is TypeConstructor -> tcAsJava(this)
    is TypeParam -> tpAsJava(this)
    else -> this
}

fun Callable.asJava(): Callable = copy(params = params.mapNotNull { (it as? TypeConstructor)?.asJava() })


fun Parameter.asJava(): Parameter = Parameter(
    dri.copy(callable = dri.callable?.asJava()),
    name,
    type.asJava()!!,
    expected,
    actual,
    extra
)

fun Function.asJava(): Function {
    val newName = when {
        isConstructor -> "init"
        else -> name
    }
    return Function(
        dri.copy(callable = dri.callable?.asJava()),
        newName,
        returnType.asJava(),
        isConstructor,
        receiver,
        parameters.map { it.asJava() },
        expected,
        actual,
        extra,
        visibility
    )
}

private fun String.mapToJava(): ClassId? =
    JavaToKotlinClassMap.mapKotlinToJava(FqName(this).toUnsafe())

fun ClassId.toDRI(dri: DRI?): DRI = DRI(
    packageName = packageFqName.asString(),
    classNames = classNames(),
    callable = dri?.callable?.asJava(),
    extra = null,
    target = null
)

fun ClassId.classNames(): String =
    shortClassName.identifier + (outerClassId?.classNames()?.let { ".$it" } ?: "")

fun Function.asStatic(): Function = also { it.extra.add(STATIC) }

fun Property.withClass(className: String, dri: DRI): Property {
    val nDri = dri.withClass(className).copy(
        callable = getDescriptor()?.let { Callable.from(it) }
    )
    return Property(
        nDri, name, receiver, expected, actual, extra, accessors, visibility
    )
}

fun Function.withClass(className: String, dri: DRI): Function {
    val nDri = dri.withClass(className).copy(
        callable = getDescriptor()?.let { Callable.from(it) }
    )
    return Function(
        nDri, name, returnType, isConstructor, receiver, parameters, expected, actual, extra, visibility
    )
}

fun Function.getDescriptor(): FunctionDescriptor? = DescriptorCache[dri].let { it as? FunctionDescriptor }

fun Property.getDescriptor(): PropertyDescriptor? = DescriptorCache[dri].let { it as? PropertyDescriptor }