Compression Rust Reference Documentation

Compression

Current Version: 11.6.1

Chilkat.Compression

Compress and decompress bytes, text, files, and streams with a flexible API.

Chilkat.Compression provides a general-purpose API for compressing and decompressing data in memory, files, and streams. It supports multiple algorithms, text charset conversion, encoded output, chunked processing, and streaming operations for large data.

Multiple algorithms

Supports deflate, zlib, bzip2, and lzw.

Flexible data types

Work with byte arrays, strings, BinData, StringBuilder, files, and streams.

Chunked processing

Process data incrementally with FirstChunk and LastChunk for chunk-aware methods.

Encoded output

Return compressed bytes as text using encodings such as base64, hex, and others.

Streaming support

Compress or decompress large files and streams with stable memory usage.

Compression + encryption

Combine compression and encryption in file workflows with integrated methods.

Tip: For text compression, explicitly set Charset = "utf-8" unless another encoding is required. For encoded compressed data, set EncodingMode to the desired output format.

Object Creation

// Cargo.toml:
//     [dependencies]
//     chilkat = "11.6"

use chilkat::Compression;

// Once per process, before any other Chilkat call:
chilkat::unlock_bundle("Anything for 30-day trial")?;  // shorthand for Global::new().unlock_bundle(..)

let compression = Compression::new();
// ... the native object is freed when `compression` goes out of scope.
pub fn new() -> Compression

Creates the underlying native Chilkat object (Compression also implements Default). Every method takes &self, so the object never needs to be declared mut. A Compression is Send but not Sync: it may be moved to another thread, but a reference to it cannot be shared between threads at the same time.

impl Drop for Compression

The native object is freed when the Compression is dropped — when it goes out of scope, or explicitly with drop(compression). There is no Dispose method to call.

Errors

Methods that can fail return chilkat::Result<T>, which is Result<T, chilkat::Error>: a method whose only outcome is success or failure returns Result<()>, a method producing a string or an object returns Result<String> or Result<Compression>. The error carries the object's LastErrorText at the time of the failure (Error::last_error_text), the class and method names, and implements std::error::Error, so ? works in any function returning chilkat::Result or a Box<dyn Error>. Properties never fail, and methods that answer a question (has_..., is_..., ...) return a plain bool.

match compression.some_method(...) {
    Ok(value) => println!("{value:?}"),
    Err(e) => eprintln!("{}", e.last_error_text()),
}

Properties

Algorithm
// read/write
pub fn algorithm(&self) -> String
pub fn set_algorithm(&self, value: &str)

Specifies the compression algorithm to use. Supported values are deflate, zlib, bzip2, and lzw.

The zlib option is the deflate algorithm with a zlib header.

Note: ppmd is deprecated and should not be used. It was only available on 32-bit systems and specifically used the J variant. New applications should use one of the supported algorithms listed above.

top
Charset
// read/write
pub fn charset(&self) -> String
pub fn set_charset(&self, value: &str)

Specifies the character encoding used when converting text to bytes before compression, and bytes back to text after decompression.

The current default is the computer’s ANSI charset, such as Windows-1252 on many Western Windows systems. However, most modern applications should explicitly set this property to utf-8.

Recommendation: Set Charset = "utf-8" unless you specifically need compatibility with another encoding.

top
DebugLogFilePath
// read/write
pub fn debug_log_file_path(&self) -> String
pub fn set_debug_log_file_path(&self, value: &str)

If set to a file path, this property logs the LastErrorText of each Chilkat method or property call to the specified file. This logging helps identify the context and history of Chilkat calls leading up to any crash or hang, aiding in debugging.

Enabling the VerboseLogging property provides more detailed information. This property is mainly used for debugging rare instances where a Chilkat method call causes a hang or crash, which should generally not happen.

Possible causes of hangs include:

  • A timeout property set to 0, indicating an infinite timeout.
  • A hang occurring within an event callback in the application code.
  • An internal bug in the Chilkat code causing the hang.

More Information and Examples
top
DeflateLevel
// read/write
pub fn deflate_level(&self) -> i32
pub fn set_deflate_level(&self, value: i32)
Introduced in version 9.5.0.73

Sets the compression level used by the deflate and zlib algorithms.

  • 0 means no compression.
  • 9 means maximum compression.
  • The default value is 6.

Higher values may produce smaller output but can require more processing time.

top
EncodingMode
// read/write
pub fn encoding_mode(&self) -> String
pub fn set_encoding_mode(&self, value: &str)

Specifies the text encoding used by methods whose names end in ENC, such as CompressBytesENC and DecompressStringENC.

Compression methods ending in ENC return compressed binary data as an encoded string. Decompression methods ending in ENC expect the input string to use this same encoding.

Valid values include:

  • base64
  • hex
  • url
  • quoted-printable

More Information and Examples
top
FirstChunk
// read/write
pub fn first_chunk(&self) -> bool
pub fn set_first_chunk(&self, value: bool)
Introduced in version 11.0.0

Indicates that the next chunk-aware compression or decompression call is the first chunk in a sequence.

The default value is true.

When both FirstChunk and LastChunk are true, the method call is treated as a complete, single-call compression or decompression operation.

top
HeartbeatMs
// read/write
pub fn heartbeat_ms(&self) -> i32
pub fn set_heartbeat_ms(&self, value: i32)

Specifies the interval, in milliseconds, between AbortCheck event callbacks.

This allows an application to periodically check whether a long-running operation should be aborted.

The default value is 0, which disables AbortCheck callbacks.

More Information and Examples
top
LastChunk
// read/write
pub fn last_chunk(&self) -> bool
pub fn set_last_chunk(&self, value: bool)
Introduced in version 11.0.0

Indicates that the next chunk-aware compression or decompression call is the final chunk in a sequence.

The default value is true.

When both FirstChunk and LastChunk are true, the input is treated as the complete data set and processed in a single call.

top
LastErrorHtml
// read-only
pub fn last_error_html(&self) -> String

Provides HTML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorText
// read-only
pub fn last_error_text(&self) -> String

Provides plain text information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastErrorXml
// read-only
pub fn last_error_xml(&self) -> String

Provides XML-formatted information about the last called method or property. If a method call fails or behaves unexpectedly, check this property for details. Note that information is available regardless of the method call's success.

top
LastMethodSuccess
// read/write
pub fn last_method_success(&self) -> bool
pub fn set_last_method_success(&self, value: bool)

Indicates the success or failure of the most recent method call: true means success, false means failure. This property remains unchanged by property setters or getters. This method is present to address challenges in checking for null or Nothing returns in certain programming languages. Note: This property does not apply to methods that return integer values or to boolean-returning methods where the boolean does not indicate success or failure.

top
UncommonOptions
// read/write
pub fn uncommon_options(&self) -> String
pub fn set_uncommon_options(&self, value: &str)
Introduced in version 11.0.0

Provides a way to enable specialized or uncommon behavior. This property normally remains empty.

It may be set to a comma-separated list of keywords.

Supported option:

  • Crypt2CompressHdr — Duplicates the compression/decompression header behavior used by the deprecated and removed Crypt2 compression functions.

top
VerboseLogging
// read/write
pub fn verbose_logging(&self) -> bool
pub fn set_verbose_logging(&self, value: bool)

If set to true, then the contents of LastErrorText (or LastErrorXml, or LastErrorHtml) may contain more verbose information. The default value is false. Verbose logging should only be used for debugging. The potentially large quantity of logged information may adversely affect peformance.

top
Version
// read-only
pub fn version(&self) -> String

Version of the component/library, such as "10.1.0"

More Information and Examples
top

Methods

CompressBd
pub fn compress_bd(&self, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.66

Compresses the data contained in a BinData object.

The BinData object is modified to contain the compressed result.

This method is not FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressBd2
pub fn compress_bd2(&self, bd_in: &BinData, bd_out: &BinData) -> Result<()>
Introduced in version 11.0.0

Compresses the data in one BinData object and appends the compressed output to another BinData object.

The input BinData is not modified.

This method is FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressEncryptFile
pub fn compress_encrypt_file(&self, crypt_params: &JsonObject, src_path: &str, dest_path: &str) -> Result<()>
Introduced in version 9.5.0.99

Compresses and encrypts a file, writing the result to a destination file.

The compression and encryption are performed internally in streaming mode, so files of any size can be processed without loading the entire file into memory.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressFile
pub fn compress_file(&self, src_path: &str, dest_path: &str) -> Result<()>

Compresses a source file and writes the compressed data to a destination file.

The file is processed internally in streaming mode, allowing files of any size to be compressed with stable memory usage.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressSb
pub fn compress_sb(&self, sb: &StringBuilder, bin_data: &BinData) -> Result<()>
Introduced in version 9.5.0.73

Compresses the text contained in a StringBuilder and appends the compressed bytes to a BinData object.

Text is converted to bytes according to the Charset property.

This method is FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressStream
pub fn compress_stream(&self, strm: &Stream) -> Result<()>
Introduced in version 9.5.0.56

Compresses data from a stream source and writes the compressed data to the stream sink.

The operation is performed in streaming mode, making it suitable for very large or even continuous streams while maintaining stable memory usage.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
CompressStringENC
pub fn compress_string_enc(&self, str: &str) -> Result<String>

Compresses a string and returns the compressed result as an encoded string.

The string is first converted to bytes using Charset, then compressed, and finally encoded according to EncodingMode.

This method is not FirstChunk / LastChunk aware.

Returns Err(chilkat::Error) on failure.

top
DecompressBd
pub fn decompress_bd(&self, bd: &BinData) -> Result<()>
Introduced in version 9.5.0.66

Decompresses the compressed data contained in a BinData object.

The BinData object is modified to contain the decompressed result.

This method is not FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DecompressBd2
pub fn decompress_bd2(&self, bd_in: &BinData, bd_out: &BinData) -> Result<()>
Introduced in version 11.0.0

Decompresses the data in one BinData object and appends the decompressed output to another BinData object.

The input BinData is not modified.

This method is FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DecompressFile
pub fn decompress_file(&self, src_path: &str, dest_path: &str) -> Result<()>

Decompresses a source file and writes the decompressed data to a destination file.

The file is processed internally in streaming mode, allowing files of any size to be decompressed without loading the entire file into memory.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DecompressSb
pub fn decompress_sb(&self, bin_data: &BinData, sb: &StringBuilder) -> Result<()>
Introduced in version 9.5.0.73

Decompresses compressed data from a BinData object and appends the resulting text to a StringBuilder.

The decompressed bytes are converted to text using the Charset property.

This method is FirstChunk / LastChunk aware.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DecompressStream
pub fn decompress_stream(&self, strm: &Stream) -> Result<()>
Introduced in version 9.5.0.56

Decompresses data from a stream source and writes the decompressed data to the stream sink.

The operation is performed in streaming mode, making it suitable for very large or continuous streams while maintaining stable memory usage.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top
DecompressStringENC
pub fn decompress_string_enc(&self, encoded_compressed_data: &str) -> Result<String>

Decompresses compressed data supplied as an encoded string and returns the resulting text.

The input string is decoded according to EncodingMode, then decompressed. The resulting bytes are converted to text using Charset.

This method is not FirstChunk / LastChunk aware.

Returns Err(chilkat::Error) on failure.

top
DecryptDecompressFile
pub fn decrypt_decompress_file(&self, crypt_params: &JsonObject, src_path: &str, dest_path: &str) -> Result<()>
Introduced in version 9.5.0.99

Decrypts and decompresses a file, writing the restored data to a destination file.

This is the reverse operation of CompressEncryptFile.

Returns Ok(()) for success, Err(chilkat::Error) for failure.

top

Events

All Chilkat methods are synchronous: the call returns when the work is done. During a call, Compression raises three events so your application can show progress and offer a way out. Implement the chilkat::EventHandler trait (every method has a do-nothing default, so implement only the events you need) and install it with set_event_handler:

use chilkat::{Compression, EventHandler};

struct Progress;

impl EventHandler for Progress {
    fn percent_done(&mut self, pct: i32) -> bool {
        println!("{pct}%");
        false   // return true to abort the method in progress
    }
    fn progress_info(&mut self, name: &str, value: &str) {
        println!("{name}: {value}");
    }
}

let compression = Compression::new();
compression.set_event_handler(Progress);
compression.set_heartbeat_ms(250);   // raise abort_check 4 times per second during Chilkat calls

For a one-off handler the closure methods avoid writing a type; they may be combined, and each replaces the previously set closure for that one event (installing a closure removes a trait handler set earlier, and vice versa):

compression.on_percent_done(|pct| { println!("{pct}%"); false });
compression.on_progress_info(|name, value| println!("{name}: {value}"));
pub fn set_event_handler<H: EventHandler>(&self, handler: H)

Installs handler as the receiver of this object's events, replacing any handler or closures set earlier. The object owns the handler, which must be Send + 'static.

pub fn clear_event_handler(&self)

Removes the handler and any closures; events are no longer delivered.

AbortCheck fires at regular intervals controlled by the HeartbeatMs property (0, the default, disables it); PercentDone fires when an operation's completion percentage is known; ProgressInfo delivers named progress values. Returning true from abort_check or percent_done aborts the running method, which then returns Err.

Events fire on the thread that called the method, before that method returns. A panic inside a handler aborts the running method and is re-raised to the caller once the native library has returned, so it never unwinds through C frames. To abort a long operation from another thread, share an Arc<AtomicBool> with an abort_check handler, or set the object's AbortCurrent property to true.

AbortCheck
// EventHandler trait method; closure form: on_abort_check(FnMut() -> bool)
fn abort_check(&mut self) -> bool

Enables a method call to be aborted by triggering the AbortCheck event at intervals defined by the HeartbeatMs property. If HeartbeatMs is set to its default value of 0, no events will occur. For instance, set HeartbeatMs to 200 to trigger 5 AbortCheck events per second.

More Information and Examples

Example (closure form; the EventHandler trait method is equivalent):

compression.set_heartbeat_ms(250);   // call abort_check 4 times per second

let stop = std::sync::Arc::new(std::sync::atomic::AtomicBool::new(false));
let flag = stop.clone();
compression.on_abort_check(move || flag.load(std::sync::atomic::Ordering::Relaxed));
// ... another thread may now abort the method in progress with stop.store(true, Ordering::Relaxed)
top
PercentDone
// EventHandler trait method; closure form: on_percent_done(FnMut(i32) -> bool)
fn percent_done(&mut self, pct: i32) -> bool

This provides the percentage completion for any method involving network communications or time-consuming processing, assuming the progress can be measured as a percentage. This event is triggered only when it's possible and logical to express the operation's progress as a percentage. The pct_done argument will range from 1 to 100. For methods that finish quickly, the number of PercentDone callbacks may vary, but the final callback will have pct_done equal to 100. For longer operations, callbacks will not exceed one per percentage point (e.g., 1, 2, 3, ..., 98, 99, 100).

The PercentDone callback also acts as an AbortCheck event. For fast methods where PercentDone fires, an AbortCheck event may not trigger since the PercentDone callback already provides an opportunity to abort. For longer operations, where time between PercentDone callbacks is extended, AbortCheck callbacks enable more responsive operation termination.

To abort the operation, set the abort output argument to true. This will cause the method to terminate and return a failure status or corresponding failure value.

More Information and Examples

Example (closure form; the EventHandler trait method is equivalent):

compression.on_percent_done(|pct| {
    // pct ranges from 1 to 100.
    println!("Percent done: {pct}");
    false   // return true to abort the method in progress
});
top
ProgressInfo
// EventHandler trait method; closure form: on_progress_info(FnMut(&str, &str))
fn progress_info(&mut self, name: &str, value: &str)

This event callback provides tag name/value pairs that detail what occurs during a method call. To discover existing tag names, create code to handle the event, emit the pairs, and review them. Most tag names are self-explanatory.

Note: Some Chilkat methods don't fire any ProgressInfo events.

More Information and Examples

Example (closure form; the EventHandler trait method is equivalent):

compression.on_progress_info(|name, value| println!("{name}: {value}"));
top