[ruby-core:96898] [Ruby master Bug#9790] Zlib::GzipReader only decompressed the first of concatenated files
From:
ko1@...
Date:
2020-01-16 07:39:01 UTC
List:
ruby-core #96898
Issue #9790 has been updated by ko1 (Koichi Sasada).
* mame: can each_file return an Enumerator? Seems difficult to implement it
* matz: How about always behaving like zcat? Is an option to keep the old behaviors really needed?
* akr: The traditional behavior should be kept
* akr: gzip(1) describes concatenation of gzip files in ADVANCED USAGE. https://www.gnu.org/software/gzip/manual/gzip.html#Advanced-usage
Conclusion:
* matz: it should behave like zcat. Handling each member should be deleted.
----------------------------------------
Bug #9790: Zlib::GzipReader only decompressed the first of concatenated files
https://bugs.ruby-lang.org/issues/9790#change-83912
* Author: quainjn (Jake Quain)
* Status: Feedback
* Priority: Normal
* Assignee: drbrain (Eric Hodel)
* Target version:
* ruby -v: 2.1.1
* Backport: 2.0.0: UNKNOWN, 2.1: UNKNOWN
----------------------------------------
There is a similar old issue in Node that I came across that perfectly describes the situation in ruby:
https://github.com/joyent/node/issues/6032
In ruby given the following setup:
```
echo "1" > 1.txt
echo "2" > 2.txt
gzip 1.txt
gzip 2.txt
cat 1.txt.gz 2.txt.gz > 3.txt.gz
```
Calling:
```
Zlib::GzipReader.open("3.txt.gz") do |gz|
print gz.read
end
```
would just print:
```
1
```
---Files--------------------------------
zlib-gzreader-each_file-9790.patch (3.47 KB)
--
https://bugs.ruby-lang.org/
Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>