src/defs.rs (120 lines of code) (raw):

use crossbeam_channel::{Receiver, Sender}; use rustc_hash::FxHashMap; use serde::ser::{Serialize, Serializer}; use std::cell::RefCell; use std::collections::BTreeMap; use std::fmt::{Display, Formatter}; use std::path::PathBuf; use std::rc::Rc; use std::sync::Mutex; #[derive(Debug, Clone, PartialEq, Eq)] pub struct Function { pub start: u32, pub executed: bool, } #[derive(Debug, Default, Clone, PartialEq, Eq)] pub struct CovResult { pub lines: BTreeMap<u32, u64>, pub branches: BTreeMap<u32, Vec<bool>>, pub functions: FunctionMap, } #[derive(Debug, PartialEq, Eq, Copy, Clone)] pub enum ItemFormat { Gcno, Profraw, Profdata, Info, JacocoXml, } #[derive(Debug)] pub struct GcnoBuffers { pub stem: String, pub gcno_buf: Vec<u8>, pub gcda_buf: Vec<Vec<u8>>, } #[derive(Debug)] pub enum ItemType { Path((String, PathBuf)), Paths(Vec<PathBuf>), Content(Vec<u8>), Buffers(GcnoBuffers), } #[derive(Debug)] pub struct WorkItem { pub format: ItemFormat, pub item: ItemType, pub name: String, } pub type FunctionMap = FxHashMap<String, Function>; pub type JobReceiver = Receiver<Option<WorkItem>>; pub type JobSender = Sender<Option<WorkItem>>; pub type CovResultMap = FxHashMap<String, CovResult>; pub type SyncCovResultMap = Mutex<CovResultMap>; pub type ResultTuple = (PathBuf, PathBuf, CovResult); #[derive(Debug, Default)] pub struct CDStats { pub total: usize, pub covered: usize, pub missed: usize, pub percent: f64, } #[derive(Debug)] pub struct CDFileStats { pub name: String, pub stats: CDStats, pub coverage: Vec<i64>, } #[derive(Debug, Default)] pub struct CDDirStats { pub name: String, pub files: Vec<CDFileStats>, pub dirs: Vec<Rc<RefCell<CDDirStats>>>, pub stats: CDStats, } #[derive(Debug)] pub struct HtmlItem { pub abs_path: PathBuf, pub rel_path: PathBuf, pub result: CovResult, } #[derive(Clone, Debug, Default, serde::Serialize)] pub struct HtmlStats { pub total_lines: usize, pub covered_lines: usize, pub total_funs: usize, pub covered_funs: usize, pub total_branches: usize, pub covered_branches: usize, } #[derive(Clone, Debug, serde::Serialize)] pub struct HtmlFileStats { pub stats: HtmlStats, pub abs_prefix: Option<PathBuf>, } #[derive(Clone, Debug, serde::Serialize)] pub struct HtmlDirStats { pub files: BTreeMap<String, HtmlFileStats>, pub stats: HtmlStats, pub abs_prefix: Option<PathBuf>, } #[derive(Debug, Default, serde::Serialize)] pub struct HtmlGlobalStats { pub dirs: BTreeMap<String, HtmlDirStats>, pub stats: HtmlStats, pub abs_prefix: Option<PathBuf>, } pub type HtmlJobReceiver = Receiver<Option<HtmlItem>>; pub type HtmlJobSender = Sender<Option<HtmlItem>>; pub enum StringOrRef<'a> { S(String), R(&'a String), } impl Display for StringOrRef<'_> { fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result { match self { StringOrRef::S(s) => write!(f, "{}", s), StringOrRef::R(s) => write!(f, "{}", s), } } } impl Serialize for StringOrRef<'_> { fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> where S: Serializer, { match self { StringOrRef::S(s) => serializer.serialize_str(s), StringOrRef::R(s) => serializer.serialize_str(s), } } } pub struct JacocoReport { pub lines: BTreeMap<u32, u64>, pub branches: BTreeMap<u32, Vec<bool>>, }