aboutsummaryrefslogtreecommitdiff
path: root/test-utils/src/main/kotlin/com/google/devtools/ksp/processor/TypeComposureProcessor.kt
blob: b1e89a30cbdccc7b36965f4932cc7137588a82af (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
/*
 * Copyright 2020 Google LLC
 * Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.google.devtools.ksp.processor

import com.google.devtools.ksp.processing.Resolver
import com.google.devtools.ksp.symbol.*
import com.google.devtools.ksp.visitor.KSTopDownVisitor

open class TypeComposureProcessor : AbstractTestProcessor() {
    val results = mutableListOf<String>()

    override fun process(resolver: Resolver): List<KSAnnotated> {
        val files = resolver.getNewFiles()
        val classes = mutableSetOf<KSClassDeclaration>()
        val references = mutableSetOf<KSTypeReference>()

        files.forEach {
            it.accept(
                object : KSTopDownVisitor<Unit, Unit>() {
                    override fun defaultHandler(node: KSNode, data: Unit) = Unit

                    override fun visitClassDeclaration(classDeclaration: KSClassDeclaration, data: Unit) {
                        super.visitClassDeclaration(classDeclaration, Unit)
                        classes.add(classDeclaration)
                    }

                    override fun visitTypeReference(typeReference: KSTypeReference, data: Unit) {
                        super.visitTypeReference(typeReference, data)
                        references.add(typeReference)
                    }
                },
                Unit
            )
        }

        val composed = mutableSetOf<KSType>()
        val types = references.filter { it.resolve()!!.arguments.toList().size == 1 }.map { it.resolve()!! }
        val refs0Arg = references.filter { it.resolve()!!.arguments.toList().size == 0 }

        for (c in classes) {
            for (ref in refs0Arg) {
                composed.add(c.asType(listOf(resolver.getTypeArgument(ref, Variance.INVARIANT))))
                composed.add(c.asType(listOf(resolver.getTypeArgument(ref, Variance.COVARIANT))))
                composed.add(c.asType(listOf(resolver.getTypeArgument(ref, Variance.CONTRAVARIANT))))
                composed.add(c.asType(listOf(resolver.getTypeArgument(ref, Variance.STAR))))
            }
        }

        for (t in types) {
            for (ref in refs0Arg) {
                composed.add(t.replace(listOf(resolver.getTypeArgument(ref, Variance.INVARIANT))))
                composed.add(t.replace(listOf(resolver.getTypeArgument(ref, Variance.COVARIANT))))
                composed.add(t.replace(listOf(resolver.getTypeArgument(ref, Variance.CONTRAVARIANT))))
                composed.add(t.starProjection())
            }
        }

        val sorted = composed.sortedBy { it.toString() }
        for (i in sorted) {
            for (j in sorted) {
                results.add("$i ?= $j : ${i.isAssignableFrom(j)}")
            }
        }
        return emptyList()
    }

    override fun toResult(): List<String> {
        return results
    }
}