All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.load.java.structure.impl.JavaClassifierTypeImpl.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
/*
 * Copyright 2010-2015 JetBrains s.r.o.
 *
 * 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 org.jetbrains.kotlin.load.java.structure.impl

import com.intellij.psi.*
import org.jetbrains.kotlin.load.java.structure.JavaClassifierType
import org.jetbrains.kotlin.load.java.structure.JavaType

import java.util.ArrayList

class JavaClassifierTypeImpl(psiClassType: PsiClassType) : JavaTypeImpl(psiClassType), JavaClassifierType {

    private var resolutionResult: ResolutionResult? = null

    override val classifier: JavaClassifierImpl<*>?
        get() = resolve().classifier

    val substitutor: PsiSubstitutor
        get() = resolve().substitutor

    override val classifierQualifiedName: String
        get() = psi.canonicalText.convertCanonicalNameToQName()

    override val presentableText: String
        get() = psi.presentableText

    override val isRaw: Boolean
        get() = resolve().isRaw

    override// parameters including ones from outer class
    val typeArguments: List
        get() {
            val classifier = classifier as? JavaClassImpl ?: return emptyList()
            val parameters = getTypeParameters(classifier.psi)

            val substitutor = substitutor

            val result = ArrayList(parameters.size)
            for (typeParameter in parameters) {
                val substitutedType = substitutor.substitute(typeParameter)
                result.add(substitutedType?.let { JavaTypeImpl.create(it) })
            }

            return result
        }

    private class ResolutionResult(
        val classifier: JavaClassifierImpl<*>?,
        val substitutor: PsiSubstitutor,
        val isRaw: Boolean
    )

    private fun resolve(): ResolutionResult {
        return resolutionResult ?: run {
            val result = psi.resolveGenerics()
            val psiClass = result.element
            val substitutor = result.substitutor
            ResolutionResult(
                psiClass?.let { JavaClassifierImpl.create(it) }, substitutor, PsiClassType.isRaw(result)
            ).apply {
                resolutionResult = this
            }
        }
    }

    // Copy-pasted from PsiUtil.typeParametersIterable
    // The only change is using `Collections.addAll(result, typeParameters)` instead of reversing type parameters of `currentOwner`
    // Result differs in cases like:
    // class Outer

{ // class Inner {} // } // // PsiUtil.typeParametersIterable returns H3, H2, H1 // But we would like to have H2, H3, H1 as such order is consistent with our type representation private fun getTypeParameters(owner: PsiClass): List { var result: List? = null var currentOwner: PsiTypeParameterListOwner? = owner while (currentOwner != null) { val typeParameters = currentOwner.typeParameters if (typeParameters.isNotEmpty()) { result = result?.let { it + typeParameters } ?: typeParameters.toList() } if (currentOwner.hasModifierProperty(PsiModifier.STATIC)) break currentOwner = currentOwner.containingClass } return result ?: emptyList() } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy