001/*
002 * Licensed to the Apache Software Foundation (ASF) under one or more
003 * contributor license agreements. See the NOTICE file distributed with
004 * this work for additional information regarding copyright ownership.
005 * The ASF licenses this file to You under the Apache license, Version 2.0
006 * (the "License"); you may not use this file except in compliance with
007 * the License. You may obtain a copy of the License at
008 *
009 *      http://www.apache.org/licenses/LICENSE-2.0
010 *
011 * Unless required by applicable law or agreed to in writing, software
012 * distributed under the License is distributed on an "AS IS" BASIS,
013 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
014 * See the license for the specific language governing permissions and
015 * limitations under the license.
016 */
017package org.apache.logging.log4j.core.pattern;
018
019import java.util.Arrays;
020import java.util.HashMap;
021import java.util.List;
022import java.util.Locale;
023import java.util.Map;
024
025import org.apache.logging.log4j.Level;
026import org.apache.logging.log4j.core.LogEvent;
027import org.apache.logging.log4j.core.config.Configuration;
028import org.apache.logging.log4j.core.config.plugins.Plugin;
029import org.apache.logging.log4j.core.layout.PatternLayout;
030import org.apache.logging.log4j.util.PerformanceSensitive;
031import org.apache.logging.log4j.util.Strings;
032
033/**
034 * Highlight pattern converter. Formats the result of a pattern using a color appropriate for the Level in the LogEvent.
035 * <p>
036 * For example:
037 * </p>
038 *
039 * <pre>
040 * %highlight{%d{ ISO8601 } [%t] %-5level: %msg%n%throwable}
041 * </pre>
042 * <p>
043 * You can define custom colors for each Level:
044 * </p>
045 *
046 * <pre>
047 * %highlight{%d{ ISO8601 } [%t] %-5level: %msg%n%throwable}{FATAL=red, ERROR=red, WARN=yellow, INFO=green, DEBUG=cyan,
048 * TRACE=black}
049 * </pre>
050 * <p>
051 * You can use a predefined style:
052 * </p>
053 *
054 * <pre>
055 * %highlight{%d{ ISO8601 } [%t] %-5level: %msg%n%throwable}{STYLE=DEFAULT}
056 * </pre>
057 * <p>
058 * The available predefined styles are:
059 * </p>
060 * <ul>
061 * <li>{@code Default}</li>
062 * <li>{@code Log4j} - The same as {@code Default}</li>
063 * <li>{@code Logback}</li>
064 * </ul>
065 * <p>
066 * You can use whitespace around the comma and equal sign. The names in values MUST come from the
067 * {@linkplain AnsiEscape} enum, case is normalized to upper-case internally.
068 * </p>
069 *
070 * <p>
071 * To disable ANSI output unconditionally, specify an additional option <code>disableAnsi=true</code>, or to
072 * disable ANSI output if no console is detected, specify option <code>noConsoleNoAnsi=true</code> e.g..
073 * </p>
074 * <pre>
075  * %highlight{%d{ ISO8601 } [%t] %-5level: %msg%n%throwable}{STYLE=DEFAULT, noConsoleNoAnsi=true}
076  * </pre>
077 */
078@Plugin(name = "highlight", category = PatternConverter.CATEGORY)
079@ConverterKeys({ "highlight" })
080@PerformanceSensitive("allocation")
081public final class HighlightConverter extends LogEventPatternConverter implements AnsiConverter {
082
083    private static final Map<String, String> DEFAULT_STYLES = new HashMap<>();
084
085    private static final Map<String, String> LOGBACK_STYLES = new HashMap<>();
086
087    private static final String STYLE_KEY = "STYLE";
088
089    private static final String STYLE_KEY_DEFAULT = "DEFAULT";
090
091    private static final String STYLE_KEY_LOGBACK = "LOGBACK";
092
093    private static final Map<String, Map<String, String>> STYLES = new HashMap<>();
094
095    static {
096        // Default styles:
097        DEFAULT_STYLES.put(Level.FATAL.name(), AnsiEscape.createSequence("BRIGHT", "RED"));
098        DEFAULT_STYLES.put(Level.ERROR.name(), AnsiEscape.createSequence("BRIGHT", "RED"));
099        DEFAULT_STYLES.put(Level.WARN.name(), AnsiEscape.createSequence("YELLOW"));
100        DEFAULT_STYLES.put(Level.INFO.name(), AnsiEscape.createSequence("GREEN"));
101        DEFAULT_STYLES.put(Level.DEBUG.name(), AnsiEscape.createSequence("CYAN"));
102        DEFAULT_STYLES.put(Level.TRACE.name(), AnsiEscape.createSequence("BLACK"));
103        // Logback styles:
104        LOGBACK_STYLES.put(Level.FATAL.name(), AnsiEscape.createSequence("BLINK", "BRIGHT", "RED"));
105        LOGBACK_STYLES.put(Level.ERROR.name(), AnsiEscape.createSequence("BRIGHT", "RED"));
106        LOGBACK_STYLES.put(Level.WARN.name(), AnsiEscape.createSequence("RED"));
107        LOGBACK_STYLES.put(Level.INFO.name(), AnsiEscape.createSequence("BLUE"));
108        LOGBACK_STYLES.put(Level.DEBUG.name(), AnsiEscape.createSequence((String[]) null));
109        LOGBACK_STYLES.put(Level.TRACE.name(), AnsiEscape.createSequence((String[]) null));
110        // Style map:
111        STYLES.put(STYLE_KEY_DEFAULT, DEFAULT_STYLES);
112        STYLES.put(STYLE_KEY_LOGBACK, LOGBACK_STYLES);
113    }
114
115    /**
116     * Creates a level style map where values are ANSI escape sequences given configuration options in {@code option[1]}
117     * .
118     * <p>
119     * The format of the option string in {@code option[1]} is:
120     * </p>
121     *
122     * <pre>
123     * Level1=Value, Level2=Value, ...
124     * </pre>
125     *
126     * <p>
127     * For example:
128     * </p>
129     *
130     * <pre>
131     * ERROR=red bold, WARN=yellow bold, INFO=green, ...
132     * </pre>
133     *
134     * <p>
135     * You can use whitespace around the comma and equal sign. The names in values MUST come from the
136     * {@linkplain AnsiEscape} enum, case is normalized to upper-case internally.
137     * </p>
138     *
139     * @param options
140     *        The second slot can optionally contain the style map.
141     * @return a new map
142     */
143    private static Map<String, String> createLevelStyleMap(final String[] options) {
144        if (options.length < 2) {
145            return DEFAULT_STYLES;
146        }
147        // Feels like a hack. Should String[] options change to a Map<String,String>?
148        final String string = options[1]
149                .replaceAll(PatternParser.DISABLE_ANSI + "=(true|false)", Strings.EMPTY)
150                .replaceAll(PatternParser.NO_CONSOLE_NO_ANSI + "=(true|false)", Strings.EMPTY);
151        //
152        final Map<String, String> styles = AnsiEscape.createMap(string, new String[] {STYLE_KEY});
153        final Map<String, String> levelStyles = new HashMap<>(DEFAULT_STYLES);
154        for (final Map.Entry<String, String> entry : styles.entrySet()) {
155            final String key = entry.getKey().toUpperCase(Locale.ENGLISH);
156            final String value = entry.getValue();
157            if (STYLE_KEY.equalsIgnoreCase(key)) {
158                final Map<String, String> enumMap = STYLES.get(value.toUpperCase(Locale.ENGLISH));
159                if (enumMap == null) {
160                    LOGGER.error("Unknown level style: " + value + ". Use one of " +
161                        Arrays.toString(STYLES.keySet().toArray()));
162                } else {
163                    levelStyles.putAll(enumMap);
164                }
165            } else {
166                final Level level = Level.toLevel(key, null);
167                if (level == null) {
168                    LOGGER.warn("Setting style for yet unknown level name {}", key);
169                    levelStyles.put(key, value);
170                } else {
171                    levelStyles.put(level.name(), value);
172                }
173            }
174        }
175        return levelStyles;
176    }
177
178    /**
179     * Gets an instance of the class.
180     *
181     * @param config The current Configuration.
182     * @param options pattern options, may be null. If first element is "short", only the first line of the
183     *                throwable will be formatted.
184     * @return instance of class.
185     */
186    public static HighlightConverter newInstance(final Configuration config, final String[] options) {
187        if (options.length < 1) {
188            LOGGER.error("Incorrect number of options on style. Expected at least 1, received " + options.length);
189            return null;
190        }
191        if (options[0] == null) {
192            LOGGER.error("No pattern supplied on style");
193            return null;
194        }
195        final PatternParser parser = PatternLayout.createPatternParser(config);
196        final List<PatternFormatter> formatters = parser.parse(options[0]);
197        final boolean disableAnsi = Arrays.toString(options).contains(PatternParser.DISABLE_ANSI + "=true");
198        final boolean noConsoleNoAnsi = Arrays.toString(options).contains(PatternParser.NO_CONSOLE_NO_ANSI + "=true");
199        final boolean hideAnsi = disableAnsi || (noConsoleNoAnsi && System.console() == null);
200        return new HighlightConverter(formatters, createLevelStyleMap(options), hideAnsi);
201    }
202
203    private final Map<String, String> levelStyles;
204
205    private final List<PatternFormatter> patternFormatters;
206
207    private final boolean noAnsi;
208
209    private final String defaultStyle;
210
211    /**
212     * Construct the converter.
213     *
214     * @param patternFormatters
215     *            The PatternFormatters to generate the text to manipulate.
216     * @param noAnsi
217     *            If true, do not output ANSI escape codes.
218     */
219    private HighlightConverter(final List<PatternFormatter> patternFormatters, final Map<String, String> levelStyles, final boolean noAnsi) {
220        super("style", "style");
221        this.patternFormatters = patternFormatters;
222        this.levelStyles = levelStyles;
223        this.defaultStyle = AnsiEscape.getDefaultStyle();
224        this.noAnsi = noAnsi;
225    }
226
227    /**
228     * {@inheritDoc}
229     */
230    @Override
231    public void format(final LogEvent event, final StringBuilder toAppendTo) {
232        int start = 0;
233        int end = 0;
234        final String levelStyle = levelStyles.get(event.getLevel().name());
235        if (!noAnsi) { // use ANSI: set prefix
236            start = toAppendTo.length();
237            if (levelStyle != null) {
238                toAppendTo.append(levelStyle);
239            }
240            end = toAppendTo.length();
241        }
242
243        // noinspection ForLoopReplaceableByForEach
244        for (int i = 0, size = patternFormatters.size(); i < size; i++) {
245            patternFormatters.get(i).format(event, toAppendTo);
246        }
247
248        // if we use ANSI we need to add the postfix or erase the unnecessary prefix
249        final boolean empty = toAppendTo.length() == end;
250        if (!noAnsi) {
251            if (empty) {
252                toAppendTo.setLength(start); // erase prefix
253            } else if (levelStyle != null) {
254                toAppendTo.append(defaultStyle); // add postfix
255            }
256        }
257    }
258
259    String getLevelStyle(final Level level) {
260        return levelStyles.get(level.name());
261    }
262
263    @Override
264    public boolean handlesThrowable() {
265        for (final PatternFormatter formatter : patternFormatters) {
266            if (formatter .handlesThrowable()) {
267                return true;
268            }
269        }
270        return false;
271    }
272
273}