#dbc #blast #dcl #datasus #pkware #enconding

datasus-dbc

Decompress DATASUS's *.dbc files into *.dbf files

2 releases

0.1.1 Dec 6, 2023
0.1.0 Dec 6, 2023

#228 in Compression

Download history 5/week @ 2024-02-18 6/week @ 2024-02-25 1/week @ 2024-03-03 23/week @ 2024-03-10 2/week @ 2024-03-17 24/week @ 2024-03-31 1/week @ 2024-04-07 42/week @ 2024-04-14

67 downloads per month

MIT license

14KB
101 lines

datasus-dbc

crates.io docs.rs

Decompress *.dbc files usually found in Brazil's DATASUS ftp server into *.dbf files.

The underlying decompression algorithm used in *.dbc files is the implode algorithm from the PKWARE Data Compression Library. This library uses Aaron Griffith's rust implementation of the implode algorithm. Also, this library is heavily inspired by Daniela Petruzalek's pysus. I want to thank both of them, without their work this library would not be possible.

Examples

To decompress a *.dbc file into a *.dbf use decompress:

datasus_dbc::decompress("input.dbc", "output.dbf");

If you want more control over how the *.dbc file is read, you can pass a File or other type which implements Read to into_dbf_reader to get a reader of the decompressed content.

use std::io::Read;

let dbc_file = std::fs::File::open("input.dbc").unwrap();
let mut dbf_reader = datasus_dbc::into_dbf_reader(dbc_file).unwrap();
let mut buf: Vec<u8> = Default::default();
dbf_reader.read_to_end(&mut buf).unwrap();
println!("{:?}", &buf[0..20]);

Found a bug?

Feel free to create an issue here if you found a bug or if you want a new feature!

Dependencies

~145KB