kotlin.reflect.jvm.internal.impl.resolve.constants.constantValues.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-reflect Show documentation
Show all versions of kotlin-reflect Show documentation
Kotlin Full Reflection Library
/*
* 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 kotlin.reflect.jvm.internal.impl.resolve.constants
import kotlin.reflect.jvm.internal.impl.builtins.KotlinBuiltIns
import kotlin.reflect.jvm.internal.impl.descriptors.ClassDescriptor
import kotlin.reflect.jvm.internal.impl.descriptors.annotations.AnnotationArgumentVisitor
import kotlin.reflect.jvm.internal.impl.descriptors.annotations.AnnotationDescriptor
import kotlin.reflect.jvm.internal.impl.resolve.descriptorUtil.classObjectType
import kotlin.reflect.jvm.internal.impl.types.ErrorUtils
import kotlin.reflect.jvm.internal.impl.types.KotlinType
import kotlin.reflect.jvm.internal.impl.utils.sure
public abstract class ConstantValue(public open val value: T) {
public abstract val type: KotlinType
public abstract fun accept(visitor: AnnotationArgumentVisitor, data: D): R
override fun toString() = value.toString()
}
public abstract class IntegerValueConstant protected constructor(value: T) : ConstantValue(value)
public class AnnotationValue(value: AnnotationDescriptor) : ConstantValue(value) {
override val type: KotlinType
get() = value.getType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitAnnotationValue(this, data)
override fun toString() = value.toString()
}
public class ArrayValue(
value: List>,
override val type: KotlinType,
private val builtIns: KotlinBuiltIns
) : ConstantValue>>(value) {
init {
assert(KotlinBuiltIns.isArray(type) || KotlinBuiltIns.isPrimitiveArray(type)) { "Type should be an array, but was " + type + ": " + value }
}
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitArrayValue(this, data)
public val elementType: KotlinType
get() = builtIns.getArrayElementType(type)
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
return value == (other as ArrayValue).value
}
override fun hashCode() = value.hashCode()
}
public class BooleanValue(
value: Boolean,
builtIns: KotlinBuiltIns
) : ConstantValue(value) {
override val type = builtIns.getBooleanType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitBooleanValue(this, data)
}
public class ByteValue(
value: Byte,
builtIns: KotlinBuiltIns
) : IntegerValueConstant(value) {
override val type = builtIns.getByteType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitByteValue(this, data)
override fun toString(): String = "$value.toByte()"
}
public class CharValue(
value: Char,
builtIns: KotlinBuiltIns
) : IntegerValueConstant(value) {
override val type = builtIns.getCharType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitCharValue(this, data)
override fun toString() = "\\u%04X ('%s')".format(value.toInt(), getPrintablePart(value))
private fun getPrintablePart(c: Char): String {
when (c) {
'\b' -> return "\\b"
'\t' -> return "\\t"
'\n' -> return "\\n"
//TODO: KT-8507
12.toChar() -> return "\\f"
'\r' -> return "\\r"
else -> return if (isPrintableUnicode(c)) Character.toString(c) else "?"
}
}
private fun isPrintableUnicode(c: Char): Boolean {
val t = Character.getType(c).toByte()
return t != Character.UNASSIGNED &&
t != Character.LINE_SEPARATOR &&
t != Character.PARAGRAPH_SEPARATOR &&
t != Character.CONTROL &&
t != Character.FORMAT &&
t != Character.PRIVATE_USE &&
t != Character.SURROGATE
}
}
public class DoubleValue(
value: Double,
builtIns: KotlinBuiltIns
) : ConstantValue(value) {
override val type = builtIns.getDoubleType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitDoubleValue(this, data)
override fun toString() = "$value.toDouble()"
}
public class EnumValue(
value: ClassDescriptor
) : ConstantValue(value) {
override val type: KotlinType
get() = value.classObjectType.sure { "Enum entry must have a class object type: " + value }
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitEnumValue(this, data)
override fun toString() = "$type.${value.getName()}"
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
return value == (other as EnumValue).value
}
override fun hashCode() = value.hashCode()
}
public abstract class ErrorValue : ConstantValue(Unit) {
@Deprecated("Should not be called, for this is not a real value, but a indication of an error")
override val value: Unit
get() = throw UnsupportedOperationException()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitErrorValue(this, data)
public class ErrorValueWithMessage(public val message: String) : ErrorValue() {
override val type = ErrorUtils.createErrorType(message)
override fun toString() = message
}
companion object {
public fun create(message: String): ErrorValue {
return ErrorValueWithMessage(message)
}
}
}
public class FloatValue(
value: Float,
builtIns: KotlinBuiltIns
) : ConstantValue(value) {
override val type = builtIns.getFloatType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitFloatValue(this, data)
override fun toString() = "$value.toFloat()"
}
public class IntValue(
value: Int,
builtIns: KotlinBuiltIns
) : IntegerValueConstant(value) {
override val type = builtIns.getIntType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitIntValue(this, data)
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (javaClass != other?.javaClass) return false
val intValue = other as IntValue
return value == intValue.value
}
override fun hashCode() = value
}
public class KClassValue(override val type: KotlinType) :
ConstantValue(type) {
override val value: KotlinType
get() = type.getArguments().single().getType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitKClassValue(this, data)
}
public class LongValue(
value: Long,
builtIns: KotlinBuiltIns
) : IntegerValueConstant(value) {
override val type = builtIns.getLongType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitLongValue(this, data)
override fun toString() = "$value.toLong()"
}
public class NullValue(
builtIns: KotlinBuiltIns
) : ConstantValue(null) {
override val type = builtIns.getNullableNothingType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitNullValue(this, data)
override fun toString() = "null"
}
public class ShortValue(
value: Short,
builtIns: KotlinBuiltIns
) : IntegerValueConstant(value) {
override val type = builtIns.getShortType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitShortValue(this, data)
override fun toString() = "$value.toShort()"
}
public class StringValue(
value: String,
builtIns: KotlinBuiltIns
) : ConstantValue(value) {
override val type = builtIns.getStringType()
override fun accept(visitor: AnnotationArgumentVisitor, data: D) = visitor.visitStringValue(this, data)
override fun toString() = "\"$value\""
override fun equals(other: Any?): Boolean {
if (this === other) return true
if (other == null || javaClass != other.javaClass) return false
return value != (other as StringValue).value
}
override fun hashCode() = value.hashCode()
}