org.jetbrains.kotlin.cli.common.messages.CompilerLoggerAdapter.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-2023 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.kotlin.cli.common.messages
import org.jetbrains.kotlin.analyzer.CompilationErrorException
import org.jetbrains.kotlin.cli.common.messages.CompilerMessageSeverity.*
import org.jetbrains.kotlin.config.CommonConfigurationKeys
import org.jetbrains.kotlin.config.CompilerConfiguration
import org.jetbrains.kotlin.util.Logger
/**
* An adapter for the [Logger] interface that reports all messages to compiler's [MessageCollector].
*
* @property messageCollector - The destination for the messages.
* @property treatWarningsAsErrors - Whether to treat warnings as errors. Can be used in tests.
*/
private class CompilerLoggerAdapter(
private val messageCollector: MessageCollector,
private val treatWarningsAsErrors: Boolean
) : Logger {
override fun log(message: String) = messageCollector.report(LOGGING, message, null)
override fun warning(message: String) = messageCollector.report(WARNING.orError(), message, null)
override fun strongWarning(message: String) = messageCollector.report(STRONG_WARNING.orError(), message, null)
override fun error(message: String) = messageCollector.report(ERROR, message, null)
@Deprecated(Logger.FATAL_DEPRECATION_MESSAGE, ReplaceWith(Logger.FATAL_REPLACEMENT))
override fun fatal(message: String): Nothing {
error(message)
(messageCollector as? GroupingMessageCollector)?.flush()
throw CompilationErrorException()
}
private fun CompilerMessageSeverity.orError(): CompilerMessageSeverity = if (treatWarningsAsErrors) ERROR else this
}
fun MessageCollector.toLogger(treatWarningsAsErrors: Boolean = false): Logger =
CompilerLoggerAdapter(this, treatWarningsAsErrors)
fun CompilerConfiguration.getLogger(treatWarningsAsErrors: Boolean = false): Logger =
getNotNull(CommonConfigurationKeys.MESSAGE_COLLECTOR_KEY).toLogger(treatWarningsAsErrors)