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

ch.qos.logback.classic.PatternLayout Maven / Gradle / Ivy

The newest version!
/**
 * Logback: the reliable, generic, fast and flexible logging framework.
 * Copyright (C) 1999-2015, QOS.ch. All rights reserved.
 *
 * This program and the accompanying materials are dual-licensed under
 * either the terms of the Eclipse Public License v1.0 as published by
 * the Eclipse Foundation
 *
 *   or (per the licensee's choosing)
 *
 * under the terms of the GNU Lesser General Public License version 2.1
 * as published by the Free Software Foundation.
 */
package ch.qos.logback.classic;

import java.util.HashMap;
import java.util.Map;
import java.util.function.Supplier;

import ch.qos.logback.classic.pattern.*;
import ch.qos.logback.classic.pattern.color.HighlightingCompositeConverter;
import ch.qos.logback.classic.spi.ILoggingEvent;
import ch.qos.logback.core.CoreConstants;
import ch.qos.logback.core.pattern.DynamicConverter;
import ch.qos.logback.core.pattern.PatternLayoutBase;
import ch.qos.logback.core.pattern.color.*;
import ch.qos.logback.core.pattern.parser.Parser;

/**
 * 

* A flexible layout configurable with pattern string. The main method in this class is * to {@link #doLayout(ILoggingEvent)}. It returns the results as a * {#link String}. The format and contents of the result depends on the conversion * pattern. *

* For more information about this layout, please refer to the online manual at * http://logback.qos.ch/manual/layouts.html#PatternLayout * */ public class PatternLayout extends PatternLayoutBase { public static final Map> DEFAULT_CONVERTER_SUPPLIER_MAP = new HashMap<>(); public static final Map DEFAULT_CONVERTER_MAP = new HashMap<>(); public static final Map CONVERTER_CLASS_TO_KEY_MAP = new HashMap(); /** * @deprecated replaced by DEFAULT_CONVERTER_MAP */ @Deprecated public static final Map defaultConverterMap = DEFAULT_CONVERTER_MAP; public static final String HEADER_PREFIX = "#logback.classic pattern: "; static { DEFAULT_CONVERTER_SUPPLIER_MAP.putAll(Parser.DEFAULT_COMPOSITE_CONVERTER_MAP); DEFAULT_CONVERTER_SUPPLIER_MAP.put("d", DateConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("date", DateConverter::new); // used by PrefixComposite converter CONVERTER_CLASS_TO_KEY_MAP.put(DateConverter.class.getName(), "date"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("ms", MicrosecondConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("micros", MicrosecondConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(MicrosecondConverter.class.getName(), "micros"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("r", RelativeTimeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("relative", RelativeTimeConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(RelativeTimeConverter.class.getName(), "relative"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("level", LevelConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("le", LevelConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("p", LevelConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(LevelConverter.class.getName(), "level"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("t", ThreadConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("thread", ThreadConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(ThreadConverter.class.getName(), "thread"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("lo", LoggerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("logger", LoggerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("c", LoggerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(LoggerConverter.class.getName(), "logger"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("m", MessageConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("msg", MessageConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("message", MessageConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(MessageConverter.class.getName(), "message"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("C", ClassOfCallerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("class", ClassOfCallerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(ClassOfCallerConverter.class.getName(), "class"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("M", MethodOfCallerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("method", MethodOfCallerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(MethodOfCallerConverter.class.getName(), "method"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("L", LineOfCallerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("line", LineOfCallerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(LineOfCallerConverter.class.getName(), "line"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("F", FileOfCallerConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("file", FileOfCallerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(FileOfCallerConverter.class.getName(), "file"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("X", MDCConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("mdc", MDCConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("ex", ThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("exception", ThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("rEx", RootCauseFirstThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("rootException", RootCauseFirstThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("throwable", ThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("xEx", ExtendedThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("xException", ExtendedThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("xThrowable", ExtendedThrowableProxyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("nopex", NopThrowableInformationConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("nopexception", NopThrowableInformationConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("cn", ContextNameConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("contextName", ContextNameConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(ContextNameConverter.class.getName(), "contextName"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("caller", CallerDataConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(CallerDataConverter.class.getName(), "caller"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("marker", MarkerConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(MarkerConverter.class.getName(), "marker"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("kvp", KeyValuePairConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(KeyValuePairConverter.class.getName(), "kvp"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("maskedKvp", MaskedKeyValuePairConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(MaskedKeyValuePairConverter.class.getName(), "maskedKvp"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("property", PropertyConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("n", LineSeparatorConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("black", BlackCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("red", RedCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("green", GreenCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("yellow", YellowCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("blue", BlueCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("magenta", MagentaCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("cyan", CyanCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("white", WhiteCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("gray", GrayCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldRed", BoldRedCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldGreen", BoldGreenCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldYellow", BoldYellowCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldBlue", BoldBlueCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldMagenta", BoldMagentaCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldCyan", BoldCyanCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("boldWhite", BoldWhiteCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("highlight", HighlightingCompositeConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("lsn", LocalSequenceNumberConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(LocalSequenceNumberConverter.class.getName(), "lsn"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("sn", SequenceNumberConverter::new); DEFAULT_CONVERTER_SUPPLIER_MAP.put("sequenceNumber", SequenceNumberConverter::new); CONVERTER_CLASS_TO_KEY_MAP.put(SequenceNumberConverter.class.getName(), "sequenceNumber"); DEFAULT_CONVERTER_SUPPLIER_MAP.put("prefix", PrefixCompositeConverter::new); } public PatternLayout() { this.postCompileProcessor = new EnsureExceptionHandling(); } public Map> getDefaultConverterSupplierMap() { return DEFAULT_CONVERTER_SUPPLIER_MAP; } /** *

BEWARE: The map of type String,String for mapping conversion words is deprecated. * Use {@link #getDefaultConverterSupplierMap()} instead.

* *

Existing code such as getDefaultMap().put("k", X.class.getName()) should be replaced by * getDefaultConverterSupplierMap().put("k", X::new)

* *

Note that values in the map will still be taken into account and processed correctly.

* * @return a map of keys and class names */ @Deprecated public Map getDefaultConverterMap() { return DEFAULT_CONVERTER_MAP; } public String doLayout(ILoggingEvent event) { if (!isStarted()) { return CoreConstants.EMPTY_STRING; } return writeLoopOnConverters(event); } @Override protected String getPresentationHeaderPrefix() { return HEADER_PREFIX; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy