Translations: Update Korean man page translations
[xz.git] / TODO
blob20a702fdc277fab5da67931bd454d05f7bc646c8
2 XZ Utils To-Do List
3 ===================
5 Known bugs
6 ----------
8     The test suite is too incomplete.
10     If the memory usage limit is less than about 13 MiB, xz is unable to
11     automatically scale down the compression settings enough even though
12     it would be  possible by switching from BT2/BT3/BT4 match finder to
13     HC3/HC4.
15     XZ Utils compress some files significantly worse than LZMA Utils.
16     This is due to faster compression presets used by XZ Utils, and
17     can often be worked around by using "xz --extreme". With some files
18     --extreme isn't enough though: it's most likely with files that
19     compress extremely well, so going from compression ratio of 0.003
20     to 0.004 means big relative increase in the compressed file size.
22     tuklib_exit() doesn't block signals => EINTR is possible.
24     If liblzma has created threads and fork() gets called, liblzma
25     code will break in the child process unless it calls exec() and
26     doesn't touch liblzma.
29 Missing features
30 ----------------
32     Add support for storing metadata in .xz files. A preliminary
33     idea is to create a new Stream type for metadata. When both
34     metadata and data are wanted in the same .xz file, two or more
35     Streams would be concatenated.
37     The state stored in lzma_stream should be cloneable, which would
38     be mostly useful when using a preset dictionary in LZMA2, but
39     it may have other uses too. Compare to deflateCopy() in zlib.
41     Support LZMA_FINISH in raw decoder to indicate end of LZMA1 and
42     other streams that don't have an end of payload marker.
44     Adjust dictionary size when the input file size is known.
45     Maybe do this only if an option is given.
47     xz doesn't support copying extended attributes, access control
48     lists etc. from source to target file.
50     Multithreaded compression:
51       - Reduce memory usage of the current method.
52       - Implement threaded match finders.
53       - Implement pigz-style threading in LZMA2.
55     Buffer-to-buffer coding could use less RAM (especially when
56     decompressing LZMA1 or LZMA2).
58     I/O library is not implemented (similar to gzopen() in zlib).
59     It will be a separate library that supports uncompressed, .gz,
60     .bz2, .lzma, and .xz files.
62     Support changing lzma_options_lzma.mode with lzma_filters_update().
64     Support LZMA_FULL_FLUSH for lzma_stream_decoder() to stop at
65     Block and Stream boundaries.
67     lzma_strerror() to convert lzma_ret to human readable form?
68     This is tricky, because the same error codes are used with
69     slightly different meanings, and this cannot be fixed anymore.
71     Make it possible to adjust LZMA2 options in the middle of a Block
72     so that the encoding speed vs. compression ratio can be optimized
73     when the compressed data is streamed over network.
75     Improved BCJ filters. The current filters are small but they aren't
76     so great when compressing binary packages that contain various file
77     types. Specifically, they make things worse if there are static
78     libraries or Linux kernel modules. The filtering could also be
79     more effective (without getting overly complex), for example,
80     streamable variant BCJ2 from 7-Zip could be implemented.
82     Filter that autodetects specific data types in the input stream
83     and applies appropriate filters for the corrects parts of the input.
84     Perhaps combine this with the BCJ filter improvement point above.
86     Long-range LZ77 method as a separate filter or as a new LZMA2
87     match finder.
90 Documentation
91 -------------
93     More tutorial programs are needed for liblzma.
95     Document the LZMA1 and LZMA2 algorithms.
98 Miscellaneous
99 ------------
101     Try to get the media type for .xz registered at IANA.