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

com.tomtom.kotlin.traceevents.TraceThreadLocalContext.kt Maven / Gradle / Ivy

/*
 * Copyright (C) 2012-2022, TomTom (http://tomtom.com).
 *
 * 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 com.tomtom.kotlin.traceevents

/**
 * This class allows storing thread-local trace context.
 *
 * Inspired by basic MDC implementation from org.org.slf4j.helpers.BasicMDCAdapter.
 * This implementation allows storing any object type, not just strings, in a map.
 */
public object TraceThreadLocalContext {

    private val inheritableThreadLocal = object : InheritableThreadLocal?>() {
        fun childValue(parentValue: Map?) = parentValue?.let { HashMap(it) }
    }

    public val keys: Set?
        get() = inheritableThreadLocal.get()?.keys

    public fun put(key: String, value: Any) {
        inheritableThreadLocal.get()?.let { it[key] = value }
            ?: inheritableThreadLocal.set(HashMap(mapOf(key to value)))
    }

    public fun get(key: String): Any? =
        inheritableThreadLocal.get()?.get(key)

    public fun remove(key: String): Any? =
        inheritableThreadLocal.get()?.remove(key)

    public fun clear() {
        inheritableThreadLocal.get()?.clear()
        inheritableThreadLocal.remove()
    }

    public fun getCopyOfContextMap(): Map? =
        inheritableThreadLocal.get()?.let { HashMap(it) }

    public fun setContextMap(contextMap: Map) {
        inheritableThreadLocal.set(HashMap(contextMap))
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy