View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one or more
3    * contributor license agreements. See the NOTICE file distributed with
4    * this work for additional information regarding copyright ownership.
5    * The ASF licenses this file to You under the Apache license, Version 2.0
6    * (the "License"); you may not use this file except in compliance with
7    * the License. You may obtain a copy of the License at
8    *
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   *
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the license for the specific language governing permissions and
15   * limitations under the license.
16   */
17  package org.apache.logging.log4j.core.layout;
18  
19  import java.io.IOException;
20  import java.nio.charset.Charset;
21  
22  import org.apache.commons.csv.CSVFormat;
23  import org.apache.commons.csv.CSVPrinter;
24  import org.apache.commons.csv.QuoteMode;
25  import org.apache.logging.log4j.core.Layout;
26  import org.apache.logging.log4j.core.LogEvent;
27  import org.apache.logging.log4j.core.config.Node;
28  import org.apache.logging.log4j.core.config.plugins.Plugin;
29  import org.apache.logging.log4j.core.config.plugins.PluginAttribute;
30  import org.apache.logging.log4j.core.config.plugins.PluginFactory;
31  import org.apache.logging.log4j.status.StatusLogger;
32  
33  /**
34   * A Comma-Separated Value (CSV) layout to log events.
35   * 
36   * Depends on Apache Commons CSV 1.2.
37   * 
38   * @since 2.4
39   */
40  @Plugin(name = "CsvLogEventLayout", category = Node.CATEGORY, elementType = Layout.ELEMENT_TYPE, printObject = true)
41  public class CsvLogEventLayout extends AbstractCsvLayout {
42  
43      private static final long serialVersionUID = 1L;
44      
45      public static CsvLogEventLayout createDefaultLayout() {
46          return new CsvLogEventLayout(Charset.forName(DEFAULT_CHARSET), CSVFormat.valueOf(DEFAULT_FORMAT), null, null);
47      }
48  
49      public static CsvLogEventLayout createLayout(final CSVFormat format) {
50          return new CsvLogEventLayout(Charset.forName(DEFAULT_CHARSET), format, null, null);
51      }
52  
53      @PluginFactory
54      public static CsvLogEventLayout createLayout(
55              // @formatter:off
56              @PluginAttribute(value = "format", defaultString = DEFAULT_FORMAT) final String format,
57              @PluginAttribute("delimiter") final Character delimiter,
58              @PluginAttribute("escape") final Character escape,
59              @PluginAttribute("quote") final Character quote,
60              @PluginAttribute("quoteMode") final QuoteMode quoteMode,
61              @PluginAttribute("nullString") final String nullString,
62              @PluginAttribute("recordSeparator") final String recordSeparator,
63              @PluginAttribute(value = "charset", defaultString = DEFAULT_CHARSET) final Charset charset,
64              @PluginAttribute("header") final String header,
65              @PluginAttribute("footer") final String footer)
66              // @formatter:on
67      {
68  
69          final CSVFormat csvFormat = createFormat(format, delimiter, escape, quote, quoteMode, nullString, recordSeparator);
70          return new CsvLogEventLayout(charset, csvFormat, header, footer);
71      }
72     
73      protected CsvLogEventLayout(final Charset charset, final CSVFormat csvFormat, final String header, final String footer) {
74          super(charset, csvFormat, header, footer);
75      }
76  
77      @Override
78      public String toSerializable(final LogEvent event) {
79          final StringBuilder buffer = getStringBuilder();
80          // Revisit when 1.3 is out so that we do not need to create a new
81          // printer for each event.
82          // No need to close the printer.
83          try (final CSVPrinter printer = new CSVPrinter(buffer, getFormat())) {
84              printer.print(event.getNanoTime());
85              printer.print(event.getTimeMillis());
86              printer.print(event.getLevel());
87              printer.print(event.getThreadName());
88              printer.print(event.getMessage().getFormattedMessage());
89              printer.print(event.getLoggerFqcn());
90              printer.print(event.getLoggerName());
91              printer.print(event.getMarker());
92              printer.print(event.getThrownProxy());
93              printer.print(event.getSource());
94              printer.print(event.getContextMap());
95              printer.print(event.getContextStack());
96              printer.println();
97              return buffer.toString();
98          } catch (final IOException e) {
99              StatusLogger.getLogger().error(event.toString(), e);
100             return getFormat().getCommentMarker() + " " + e;
101         }
102     }
103 
104 }