-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compression (DBTL-1) #29
Conversation
Provides compression and decompression mechanisms for lz4 and ts_zip. Exec.rs has been removed. Compression takes |
let mut output_file = File::create(outpath.as_path())?; | ||
io::copy(&mut decoder, &mut output_file)?; | ||
|
||
Ok(()) | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you add a test with quickcheck, just to quickly verify the decompress and compress work?
dna-software/src-tauri/src/encoder.rs
Lines 75 to 92 in 1519163
#[quickcheck] | |
fn rotation_encode_decode(bytes: Vec<u8>) -> bool { | |
let encoder = RotationEncoder {}; | |
let decoder = RotationDecoder {}; | |
let bits = BitVec::from_vec(bytes); | |
bits == decoder.decode(&encoder.encode(&bits)) | |
} | |
#[quickcheck] | |
fn quaternary_encode_decode(bytes: Vec<u8>) -> bool { | |
if bytes.len() % 2 == 1 { | |
true | |
} else { | |
let encoder = QuaternaryEncoder {}; | |
let decoder = QuaternaryDecoder {}; | |
let bits = BitVec::from_vec(bytes); | |
bits == decoder.decode(&encoder.encode(&bits)) | |
} |
|
||
// Trait for all compression and decompression functions | ||
pub trait Compressor { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also can you edit main.rs to add the compression during encode_sequence?
dna-software/src-tauri/src/main.rs
Lines 35 to 47 in 1519163
#[tauri::command] | |
fn encode_sequence(encoder_type: &str, file_path: &str) -> Result<Vec<Base>, String> { | |
let bytes = fs::read(file_path).map_err(|err| err.to_string())?; | |
let bits = BitVec::<_, Msb0>::from_vec(bytes); | |
let encoder: Box<dyn Encoder> = match encoder_type { | |
"quaternary" => Box::new(QuaternaryEncoder {}), | |
"rotation" => Box::new(RotationEncoder {}), | |
_ => return Err("Selected encoder does not exist.".to_string()), | |
}; | |
Ok(encoder.encode(&bits).into()) | |
} | |
it should follow the old deleted sequence.rs almost exactly
dna-software/src-tauri/src/sequence.rs
Lines 11 to 21 in 2b88993
fn encode( | |
path: impl AsRef<Path>, | |
primer: Primer, | |
compressor: impl Compressor, | |
encoder: impl Encoder, | |
) -> io::Result<Vec<Base>> { | |
let file = fs::read(path)?; | |
let compressed = compressor.compress(file); | |
let bit_sequence = BitVec::from_vec(compressed); | |
Ok(encoder.encode(bit_sequence)) | |
} |
Modified-by: Sebastian Hyland <st.hyland05@gmail.com>
src-tauri/src/main.rs
Outdated
fn encode_sequence( | ||
encoder_type: &str, | ||
file_path: PathBuf, | ||
) -> Result<Vec<Base>, String> { | ||
let compressor = VoidCompressor{}; | ||
let compressed = compressor | ||
.compress(file_path) | ||
.map_err(|err| err.to_string())?; | ||
let bytes = fs::read(compressed).map_err(|err| err.to_string())?; | ||
let bits = BitVec::<_, Msb0>::from_slice(&bytes); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
src-tauri/src/compressor.rs
Outdated
dbg!("here"); | ||
let out_dir = "compressed_lz4/"; | ||
fs::create_dir_all(out_dir); | ||
let outpath = Path::new(out_dir).join(filename).with_extension("lz4"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The assumption that this directory exists causes an error to be thrown; additionally, there is no handling of the case where the directory does not exist; I pushed a way to fix this, but this assumption is made in several other places in the code; please fix them and add proper handling of the case when the directory doesn't exist (either make it through Rust, or prompt the user to make it themselves).
Hi Lucy, I pushed up a hefty merge with my changes, your changes, and changes in main. This should include:
Although I haven't gone over everything again since the merge (except for resolving conflicts), the project is compiling and tests are passing (including the quickcheck for (de)compression). Do you wish to make a test for |
Yeah we can have a test for encode_sequence using quickcheck, I can set that up (but yeah it would be a test sentence or str that we can check compress -> bit -> base -> bit -> decompress) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for working on this Sebastian!
This code is heavily WIP at the moment and is untested. Exec.rs likely contains bugs or problems.
The goal of this branch is to create: