Package org.apache.maven.plugins.clean
Class Cleaner
- java.lang.Object
-
- org.apache.maven.plugins.clean.Cleaner
-
class Cleaner extends java.lang.ObjectCleans directories.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description private static classCleaner.BackgroundCleanerprivate static interfaceCleaner.Loggerprivate static classCleaner.Result(package private) static classCleaner.SpyInvocationHandler
-
Field Summary
Fields Modifier and Type Field Description private java.io.FilefastDirprivate java.lang.StringfastModeprivate static java.lang.StringLAST_DIRECTORY_TO_DELETEprivate Cleaner.LoggerlogDebugprivate Cleaner.LoggerlogInfoprivate Cleaner.LoggerlogVerboseprivate Cleaner.LoggerlogWarnprivate static booleanON_WINDOWSprivate org.apache.maven.execution.MavenSessionsessionThe maven session.
-
Constructor Summary
Constructors Constructor Description Cleaner(org.apache.maven.execution.MavenSession session, org.apache.maven.plugin.logging.Log log, boolean verbose, java.io.File fastDir, java.lang.String fastMode)Creates a new cleaner.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description private intdelete(java.io.File file, boolean failOnError, boolean retryOnError)Deletes the specified file, directory.private Cleaner.Resultdelete(java.io.File file, java.lang.String pathname, Selector selector, boolean followSymlinks, boolean failOnError, boolean retryOnError)Deletes the specified file or directory.voiddelete(java.io.File basedir, Selector selector, boolean followSymlinks, boolean failOnError, boolean retryOnError)Deletes the specified directories and its contents.private booleanfastDelete(java.io.File baseDirFile)
-
-
-
Field Detail
-
ON_WINDOWS
private static final boolean ON_WINDOWS
-
LAST_DIRECTORY_TO_DELETE
private static final java.lang.String LAST_DIRECTORY_TO_DELETE
-
session
private final org.apache.maven.execution.MavenSession session
The maven session. This is typically non-null in a real run, but it can be during unit tests.
-
logDebug
private final Cleaner.Logger logDebug
-
logInfo
private final Cleaner.Logger logInfo
-
logVerbose
private final Cleaner.Logger logVerbose
-
logWarn
private final Cleaner.Logger logWarn
-
fastDir
private final java.io.File fastDir
-
fastMode
private final java.lang.String fastMode
-
-
Constructor Detail
-
Cleaner
Cleaner(org.apache.maven.execution.MavenSession session, org.apache.maven.plugin.logging.Log log, boolean verbose, java.io.File fastDir, java.lang.String fastMode)Creates a new cleaner.- Parameters:
log- The logger to use, may benullto disable logging.verbose- Whether to perform verbose logging.fastMode- The fast deletion mode
-
-
Method Detail
-
delete
public void delete(java.io.File basedir, Selector selector, boolean followSymlinks, boolean failOnError, boolean retryOnError) throws java.io.IOExceptionDeletes the specified directories and its contents.- Parameters:
basedir- The directory to delete, must not benull. Non-existing directories will be silently ignored.selector- The selector used to determine what contents to delete, may benullto delete everything.followSymlinks- Whether to follow symlinks.failOnError- Whether to abort with an exception in case a selected file/directory could not be deleted.retryOnError- Whether to undertake additional delete attempts in case the first attempt failed.- Throws:
java.io.IOException- If a file/directory could not be deleted andfailOnErroristrue.
-
fastDelete
private boolean fastDelete(java.io.File baseDirFile)
-
delete
private Cleaner.Result delete(java.io.File file, java.lang.String pathname, Selector selector, boolean followSymlinks, boolean failOnError, boolean retryOnError) throws java.io.IOException
Deletes the specified file or directory.- Parameters:
file- The file/directory to delete, must not benull. IffollowSymlinksisfalse, it is assumed that the parent file is canonical.pathname- The relative pathname of the file, usingFile.separatorChar, must not benull.selector- The selector used to determine what contents to delete, may benullto delete everything.followSymlinks- Whether to follow symlinks.failOnError- Whether to abort with an exception in case a selected file/directory could not be deleted.retryOnError- Whether to undertake additional delete attempts in case the first attempt failed.- Returns:
- The result of the cleaning, never
null. - Throws:
java.io.IOException- If a file/directory could not be deleted andfailOnErroristrue.
-
delete
private int delete(java.io.File file, boolean failOnError, boolean retryOnError) throws java.io.IOExceptionDeletes the specified file, directory. If the path denotes a symlink, only the link is removed, its target is left untouched.- Parameters:
file- The file/directory to delete, must not benull.failOnError- Whether to abort with an exception in case the file/directory could not be deleted.retryOnError- Whether to undertake additional delete attempts in case the first attempt failed.- Returns:
0if the file was deleted,1otherwise.- Throws:
java.io.IOException- If a file/directory could not be deleted andfailOnErroristrue.
-
-