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 */ 017 package org.apache.logging.log4j.core.appender; 018 019 import java.io.Serializable; 020 import java.util.HashMap; 021 import java.util.Map; 022 import java.util.zip.Deflater; 023 024 import org.apache.logging.log4j.core.Filter; 025 import org.apache.logging.log4j.core.Layout; 026 import org.apache.logging.log4j.core.LogEvent; 027 import org.apache.logging.log4j.core.appender.rolling.DefaultRolloverStrategy; 028 import org.apache.logging.log4j.core.appender.rolling.RollingFileManager; 029 import org.apache.logging.log4j.core.appender.rolling.RolloverStrategy; 030 import org.apache.logging.log4j.core.appender.rolling.TriggeringPolicy; 031 import org.apache.logging.log4j.core.config.Configuration; 032 import org.apache.logging.log4j.core.config.plugins.Plugin; 033 import org.apache.logging.log4j.core.config.plugins.PluginAttribute; 034 import org.apache.logging.log4j.core.config.plugins.PluginConfiguration; 035 import org.apache.logging.log4j.core.config.plugins.PluginElement; 036 import org.apache.logging.log4j.core.config.plugins.PluginFactory; 037 import org.apache.logging.log4j.core.layout.PatternLayout; 038 import org.apache.logging.log4j.core.net.Advertiser; 039 import org.apache.logging.log4j.core.util.Booleans; 040 import org.apache.logging.log4j.core.util.Integers; 041 042 /** 043 * An appender that writes to files and can roll over at intervals. 044 */ 045 @Plugin(name = "RollingFile", category = "Core", elementType = "appender", printObject = true) 046 public final class RollingFileAppender extends AbstractOutputStreamAppender<RollingFileManager> { 047 048 private static final int DEFAULT_BUFFER_SIZE = 8192; 049 private final String fileName; 050 private final String filePattern; 051 private Object advertisement; 052 private final Advertiser advertiser; 053 054 055 private RollingFileAppender(final String name, final Layout<? extends Serializable> layout, final Filter filter, 056 final RollingFileManager manager, final String fileName, final String filePattern, 057 final boolean ignoreExceptions, final boolean immediateFlush, final Advertiser advertiser) { 058 super(name, layout, filter, ignoreExceptions, immediateFlush, manager); 059 if (advertiser != null) { 060 final Map<String, String> configuration = new HashMap<String, String>(layout.getContentFormat()); 061 configuration.put("contentType", layout.getContentType()); 062 configuration.put("name", name); 063 advertisement = advertiser.advertise(configuration); 064 } 065 this.fileName = fileName; 066 this.filePattern = filePattern; 067 this.advertiser = advertiser; 068 } 069 070 @Override 071 public void stop() { 072 super.stop(); 073 if (advertiser != null) { 074 advertiser.unadvertise(advertisement); 075 } 076 } 077 078 /** 079 * Write the log entry rolling over the file when required. 080 081 * @param event The LogEvent. 082 */ 083 @Override 084 public void append(final LogEvent event) { 085 getManager().checkRollover(event); 086 super.append(event); 087 } 088 089 /** 090 * Returns the File name for the Appender. 091 * @return The file name. 092 */ 093 public String getFileName() { 094 return fileName; 095 } 096 097 /** 098 * Returns the file pattern used when rolling over. 099 * @return The file pattern. 100 */ 101 public String getFilePattern() { 102 return filePattern; 103 } 104 105 /** 106 * Create a RollingFileAppender. 107 * @param fileName The name of the file that is actively written to. (required). 108 * @param filePattern The pattern of the file name to use on rollover. (required). 109 * @param append If true, events are appended to the file. If false, the file 110 * is overwritten when opened. Defaults to "true" 111 * @param name The name of the Appender (required). 112 * @param bufferedIO When true, I/O will be buffered. Defaults to "true". 113 * @param bufferSizeStr buffer size for buffered IO (default is 8192). 114 * @param immediateFlush When true, events are immediately flushed. Defaults to "true". 115 * @param policy The triggering policy. (required). 116 * @param strategy The rollover strategy. Defaults to DefaultRolloverStrategy. 117 * @param layout The layout to use (defaults to the default PatternLayout). 118 * @param filter The Filter or null. 119 * @param ignore If {@code "true"} (default) exceptions encountered when appending events are logged; otherwise 120 * they are propagated to the caller. 121 * @param advertise "true" if the appender configuration should be advertised, "false" otherwise. 122 * @param advertiseURI The advertised URI which can be used to retrieve the file contents. 123 * @param config The Configuration. 124 * @return A RollingFileAppender. 125 */ 126 @PluginFactory 127 public static RollingFileAppender createAppender( 128 @PluginAttribute("fileName") final String fileName, 129 @PluginAttribute("filePattern") final String filePattern, 130 @PluginAttribute("append") final String append, 131 @PluginAttribute("name") final String name, 132 @PluginAttribute("bufferedIO") final String bufferedIO, 133 @PluginAttribute("bufferSize") final String bufferSizeStr, 134 @PluginAttribute("immediateFlush") final String immediateFlush, 135 @PluginElement("Policy") final TriggeringPolicy policy, 136 @PluginElement("Strategy") RolloverStrategy strategy, 137 @PluginElement("Layout") Layout<? extends Serializable> layout, 138 @PluginElement("Filter") final Filter filter, 139 @PluginAttribute("ignoreExceptions") final String ignore, 140 @PluginAttribute("advertise") final String advertise, 141 @PluginAttribute("advertiseURI") final String advertiseURI, 142 @PluginConfiguration final Configuration config) { 143 144 final boolean isAppend = Booleans.parseBoolean(append, true); 145 final boolean ignoreExceptions = Booleans.parseBoolean(ignore, true); 146 final boolean isBuffered = Booleans.parseBoolean(bufferedIO, true); 147 final boolean isFlush = Booleans.parseBoolean(immediateFlush, true); 148 final boolean isAdvertise = Boolean.parseBoolean(advertise); 149 final int bufferSize = Integers.parseInt(bufferSizeStr, DEFAULT_BUFFER_SIZE); 150 if (!isBuffered && bufferSize > 0) { 151 LOGGER.warn("The bufferSize is set to {} but bufferedIO is not true: {}", bufferSize, bufferedIO); 152 } 153 if (name == null) { 154 LOGGER.error("No name provided for FileAppender"); 155 return null; 156 } 157 158 if (fileName == null) { 159 LOGGER.error("No filename was provided for FileAppender with name " + name); 160 return null; 161 } 162 163 if (filePattern == null) { 164 LOGGER.error("No filename pattern provided for FileAppender with name " + name); 165 return null; 166 } 167 168 if (policy == null) { 169 LOGGER.error("A TriggeringPolicy must be provided"); 170 return null; 171 } 172 173 if (strategy == null) { 174 strategy = DefaultRolloverStrategy.createStrategy(null, null, null, 175 String.valueOf(Deflater.DEFAULT_COMPRESSION), config); 176 } 177 178 if (layout == null) { 179 layout = PatternLayout.createDefaultLayout(); 180 } 181 182 final RollingFileManager manager = RollingFileManager.getFileManager(fileName, filePattern, isAppend, 183 isBuffered, policy, strategy, advertiseURI, layout, bufferSize); 184 if (manager == null) { 185 return null; 186 } 187 188 return new RollingFileAppender(name, layout, filter, manager, fileName, filePattern, 189 ignoreExceptions, isFlush, isAdvertise ? config.getAdvertiser() : null); 190 } 191 }