Class ParallelScatterZipCreator
ScatterZipOutputStream
instances.
Note that until 1.18, this class generally made no guarantees about the order of things written to the output file. Things that needed to come in a specific
order (manifests, directories) had to be handled by the client of this class, usually by writing these things to the ZipArchiveOutputStream
before calling writeTo
on this class.
The client can supply an ExecutorService
, but for reasons of memory model consistency, this will be shut down by this class
prior to completion.
- Since:
- 1.10
-
Constructor Summary
ConstructorDescriptionConstructs a ParallelScatterZipCreator with default threads, which is set to the number of available processors, as defined byRuntime.availableProcessors()
ParallelScatterZipCreator
(ExecutorService executorService) Constructs a ParallelScatterZipCreatorParallelScatterZipCreator
(ExecutorService executorService, ScatterGatherBackingStoreSupplier backingStoreSupplier) Constructs a ParallelScatterZipCreatorParallelScatterZipCreator
(ExecutorService executorService, ScatterGatherBackingStoreSupplier backingStoreSupplier, int compressionLevel) Constructs a ParallelScatterZipCreator -
Method Summary
Modifier and TypeMethodDescriptionvoid
addArchiveEntry
(ZipArchiveEntryRequestSupplier zipArchiveEntryRequestSupplier) Adds an archive entry to this archive.void
addArchiveEntry
(ZipArchiveEntry zipArchiveEntry, InputStreamSupplier source) Adds an archive entry to this archive.final Callable<ScatterZipOutputStream>
createCallable
(ZipArchiveEntryRequestSupplier zipArchiveEntryRequestSupplier) Creates a callable that will compress archive entry supplied byZipArchiveEntryRequestSupplier
.final Callable<ScatterZipOutputStream>
createCallable
(ZipArchiveEntry zipArchiveEntry, InputStreamSupplier source) Creates a callable that will compress the given archive entry.Gets a message describing the overall statistics of the compression runfinal void
Submits a callable for compression.final void
submitStreamAwareCallable
(Callable<? extends ScatterZipOutputStream> callable) Submits a callable for compression.void
writeTo
(ZipArchiveOutputStream targetStream) Writes the contents this to the targetZipArchiveOutputStream
.
-
Constructor Details
-
ParallelScatterZipCreator
public ParallelScatterZipCreator()Constructs a ParallelScatterZipCreator with default threads, which is set to the number of available processors, as defined byRuntime.availableProcessors()
-
ParallelScatterZipCreator
Constructs a ParallelScatterZipCreator- Parameters:
executorService
- The executorService to use for parallel scheduling. For technical reasons, this will be shut down by this class.
-
ParallelScatterZipCreator
public ParallelScatterZipCreator(ExecutorService executorService, ScatterGatherBackingStoreSupplier backingStoreSupplier) Constructs a ParallelScatterZipCreator- Parameters:
executorService
- The executorService to use. For technical reasons, this will be shut down by this class.backingStoreSupplier
- The supplier of backing store which shall be used
-
ParallelScatterZipCreator
public ParallelScatterZipCreator(ExecutorService executorService, ScatterGatherBackingStoreSupplier backingStoreSupplier, int compressionLevel) throws IllegalArgumentException Constructs a ParallelScatterZipCreator- Parameters:
executorService
- The executorService to use. For technical reasons, this will be shut down by this class.backingStoreSupplier
- The supplier of backing store which shall be usedcompressionLevel
- The compression level used in compression, this value should be -1(default level) or between 0~9.- Throws:
IllegalArgumentException
- if the compression level is illegal- Since:
- 1.21
-
-
Method Details
-
addArchiveEntry
Adds an archive entry to this archive.This method is expected to be called from a single client thread
- Parameters:
zipArchiveEntry
- The entry to add.source
- The source input stream supplier
-
addArchiveEntry
Adds an archive entry to this archive.This method is expected to be called from a single client thread
- Parameters:
zipArchiveEntryRequestSupplier
- Should supply the entry to be added.- Since:
- 1.13
-
createCallable
public final Callable<ScatterZipOutputStream> createCallable(ZipArchiveEntry zipArchiveEntry, InputStreamSupplier source) Creates a callable that will compress the given archive entry.This method is expected to be called from a single client thread.
Consider usingaddArchiveEntry
, which wraps this method andsubmitStreamAwareCallable
. The most common use case for usingcreateCallable
andsubmitStreamAwareCallable
from a client is if you want to wrap the callable in something that can be prioritized by the suppliedExecutorService
, for instance to process large or slow files first. Since the creation of theExecutorService
is handled by the client, all of this is up to the client.- Parameters:
zipArchiveEntry
- The entry to add.source
- The source input stream supplier- Returns:
- A callable that should subsequently be passed to #submitStreamAwareCallable, possibly in a wrapped/adapted from. The value of this callable is not used, but any exceptions happening inside the compression will be propagated through the callable.
-
createCallable
public final Callable<ScatterZipOutputStream> createCallable(ZipArchiveEntryRequestSupplier zipArchiveEntryRequestSupplier) Creates a callable that will compress archive entry supplied byZipArchiveEntryRequestSupplier
.This method is expected to be called from a single client thread.
The same ascreateCallable(ZipArchiveEntry, InputStreamSupplier)
, but the archive entry to be added is supplied by aZipArchiveEntryRequestSupplier
.- Parameters:
zipArchiveEntryRequestSupplier
- Should supply the entry to be added.- Returns:
- A callable that should subsequently be passed to #submitStreamAwareCallable, possibly in a wrapped/adapted from. The value of this callable is not used, but any exceptions happening inside the compression will be propagated through the callable.
- Since:
- 1.13
- See Also:
-
getStatisticsMessage
Gets a message describing the overall statistics of the compression run- Returns:
- A string
-
submit
Submits a callable for compression.- Parameters:
callable
- The callable to run, created bycreateCallable
, possibly wrapped by caller.- See Also:
-
submitStreamAwareCallable
Submits a callable for compression.- Parameters:
callable
- The callable to run, created bycreateCallable
, possibly wrapped by caller.- Since:
- 1.19
- See Also:
-
writeTo
public void writeTo(ZipArchiveOutputStream targetStream) throws IOException, InterruptedException, ExecutionException Writes the contents this to the targetZipArchiveOutputStream
.It may be beneficial to write things like directories and manifest files to the targetStream before calling this method.
Calling this method will shut down the
ExecutorService
used by this class. If any of theCallable
ssubmit
ted to this instance throws an exception, the archive can not be created properly and this method will throw an exception.- Parameters:
targetStream
- TheZipArchiveOutputStream
to receive the contents of the scatter streams- Throws:
IOException
- If writing failsInterruptedException
- If we get interruptedExecutionException
- If something happens in the parallel execution
-