Package org.eclipse.aether.internal.impl
Class DefaultPathProcessor
java.lang.Object
org.eclipse.aether.internal.impl.DefaultPathProcessor
- All Implemented Interfaces:
PathProcessor
A utility class helping with file-based operations.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.eclipse.aether.spi.io.PathProcessor
PathProcessor.ProgressListener
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Copies the specified source file to the given target file.long
copy
(Path source, Path target, PathProcessor.ProgressListener listener) Copies the specified source file to the given target file.void
Moves the specified source file to the given target file.void
write
(Path target, InputStream source) Writes the given stream to a file.void
Writes the given data to a file.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.eclipse.aether.spi.io.PathProcessor
lastModified, size
-
Constructor Details
-
DefaultPathProcessor
public DefaultPathProcessor()
-
-
Method Details
-
write
Description copied from interface:PathProcessor
Writes the given data to a file. UTF-8 is assumed as encoding for the data. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Specified by:
write
in interfacePathProcessor
- Parameters:
target
- The file to write to, must not benull
. This file will be overwritten.data
- The data to write, may benull
.- Throws:
IOException
- If an I/O error occurs.
-
write
Description copied from interface:PathProcessor
Writes the given stream to a file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Specified by:
write
in interfacePathProcessor
- Parameters:
target
- The file to write to, must not benull
. This file will be overwritten.source
- The stream to write to the file, must not benull
.- Throws:
IOException
- If an I/O error occurs.
-
copy
Description copied from interface:PathProcessor
Copies the specified source file to the given target file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Specified by:
copy
in interfacePathProcessor
- Parameters:
source
- The file to copy from, must not benull
.target
- The file to copy to, must not benull
.- Throws:
IOException
- If an I/O error occurs.
-
copy
public long copy(Path source, Path target, PathProcessor.ProgressListener listener) throws IOException Description copied from interface:PathProcessor
Copies the specified source file to the given target file. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Specified by:
copy
in interfacePathProcessor
- Parameters:
source
- The file to copy from, must not benull
.target
- The file to copy to, must not benull
.listener
- The listener to notify about the copy progress, may benull
.- Returns:
- The number of copied bytes.
- Throws:
IOException
- If an I/O error occurs.
-
move
Description copied from interface:PathProcessor
Moves the specified source file to the given target file. If the target file already exists, it is overwritten. Creates the necessary directories for the target file. In case of an error, the created directories will be left on the file system.- Specified by:
move
in interfacePathProcessor
- Parameters:
source
- The file to move from, must not benull
.target
- The file to move to, must not benull
.- Throws:
IOException
- If an I/O error occurs.
-