2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
XZ Utils To-Do List
|
|
|
|
===================
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
Known bugs
|
|
|
|
----------
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
The test suite is too incomplete.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2010-01-31 21:41:29 +00:00
|
|
|
If the memory usage limit is less than about 13 MiB, xz is unable to
|
2009-07-18 11:34:08 +00:00
|
|
|
automatically scale down the compression settings enough even though
|
|
|
|
it would be possible by switching from BT2/BT3/BT4 match finder to
|
|
|
|
HC3/HC4.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-08-27 12:23:27 +00:00
|
|
|
XZ Utils compress some files significantly worse than LZMA Utils.
|
|
|
|
This is due to faster compression presets used by XZ Utils, and
|
2010-10-19 07:21:08 +00:00
|
|
|
can often be worked around by using "xz --extreme". With some files
|
|
|
|
--extreme isn't enough though: it's most likely with files that
|
|
|
|
compress extremely well, so going from compression ratio of 0.003
|
|
|
|
to 0.004 means big relative increase in the compressed file size.
|
2009-08-27 12:23:27 +00:00
|
|
|
|
2009-09-01 17:20:19 +00:00
|
|
|
xz doesn't quote unprintable characters when it displays file names
|
|
|
|
given on the command line.
|
|
|
|
|
2010-01-31 21:41:29 +00:00
|
|
|
tuklib_exit() doesn't block signals => EINTR is possible.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2010-10-19 07:21:08 +00:00
|
|
|
SIGTSTP is not handled. If xz is stopped, the estimated remaining
|
|
|
|
time and calculated (de)compression speed won't make sense in the
|
|
|
|
progress indicator (xz --verbose).
|
|
|
|
|
2012-07-04 14:06:49 +00:00
|
|
|
If liblzma has created threads and fork() gets called, liblzma
|
|
|
|
code will break in the child process unless it calls exec() and
|
|
|
|
doesn't touch liblzma.
|
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2010-01-31 21:41:29 +00:00
|
|
|
Missing features
|
|
|
|
----------------
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2012-07-04 14:06:49 +00:00
|
|
|
Support LZMA_FINISH in raw decoder to indicate end of LZMA1 and
|
|
|
|
other streams that don't have an end of payload marker.
|
|
|
|
|
|
|
|
Adjust dictionary size when the input file size is known.
|
|
|
|
Maybe do this only if an option is given.
|
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
xz doesn't support copying extended attributes, access control
|
|
|
|
lists etc. from source to target file.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2011-04-12 08:45:40 +00:00
|
|
|
Multithreaded compression:
|
|
|
|
- Reduce memory usage of the current method.
|
|
|
|
- Implement threaded match finders.
|
|
|
|
- Implement pigz-style threading in LZMA2.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
Multithreaded decompression
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
Buffer-to-buffer coding could use less RAM (especially when
|
|
|
|
decompressing LZMA1 or LZMA2).
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2010-10-19 07:21:08 +00:00
|
|
|
I/O library is not implemented (similar to gzopen() in zlib).
|
|
|
|
It will be a separate library that supports uncompressed, .gz,
|
|
|
|
.bz2, .lzma, and .xz files.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2011-04-12 08:45:40 +00:00
|
|
|
Support changing lzma_options_lzma.mode with lzma_filters_update().
|
|
|
|
|
|
|
|
Support LZMA_FULL_FLUSH for lzma_stream_decoder() to stop at
|
|
|
|
Block and Stream boundaries.
|
|
|
|
|
2010-01-31 21:41:29 +00:00
|
|
|
lzma_strerror() to convert lzma_ret to human readable form?
|
|
|
|
This is tricky, because the same error codes are used with
|
2010-10-19 07:21:08 +00:00
|
|
|
slightly different meanings, and this cannot be fixed anymore.
|
2010-01-31 21:41:29 +00:00
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
|
|
|
|
Documentation
|
2009-07-18 11:34:08 +00:00
|
|
|
-------------
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
Some tutorial is needed for liblzma. I have planned to write some
|
|
|
|
extremely well commented example programs, which would work as
|
|
|
|
a tutorial. I suppose the Doxygen tags are quite OK as a quick
|
|
|
|
reference once one is familiar with the liblzma API.
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-07-18 11:34:08 +00:00
|
|
|
Document the LZMA1 and LZMA2 algorithms.
|
2007-12-08 22:42:33 +00:00
|
|
|
|