org.jetbrains.kotlin.resolve.CompositeBindingContext.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* 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.resolve
import org.jetbrains.kotlin.util.slicedMap.ReadOnlySlice
import org.jetbrains.kotlin.util.slicedMap.WritableSlice
import com.google.common.collect.ImmutableMap
import com.intellij.openapi.project.Project
import org.jetbrains.kotlin.diagnostics.Diagnostic
import com.intellij.psi.PsiElement
import com.intellij.openapi.util.ModificationTracker
import org.jetbrains.kotlin.psi.KtExpression
import org.jetbrains.kotlin.resolve.diagnostics.Diagnostics
import org.jetbrains.kotlin.types.KotlinType
import java.util.*
class CompositeBindingContext private constructor(
private val delegates: LinkedHashSet
) : BindingContext {
override fun getType(expression: KtExpression): KotlinType? {
return delegates.asSequence().map { it.getType(expression) }.firstOrNull { it != null }
}
companion object {
fun create(delegates: List): BindingContext {
if (delegates.isEmpty()) return BindingContext.EMPTY
val delegatesSet = LinkedHashSet(delegates)
if (delegatesSet.size == 1) return delegates.first()
return CompositeBindingContext(delegatesSet)
}
}
override fun get(slice: ReadOnlySlice?, key: K?): V? {
return delegates.asSequence().map { it[slice, key] }.firstOrNull { it != null }
}
override fun getKeys(slice: WritableSlice?): Collection {
return delegates.flatMap { it.getKeys(slice) }
}
override fun getSliceContents(slice: ReadOnlySlice): ImmutableMap {
//we need intermediate map cause ImmutableMap doesn't support same entries obtained from different slices
val map = hashMapOf()
delegates.forEach { map.putAll(it.getSliceContents(slice)) }
return ImmutableMap.builder().putAll(map).build()
}
override fun getDiagnostics(): Diagnostics {
return CompositeDiagnostics(delegates.map { it.diagnostics })
}
override fun addOwnDataTo(trace: BindingTrace, commitDiagnostics: Boolean) {
// Do nothing
}
override fun getProject(): Project? {
return delegates.firstOrNull()?.project
}
private class CompositeDiagnostics(
private val delegates: List
) : Diagnostics {
override fun iterator(): Iterator {
return delegates.fold(emptySequence(), { r, t -> r + t.asSequence() }).iterator()
}
override val modificationTracker = ModificationTracker {
delegates.fold(0L, { r, t -> r + t.modificationTracker.modificationCount })
}
override fun all(): Collection {
return delegates.flatMap { it.all() }
}
override fun forElement(psiElement: PsiElement): Collection {
return delegates.flatMap { it.forElement(psiElement) }
}
override fun isEmpty(): Boolean {
return delegates.all { it.isEmpty() }
}
override fun noSuppression(): Diagnostics {
return CompositeDiagnostics(delegates.map { it.noSuppression() })
}
}
}