Class PatchBuilderImpl
- java.lang.Object
-
- jetbrains.buildServer.vcs.AbstractPatchBuilder
-
- jetbrains.buildServer.vcs.patches.PatchBuilderImpl
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,PatchBuilder
,PatchBuilderEx
public class PatchBuilderImpl extends AbstractPatchBuilder implements PatchBuilderEx
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
PatchBuilderImpl.StreamWriteFileContent
static class
PatchBuilderImpl.StreamWriteFileContentWithExtensions
-
Constructor Summary
Constructors Constructor Description PatchBuilderImpl(OutputStream output)
PatchBuilderImpl(LowLevelPatchBuilder builder)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
changeOrCreateBinaryFile(File localFile, String fileMode, InputStream input, long length)
Invoke this method if some binary file content has been changed or binary file has been created in the next version as compared with the previous one.void
changeOrCreateTextFile(File localFile, String fileMode, InputStream input, long length, byte[] lineSeparator)
Invoke this method if some text file content has been changed or text file has been created in the next version as compared with the previous one.void
close()
void
createBinaryFile(File localFile, String fileMode, InputStream input, long length)
Invoke this method if some binary file content has been created in the next version as compared with the previous one.static PatchBuilderImpl.StreamWriteFileContent
createContent(InputStream input, long length)
void
createDirectory(File localFile)
Invoke this method if some directory has been created in the next version as compared with the previous one.void
createTextFile(File localFile, String fileMode, InputStream input, long length, byte[] lineSeparator)
Invoke this method if some text file has been created in the next version as compared with the previous one.void
deleteDirectory(File file, boolean deleteParentDirectoryIfEmpty)
Invoke this method if some directory has been deleted in the next version as compared with the previous one.void
deleteFile(File file, boolean deleteParentDirectoryIfEmpty)
Invoke this method if some file has been deleted in the next version as compared with the previous one.void
fail(String errorMessage)
void
flush()
LowLevelPatchBuilder
getLowLevelBuilder()
void
interrupt()
boolean
isInterrupted()
void
renameDirectory(File file, File newFile, boolean deleteParentDirectoryIfEmpty)
Invoke this method if some directory has been renamed in the next version as compared with the previous one.void
renameFile(File file, File newFile, boolean deleteParentDirectoryIfEmpty)
Invoke this method if some file has been renamed in the next version as compared with the previous one.void
setLastModified(File localFile, long time)
Set last modified timestamp for file-
Methods inherited from class jetbrains.buildServer.vcs.AbstractPatchBuilder
getPathInCurrentWorkingDirectory, setWorkingDirectory
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface jetbrains.buildServer.vcs.patches.PatchBuilder
setWorkingDirectory
-
-
-
-
Constructor Detail
-
PatchBuilderImpl
public PatchBuilderImpl(@NotNull OutputStream output)
-
PatchBuilderImpl
public PatchBuilderImpl(@NotNull LowLevelPatchBuilder builder)
-
-
Method Detail
-
changeOrCreateTextFile
public void changeOrCreateTextFile(@NotNull File localFile, String fileMode, @NotNull InputStream input, long length, byte[] lineSeparator) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some text file content has been changed or text file has been created in the next version as compared with the previous one.- Specified by:
changeOrCreateTextFile
in interfacePatchBuilder
- Parameters:
localFile
- file relative to the current working directoryfileMode
- file mode in the linux style. If it doesn't matter for you set it to null. Set this parameter to not null if its value changes something, for example, pass "ugo+x" if you want the file to be executable and null otherwise. It is performance issue because set file mode will create a lot of processes on the Linux.input
- input stream containing the file content. This stream is guaranteed to be utilized within the call. So it can be safely closed/destroyed right after the invocation.length
- length of the content.lineSeparator
- text content line separator. Set null if you want to use system dependant separators. Use "changeOrCreateBinaryFile" if you want file to keep existing separators.- Throws:
IOException
- thrown if patch collecting process failed.
-
createTextFile
public void createTextFile(@NotNull File localFile, String fileMode, @NotNull InputStream input, long length, byte[] lineSeparator) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some text file has been created in the next version as compared with the previous one.- Specified by:
createTextFile
in interfacePatchBuilder
- Parameters:
localFile
- file relative to the current working directoryfileMode
- file mode in the linux style. If it doesn't matter for you set it to null. Set this parameter to not null if its value changes something, for example, pass "ugo+x" if you want the file to be executable and null otherwise. It is performance issue because set file mode will create a lot of processes on the Linux.input
- input stream containing the file content. This stream is guaranteed to be utilized within the call. So it can be safely closed/destroyed right after the invocation.length
- length of the content.lineSeparator
- text content line separator. Set null if you want to use system dependant separators. Use "createBinaryFile" if you want file to keep existing separators.- Throws:
IOException
- thrown if patch collecting process failed.
-
setLastModified
public void setLastModified(@NotNull File localFile, long time) throws IOException
Description copied from interface:PatchBuilder
Set last modified timestamp for file- Specified by:
setLastModified
in interfacePatchBuilder
- Parameters:
localFile
- relative filetime
- last modified timestamp- Throws:
IOException
- in case of error
-
isInterrupted
public boolean isInterrupted()
-
getLowLevelBuilder
@NotNull public LowLevelPatchBuilder getLowLevelBuilder()
- Specified by:
getLowLevelBuilder
in interfacePatchBuilderEx
-
renameFile
public void renameFile(@NotNull File file, @NotNull File newFile, boolean deleteParentDirectoryIfEmpty) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some file has been renamed in the next version as compared with the previous one.- Specified by:
renameFile
in interfacePatchBuilder
- Parameters:
file
- file relative to the current working directory.newFile
- new file locationdeleteParentDirectoryIfEmpty
- pass true if you want patcher to delete parent directory if it becomes empty after the deletion.- Throws:
IOException
- thrown if patch collecting process failed.
-
renameDirectory
public void renameDirectory(@NotNull File file, @NotNull File newFile, boolean deleteParentDirectoryIfEmpty) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some directory has been renamed in the next version as compared with the previous one.- Specified by:
renameDirectory
in interfacePatchBuilder
- Parameters:
file
- directory relative to the current working directory.newFile
- new directory locationdeleteParentDirectoryIfEmpty
- pass true if you want patcher to delete parent directory if it becomes empty after the deletion. @throws IOException- Throws:
IOException
- thrown if patch collecting process failed.
-
deleteFile
public void deleteFile(@NotNull File file, boolean deleteParentDirectoryIfEmpty) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some file has been deleted in the next version as compared with the previous one.- Specified by:
deleteFile
in interfacePatchBuilder
- Parameters:
file
- file relative to the current working directory.deleteParentDirectoryIfEmpty
- pass true if you want patcher to delete parent directory if it became empty after the deletion.- Throws:
IOException
- thrown if patch collecting process failed.
-
deleteDirectory
public void deleteDirectory(@NotNull File file, boolean deleteParentDirectoryIfEmpty) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some directory has been deleted in the next version as compared with the previous one.- Specified by:
deleteDirectory
in interfacePatchBuilder
- Parameters:
file
- directory relative to the current working directory.deleteParentDirectoryIfEmpty
- pass true if you want patcher to delete parent directory if it became empty after the deletion.- Throws:
IOException
- thrown if patch collecting process failed.
-
changeOrCreateBinaryFile
public void changeOrCreateBinaryFile(@NotNull File localFile, String fileMode, @NotNull InputStream input, long length) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some binary file content has been changed or binary file has been created in the next version as compared with the previous one. This method can be used for text file also if you want to keep existing line separators inside the file.- Specified by:
changeOrCreateBinaryFile
in interfacePatchBuilder
- Parameters:
localFile
- file relative to the current working directory.fileMode
- file mode in the linux style. If it doesn't matter for you set it to null. Set this parameter to not null if its value changes something, for example, pass "ugo+x" if you want the file to be executable and null otherwise. It is performance issue because set file mode will create a lot of processes on the Linux.input
- input stream containing the file content. This stream is guaranteed to be utilized within the call. So it can be safely closed/destroyed right after the invocation.length
- length of the content.- Throws:
IOException
- thrown if patch collecting process failed.
-
createBinaryFile
public void createBinaryFile(@NotNull File localFile, String fileMode, @NotNull InputStream input, long length) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some binary file content has been created in the next version as compared with the previous one. This method can be used for text file also if you want to keep existing line separators inside the file.- Specified by:
createBinaryFile
in interfacePatchBuilder
- Parameters:
localFile
- file relative to the current working directory.fileMode
- file mode in the linux style. If it doesn't matter for you set it to null. Set this parameter to not null if its value changes something, for example, pass "ugo+x" if you want the file to be executable and null otherwise. It is performance issue because set file mode will create a lot of processes on the Linux.input
- input stream containing the file content. This stream is guaranteed to be utilized within the call. So it can be safely closed/destroyed right after the invocation.length
- length of the content.- Throws:
IOException
- thrown if patch collecting process failed.
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Throws:
IOException
-
fail
public void fail(@NotNull String errorMessage) throws IOException
- Specified by:
fail
in interfacePatchBuilderEx
- Throws:
IOException
-
createDirectory
public void createDirectory(@NotNull File localFile) throws IOException
Description copied from interface:PatchBuilder
Invoke this method if some directory has been created in the next version as compared with the previous one.- Specified by:
createDirectory
in interfacePatchBuilder
- Parameters:
localFile
- file relative to the current working directory.- Throws:
IOException
- thrown if patch collecting process failed.
-
interrupt
public void interrupt() throws IOException
- Throws:
IOException
-
flush
public void flush() throws IOException
- Throws:
IOException
-
createContent
@NotNull public static PatchBuilderImpl.StreamWriteFileContent createContent(@NotNull InputStream input, long length)
-
-