Dpkg::Compression β simple database of available compression methods
| Use Case | Command | Description |
|---|---|---|
| List all supported compression methods | compression_get_list() | Sorted alphabetically |
| Check if a compression method is supported | compression_is_supported($comp) | Returns a boolean |
| Get a property of a compression method | compression_get_property($comp, $property) | file_ext, default_level, comp_prog, decomp_prog |
| Guess compression method from filename | compression_guess_from_filename($filename) | Based on file extension |
| Regex to match compressed file extensions | compression_get_file_extension_regex() | Regex for all supported extensions |
| Get default compression method | compression_get_default() | Usually "xz" |
| Set default compression method | compression_set_default($comp) | Errors if not supported |
| Get default compression level | compression_get_default_level() | Compressorβspecific default |
| Set default compression level | compression_set_default_level($level) | Level number, "fast" or "best" |
| Validate a compression level | compression_is_valid_level($level) | Boolean, range 1β9 or "fast" / "best" |
This modules provides a few public functions and a public regex to interact with the set of supported compression methods.
@list = compression_get_list() β π Returns a list of supported compression methods (sorted alphabetically).compression_is_supported($comp) β β
Returns a boolean indicating whether the give compression method is known and supported.compression_get_property($comp, $property) β π·οΈ Returns the requested property of the compression method. Returns undef if either the property or the compression method doesn't exist. Valid properties currently include "file_ext" for the file extension, "default_level" for the default compression level, "comp_prog" for the name of the compression program and "decomp_prog" for the name of the decompression program.compression_guess_from_filename($filename) β π Returns the compression method that is likely used on the indicated filename based on its file extension.$regex = compression_get_file_extension_regex() β π§© Returns a regex that matches a file extension of a file compressed with one of the supported compression methods.$comp = compression_get_default() β β‘ Return the default compression method. It is "xz" unless compression_set_default has been used to change it.compression_set_default($comp) β π Change the default compression method. Errors out if the given compression method is not supported.$level = compression_get_default_level() β ποΈ Return the default compression level used when compressing data. It's "9" for "gzip" and "bzip2", "6" for "xz" and "lzma", unless compression_set_default_level has been used to change it.compression_set_default_level($level) β π§ Change the default compression level. Passing undef as the level will reset it to the compressor specific default, otherwise errors out if the level is not valid (see compression_is_valid_level).compression_is_valid_level($level) β βοΈ Returns a boolean indicating whether $level is a valid compression level (it must be either a number between 1 and 9 or "fast" or "best")Hide variables: $default_compression, $default_compression_level and $compression_re_file_ext.
New function: compression_get_file_extension_regex()
Deprecated variables: $default_compression, $default_compression_level and $compression_re_file_ext
Default compression level is not global any more, it is per compressor type.
Mark the module as public.
1.21.1 β 2025β09β09 β Dpkg::Compression(3perl)
Generated by phpman v4.9.25-3-gdbaf087 Author: Che Dong Under GNU General Public License
2026-07-06 23:10 @216.73.217.93
CrawledBy Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
Enhanced by LLM: deepseek-v4-pro / taotoken.net / www.chedong.com - original format