src/count.rs (70 lines of code) (raw):
extern crate num_format;
use num_format::{Locale, ToFormattedString};
use std::fmt;
use std::sync::{Arc, Mutex};
use crate::traits::*;
/// Counts the types of nodes specified in the input slice
/// and the number of nodes in a code.
pub fn count<T: ParserTrait>(parser: &T, filters: &[String]) -> (usize, usize) {
let filters = parser.get_filters(filters);
let node = parser.get_root();
let mut cursor = node.cursor();
let mut stack = Vec::new();
let mut good = 0;
let mut total = 0;
stack.push(node);
while let Some(node) = stack.pop() {
total += 1;
if filters.any(&node) {
good += 1;
}
cursor.reset(&node);
if cursor.goto_first_child() {
loop {
stack.push(cursor.node());
if !cursor.goto_next_sibling() {
break;
}
}
}
}
(good, total)
}
/// Configuration options for counting different
/// types of nodes in a code.
#[derive(Debug)]
pub struct CountCfg {
/// Types of nodes to count
pub filters: Vec<String>,
/// Number of nodes of a certain type counted by each thread
pub stats: Arc<Mutex<Count>>,
}
/// Count of different types of nodes in a code.
#[derive(Debug, Default)]
pub struct Count {
/// The number of specific types of nodes searched in a code
pub good: usize,
/// The total number of nodes in a code
pub total: usize,
}
impl Callback for Count {
type Res = std::io::Result<()>;
type Cfg = CountCfg;
fn call<T: ParserTrait>(cfg: Self::Cfg, parser: &T) -> Self::Res {
let (good, total) = count(parser, &cfg.filters);
let mut results = cfg.stats.lock().unwrap();
results.good += good;
results.total += total;
Ok(())
}
}
impl fmt::Display for Count {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
writeln!(
f,
"Total nodes: {}",
self.total.to_formatted_string(&Locale::en)
)?;
writeln!(
f,
"Found nodes: {}",
self.good.to_formatted_string(&Locale::en)
)?;
write!(
f,
"Percentage: {:.2}%",
(self.good as f64) / (self.total as f64) * 100.
)
}
}