Provide specialized stdlib function implementations depending on current JRE version #KT-8254

This commit is contained in:
Ilya Gorbunov
2016-06-15 23:44:34 +03:00
parent b16f46d932
commit 25974be3f8
4 changed files with 73 additions and 12 deletions
@@ -0,0 +1,56 @@
@file:JvmVersion
package kotlin.internal
import java.io.Closeable
internal open class PlatformImplementations {
public open fun closeSuppressed(instance: Closeable, cause: Throwable) {
try {
instance.close()
} catch (closeException: Throwable) {
// eat the closeException as we are already throwing the original cause
// and we don't want to mask the real exception;
// on Java 7 we should call
// e.addSuppressed(closeException)
}
}
companion object {
@JvmField
@InlineExposed
val INSTANCE: PlatformImplementations = run {
val version = getJavaVersion()
try {
if (version >= 0x10008)
return@run Class.forName("kotlin.internal.JDK8PlatformImplementations").newInstance() as PlatformImplementations
} catch (e: ClassNotFoundException) {}
try {
if (version >= 0x10007)
return@run Class.forName("kotlin.internal.JDK7PlatformImplementations").newInstance() as PlatformImplementations
} catch (e: ClassNotFoundException) {}
PlatformImplementations()
}
private fun getJavaVersion(): Int {
val default = 0x10006
val version = System.getProperty("java.version") ?: return default
val firstDot = version.indexOf('.')
if (firstDot < 0) return default
var secondDot = version.indexOf('.', firstDot + 1)
if (secondDot < 0) secondDot = version.length
val firstPart = version.substring(0, firstDot)
val secondPart = version.substring(firstDot + 1, secondDot)
return try {
firstPart.toInt() * 0x10000 + secondPart.toInt()
} catch (e: NumberFormatException) {
default
}
}
}
}