7661f1c2bf
This patch replaces the gzstream zlib wrapper with the iostream3 wrapper provided as part of zlib contributions. The main reason for the switch is to avoid including LGPL in the default gem5 build. iostream3 is provided under a more permissive license: The code is provided "as is", with the permission to use, copy, modify, distribute and sell it for any purpose without fee.
17 lines
491 B
Text
17 lines
491 B
Text
Possible upgrades to gzfilebuf:
|
|
|
|
- The ability to do putback (e.g. putbackfail)
|
|
|
|
- The ability to seek (zlib supports this, but could be slow/tricky)
|
|
|
|
- Simultaneous read/write access (does it make sense?)
|
|
|
|
- Support for ios_base::ate open mode
|
|
|
|
- Locale support?
|
|
|
|
- Check public interface to see which calls give problems
|
|
(due to dependence on library internals)
|
|
|
|
- Override operator<<(ostream&, gzfilebuf*) to allow direct copying
|
|
of stream buffer to stream ( i.e. os << is.rdbuf(); )
|