bodewig commented on a change in pull request #76: COMPRESS-481 Allow passing
memory limit to SevenZFile
URL: https://github.com/apache/commons-compress/pull/76#discussion_r275737222
##########
File path:
src/main/java/org/apache/commons/compress/archivers/sevenz/LZMA2Decoder.java
##########
@@ -33,9 +34,12 @@
@Override
InputStream decode(final String archiveName, final InputStream in, final
long uncompressedLength,
- final Coder coder, final byte[] password) throws IOException {
+ final Coder coder, final byte[] password, int maxMemoryLimitInKb)
throws IOException {
try {
final int dictionarySize = getDictionarySize(coder);
+ if ((dictionarySize / 1024) > maxMemoryLimitInKb) {
Review comment:
sorry about the previous comment which applied to `LZMAInputStream`.
`LZMA2InputStream` also provides a static `getMemoryUsage` which might be a
better option to calculate memory consumption.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services