Class IfAccumulatedFileSize
java.lang.Object
org.apache.logging.log4j.core.appender.rolling.action.IfAccumulatedFileSize
- All Implemented Interfaces:
PathCondition
@Plugin(name="IfAccumulatedFileSize",
category="Core",
printObject=true)
public final class IfAccumulatedFileSize
extends Object
implements PathCondition
PathCondition that accepts paths after the accumulated file size threshold is exceeded during the file tree walk.
-
Field Summary
Fields inherited from interface org.apache.logging.log4j.core.appender.rolling.action.PathCondition
EMPTY_ARRAY
-
Method Summary
Modifier and TypeMethodDescriptionboolean
accept
(Path basePath, Path relativePath, BasicFileAttributes attrs) Returnstrue
if the specified candidate path should be deleted,false
otherwise.void
Invoked before a new file tree walk is started.static IfAccumulatedFileSize
createFileSizeCondition
(String size, PathCondition... nestedConditions) Create an IfAccumulatedFileSize condition.long
toString()
-
Method Details
-
getThresholdBytes
public long getThresholdBytes() -
getNestedConditions
-
accept
Description copied from interface:PathCondition
Returnstrue
if the specified candidate path should be deleted,false
otherwise.- Specified by:
accept
in interfacePathCondition
- Parameters:
basePath
- the directory from where to start scanning for deletion candidate filesrelativePath
- the candidate for deletion. This path is relative to the baseDir.attrs
- attributes of the candidate path- Returns:
- whether the candidate path should be deleted
-
beforeFileTreeWalk
public void beforeFileTreeWalk()Description copied from interface:PathCondition
Invoked before a new file tree walk is started. Stateful PathConditions can reset their state when this method is called.- Specified by:
beforeFileTreeWalk
in interfacePathCondition
-
createFileSizeCondition
@PluginFactory public static IfAccumulatedFileSize createFileSizeCondition(@PluginAttribute("exceeds") String size, @PluginElement("PathConditions") PathCondition... nestedConditions) Create an IfAccumulatedFileSize condition.- Parameters:
size
- The threshold accumulated file size from which files will be deleted.- Returns:
- An IfAccumulatedFileSize condition.
-
toString
-