FastWaveBackend/src/vcd/parse.rs

211 lines
6.9 KiB
Rust
Raw Normal View History

2022-07-14 20:46:11 +00:00
use std::{fs::File};
use std::collections::HashMap;
use num::BigInt;
use num::bigint::ToBigInt;
2022-06-04 01:06:46 +00:00
2022-06-19 13:44:57 +00:00
use super::*;
2022-06-13 02:52:24 +00:00
2022-06-19 13:44:57 +00:00
mod combinator_atoms;
use combinator_atoms::*;
2022-06-04 01:06:46 +00:00
2022-06-19 13:44:57 +00:00
mod types;
use types::*;
2022-06-22 01:06:51 +00:00
mod metadata;
use metadata::*;
2022-06-04 01:06:46 +00:00
2022-07-18 16:53:44 +00:00
mod scopes;
use scopes::*;
2022-07-16 00:48:02 +00:00
use function_name::named;
#[named]
fn parse_events<'a>(
word_reader : &mut WordReader,
vcd : &'a mut VCD,
signal_map : &mut HashMap<String, Signal_Idx>
) -> Result<(), String> {
loop {
let next_word = word_reader.next_word();
// if we've reached the end of the file, then there is obviously
// nothing left to do...
if next_word.is_none() {break};
2022-07-20 02:05:00 +00:00
let (word, cursor) = next_word.unwrap();
2022-07-20 14:38:56 +00:00
let Cursor(Line(_), Word(word_in_line_idx)) = cursor;
// we only want to match on the first word in a line
if word_in_line_idx != 1 {continue}
match &word[0..1] {
2022-07-20 02:05:00 +00:00
"$" => {}
"#" => {
let value = &word[1..];
let time_cursor = BigInt::parse_bytes(value.as_bytes(), 10).ok_or(
format!("failed to parse {value} as BigInt at {cursor:?}").as_str())?;
vcd.cursor = time_cursor;
}
"0" => {
2022-07-20 14:38:56 +00:00
// lokup signal idx
let hash = &word[1..].to_string();
let Signal_Idx(ref signal_idx) = signal_map.get(hash).ok_or(
format!("failed to lookup signal {hash} at {cursor:?}").as_str())?;
// account for fact that signal idx could be an alias, so there
// could be one step of indirection
let signal_idx =
{
let signal = vcd.all_signals.get(*signal_idx).unwrap();
match signal {
Signal::Data {..} => {signal_idx.clone()}
Signal::Alias {name, signal_alias} => {
let Signal_Idx(ref signal_idx) = signal_alias;
signal_idx.clone()
2022-07-20 02:05:00 +00:00
}
2022-07-20 14:38:56 +00:00
}
};
// after handling potential indirection, go ahead and update the timeline
// of the signal signal_idx references
let signal = vcd.all_signals.get_mut(signal_idx).unwrap();
match signal {
Signal::Data {name, sig_type, num_bits,
self_idx, timeline, scope_parent} => {
let value = 0.to_bigint().unwrap();
let pair = (TimeStamp(vcd.cursor.clone()), Sig_Value::Numeric(value));
timeline.push(pair);
Ok(())
}
Signal::Alias {..} => {
let (f, l )= (file!(), line!());
let msg = format!(
"Error near {f}:{l}, a signal alias should not point to a signal alias.\n\
This error occurred while parsing vcd file at {cursor:?}");
Err(msg)
}
}?;
}
"1" => {
// lokup signal idx
let hash = &word[1..].to_string();
let Signal_Idx(ref signal_idx) = signal_map.get(hash).ok_or(
format!("failed to lookup signal {hash} at {cursor:?}").as_str())?;
// account for fact that signal idx could be an alias, so there
// could be one step of indirection
let signal_idx =
{
let signal = vcd.all_signals.get(*signal_idx).unwrap();
match signal {
Signal::Data {..} => {signal_idx.clone()}
Signal::Alias {name, signal_alias} => {
let Signal_Idx(ref signal_idx) = signal_alias;
signal_idx.clone()
2022-07-20 02:05:00 +00:00
2022-07-20 14:38:56 +00:00
}
}
};
// after handling potential indirection, go ahead and update the timeline
// of the signal signal_idx references
let signal = vcd.all_signals.get_mut(signal_idx).unwrap();
match signal {
Signal::Data {name, sig_type, num_bits,
self_idx, timeline, scope_parent} => {
let value = 1.to_bigint().unwrap();
let pair = (TimeStamp(vcd.cursor.clone()), Sig_Value::Numeric(value));
timeline.push(pair);
Ok(())
}
Signal::Alias {..} => {
let (f, l )= (file!(), line!());
let msg = format!(
"Error near {f}:{l}, a signal alias should not point to a signal alias.\n\
This error occurred while parsing vcd file at {cursor:?}");
Err(msg)
}
}?;
2022-07-20 02:05:00 +00:00
}
_ => {}
}
}
Ok(())
}
2022-07-16 00:48:02 +00:00
pub fn parse_vcd(file : File) -> Result<VCD, String> {
2022-06-04 01:06:46 +00:00
let mut word_gen = WordReader::new(file);
2022-07-14 20:46:11 +00:00
let header = parse_metadata(&mut word_gen)?;
2022-07-13 00:02:45 +00:00
2022-07-14 20:46:11 +00:00
let mut signal_map = std::collections::HashMap::new();
2022-07-13 00:02:45 +00:00
let mut vcd = VCD{
2022-07-14 22:52:12 +00:00
metadata : header,
cursor : 0.to_bigint().unwrap(),
2022-07-13 00:02:45 +00:00
all_signals: vec![],
2022-07-14 22:52:12 +00:00
all_scopes : vec![],
scope_roots: vec![],
2022-07-13 00:02:45 +00:00
};
2022-07-14 20:46:11 +00:00
2022-07-16 00:48:02 +00:00
parse_scopes(&mut word_gen, None, &mut vcd, &mut signal_map)?;
2022-07-20 02:05:00 +00:00
parse_events(&mut word_gen, &mut vcd, &mut signal_map)?;
dbg!(&vcd.cursor);
2022-07-16 00:48:02 +00:00
Ok(vcd)
2022-06-18 05:00:01 +00:00
}
#[cfg(test)]
mod tests {
use super::*;
use crate::test;
2022-06-18 05:00:01 +00:00
use std::fs::File;
#[test]
fn headers() {
// TODO: eventually, once all dates pass, merge the following
// two loops
// testing dates
for file in test::good_date_files {
2022-06-18 05:00:01 +00:00
let metadata = parse_metadata(
&mut WordReader::new(
File::open(file)
.unwrap()
)
);
assert!(metadata.is_ok());
assert!(metadata.unwrap().date.is_some());
}
for file in test::files {
let metadata = parse_metadata(
&mut WordReader::new(
File::open(file)
.unwrap()
)
);
assert!(metadata.is_ok());
let (scalar, timescale) = metadata.unwrap().timescale;
assert!(scalar.is_some());
}
2022-06-18 05:00:01 +00:00
}
2022-07-16 00:48:02 +00:00
#[test]
fn scopes() {
2022-07-18 16:53:44 +00:00
// see if we can parse all signal trees successfully
2022-07-16 00:48:02 +00:00
for file_name in test::files {
let file = File::open(file_name).unwrap();
let vcd = parse_vcd(file);
if !vcd.is_ok() {
dbg!(file_name);
vcd.unwrap();
}
// assert!(vcd.is_ok());
}
}
2022-06-04 01:06:46 +00:00
}