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

jvmMain.io.klogging.config.Files.jvm.kt Maven / Gradle / Ivy

Go to download

Kotlin logging library with structured logging and coroutines support

The newest version!
/*

   Copyright 2021-2024 Michael Strasser.

   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

       https://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 io.klogging.config

import io.klogging.internal.debug
import io.klogging.internal.warn
import java.io.File
import kotlin.text.Charsets.UTF_8

/**
 * Read the contents of a file on the classpath as UTF-8 text.
 *
 * @param resourcePath path to the resource
 * @return the text in the file, or `null` if the file is not found.
 */
internal fun readResourceText(resourcePath: String): String? =
    Thread.currentThread().contextClassLoader
        .getResourceAsStream(resourcePath)
        ?.bufferedReader(UTF_8)
        ?.let {
            debug("Configuration", "Reading configuration from $resourcePath on the classpath")
            it.readText()
        }

/**
 * Read the contents of the file specified by absolute [filePath], if found.
 */
internal actual fun fileText(filePath: String?): String? = filePath?.let { path ->
    File(path).let { file ->
        if (file.exists()) {
            debug("Configuration", "Reading configuration from $filePath")
            file.readText(UTF_8)
        } else {
            warn("Configuration", "Specified configuration file $filePath not found")
            null
        }
    }
}

/**
 * Look for the JSON or HOCON configuration file in one of three places:
 * 1. the file specified by [configPath]; or
 * 2. specified by the environment variable [ENV_KLOGGING_CONFIG_JSON_PATH] (deprecated); or
 * 3. specified by the environment variable [ENV_KLOGGING_CONFIG_PATH]; or
 * 4. called [JSON_CONFIG_FILENAME] on the classpath; or
 * 5. called [HOCON_CONFIG_FILENAME] on the classpath.
 *
 * @return a [ConfigFile] object with the path and contents, if found; else null
 */
internal actual fun findConfigFile(configPath: String?): ConfigFile? {

    val filePath = configPath
        ?: getenv(ENV_KLOGGING_CONFIG_JSON_PATH)
        ?: getenv(ENV_KLOGGING_CONFIG_PATH)

    var path = filePath
    var contents = fileText(filePath)
    if (contents == null) {
        contents = readResourceText(JSON_CONFIG_FILENAME)
        path = JSON_CONFIG_FILENAME
    }
    if (contents == null) {
        contents = readResourceText(HOCON_CONFIG_FILENAME)
        path = HOCON_CONFIG_FILENAME
    }

    return path?.let { contents?.let { ConfigFile(path, contents) } }
}

internal actual fun configureFromFile(configFile: ConfigFile?): KloggingConfiguration? = configFile?.let {
    when {
        configFile.path.lowercase().endsWith(".json") -> JsonConfiguration.configure(configFile.contents)
        configFile.path.lowercase().endsWith(".conf") -> HoconConfiguration.configure(configFile.contents)
        else -> null
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy