Skip to content

Commit e68d347

Browse files
Merge pull request #97 from demvsystems/error-handling
changed return type from option to result to display internal error
2 parents 0b487a9 + 032d403 commit e68d347

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/gzip.rs

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
pub fn decode(bytes: Vec<u8>) -> Option<String> {
1+
pub fn decode(bytes: Vec<u8>) -> Result<String, String> {
22
use flate2::read::GzDecoder;
33
use std::io::Read;
44

55
let mut decoder = GzDecoder::new(&bytes[..]);
66
let mut xml = String::new();
77

88
match decoder.read_to_string(&mut xml) {
9-
Ok(_) => Some(xml),
10-
Err(_) => None,
9+
Ok(_) => Ok(xml),
10+
Err(error) => Err(error.to_string()),
1111
}
1212
}
1313

14-
pub fn encode(content: &str) -> Option<Vec<u8>> {
14+
pub fn encode(content: &str) -> Result<Vec<u8>, String> {
1515
use flate2::read::GzEncoder;
1616
use flate2::Compression;
1717
use std::io::Read;
@@ -20,7 +20,7 @@ pub fn encode(content: &str) -> Option<Vec<u8>> {
2020
let mut bytes = Vec::new();
2121

2222
match encoder.read_to_end(&mut bytes) {
23-
Ok(_) => Some(bytes),
24-
Err(_) => None,
23+
Ok(_) => Ok(bytes),
24+
Err(error) => Err(error.to_string()),
2525
}
2626
}

0 commit comments

Comments
 (0)