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

io.rxmicro.logger.LoggerImplProviderFactory Maven / Gradle / Ivy

Go to download

The module for logging important events during the work of microservices that is integrated to the RxMicro framework.

The newest version!
/*
 * Copyright (c) 2020. https://rxmicro.io
 *
 * 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 io.rxmicro.logger;

import io.rxmicro.common.local.StartTimeStampHelper;
import io.rxmicro.logger.impl.LoggerImplProvider;
import io.rxmicro.logger.internal.jul.JULLoggerImplProvider;

import static io.rxmicro.common.util.Requires.require;
import static io.rxmicro.logger.internal.LoggerImplProviderFactoryHelper.createAndSetupLoggerImplProvider;
import static io.rxmicro.reflection.Reflections.setFieldValue;
import static java.util.Objects.requireNonNullElseGet;

/**
 * Factory class that can be used for retrieving the {@link LoggerImplProvider} instance.
 *
 * 

* Developer must use the {@link io.rxmicro.logger.LoggerFactory} utility class instead this one to get an instance * of the {@link io.rxmicro.logger.Logger} for his (her) production code. * *

* {@link LoggerImplProviderFactory} can be used by developer only for testing purposes. * For example to create a {@link io.rxmicro.logger.Logger} mock. * * @author nedis * @see Logger * @see io.rxmicro.logger.LoggerFactory * @since 0.1 */ public final class LoggerImplProviderFactory { private static LoggerImplProvider currentLoggerImplProvider; private static boolean loggerFactoryInitialized; static { StartTimeStampHelper.init(); } /** * Returns the {@link LoggerImplProvider} instance that configured by default. * * @return the {@link LoggerImplProvider} instance that configured by default */ static LoggerImplProvider getLoggerImplFactory() { loggerFactoryInitialized = true; return requireNonNullElseGet(currentLoggerImplProvider, LoggerImplProviderFactory::createAndSetupDefaultLoggerImplProvider); } /** * Returns {@code true} if {@link LoggerImplProvider} already initialized. * * @return {@code true} if {@link LoggerImplProvider} already initialized */ public static boolean isLoggerFactoryInitialized() { return loggerFactoryInitialized; } /** * Sets the {@link LoggerImplProvider} instance. * *

* This method is useful for testing purposes, because it allows replacing the default {@link LoggerImplProvider} by the mock. * * @param impl the {@link LoggerImplProvider} instance */ public static void setLoggerImplFactory(final LoggerImplProvider impl) { currentLoggerImplProvider = require(impl); if (loggerFactoryInitialized) { setFieldValue(LoggerFactory.class, "LOGGER_IMPL_PROVIDER", currentLoggerImplProvider); } } /** * Resets the {@link LoggerImplProviderFactory}. */ public static void resetLoggerImplFactory() { currentLoggerImplProvider = createAndSetupDefaultLoggerImplProvider(); if (loggerFactoryInitialized) { setFieldValue(LoggerFactory.class, "LOGGER_IMPL_PROVIDER", currentLoggerImplProvider); } } private static LoggerImplProvider createAndSetupDefaultLoggerImplProvider() { return createAndSetupLoggerImplProvider(JULLoggerImplProvider.class); } private LoggerImplProviderFactory() { } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy