#![allow(
clippy::enum_glob_use,
clippy::too_many_lines,
clippy::wildcard_imports
)]
#![allow(
clippy::cast_precision_loss,
clippy::cast_possible_truncation,
clippy::cast_sign_loss
)]
use super::{Abc, Stats, for_each_named_child};
use crate::macros::go_bool_terminal_kinds;
use crate::*;
fn go_inspect_container(container_node: &Node, parent: &Node, conditions: &mut f64) {
use Go as G;
let mut node = *container_node;
let mut node_kind = node.kind_id().into();
let mut has_boolean_content = matches!(
parent.kind_id().into(),
G::BinaryExpression | G::IfStatement | G::ForStatement
);
loop {
let is_parens = matches!(node_kind, G::ParenthesizedExpression);
let is_not = matches!(node_kind, G::UnaryExpression)
&& node.child(0).is_some_and(|c| c.kind_id() == G::BANG as u16);
if !is_parens && !is_not {
break;
}
if !has_boolean_content && is_not {
has_boolean_content = true;
}
let Some(child) = node.child(1) else { break };
node = child;
node_kind = node.kind_id().into();
if matches!(node_kind, go_bool_terminal_kinds!()) {
if has_boolean_content {
*conditions += 1.;
}
break;
}
}
}
fn go_count_condition(condition: &Node, parent: &Node, conditions: &mut f64) {
use Go as G;
let kind = condition.kind_id().into();
if matches!(kind, go_bool_terminal_kinds!()) {
*conditions += 1.;
} else if matches!(kind, G::ParenthesizedExpression | G::UnaryExpression) {
go_inspect_container(condition, parent, conditions);
}
}
fn go_walk_for_statement(node: &Node, conditions: &mut f64) {
use Go as G;
let Some(header) = node
.children()
.find(|child| child.is_named() && !matches!(child.kind_id().into(), G::Comment | G::Block))
else {
return;
};
let slot = if matches!(header.kind_id().into(), G::ForClause) {
header.child_by_field_name("condition")
} else {
Some(header)
};
if let Some(condition) = slot {
go_count_condition(&condition, node, conditions);
}
}
fn go_count_unary_conditions(list_node: &Node, conditions: &mut f64) {
use Go as G;
let list_kind = list_node.kind_id().into();
let mut cursor = list_node.cursor();
if cursor.goto_first_child() {
loop {
let node = cursor.node();
let node_kind = node.kind_id().into();
if matches!(node_kind, go_bool_terminal_kinds!())
&& matches!(list_kind, G::BinaryExpression)
{
*conditions += 1.;
} else if node.is_named() {
go_inspect_container(&node, list_node, conditions);
}
if !cursor.goto_next_sibling() {
break;
}
}
}
}
impl Abc for GoCode {
fn compute<'a>(
node: &Node<'a>,
_code: &'a [u8],
ancestors: Ancestors<'a, '_>,
stats: &mut Stats,
) {
use Go as G;
match node.kind_id().into() {
G::AssignmentStatement | G::ShortVarDeclaration | G::IncStatement | G::DecStatement => {
stats.assignments += 1.;
}
G::VarSpec if node.child_by_field_name("value").is_some() => {
stats.assignments += 1.;
}
G::CallExpression => {
stats.branches += 1.;
}
G::EQEQ
| G::BANGEQ
| G::LTEQ
| G::GTEQ
| G::Else
| G::ExpressionCase
| G::TypeCase
| G::CommunicationCase => {
stats.conditions += 1.;
}
G::LT | G::GT
if ancestors
.parent(node)
.is_some_and(|p| matches!(p.kind_id().into(), G::BinaryExpression)) =>
{
stats.conditions += 1.;
}
G::AMPAMP | G::PIPEPIPE => {
if let Some(parent) = ancestors.parent(node) {
go_count_unary_conditions(&parent, &mut stats.conditions);
}
}
G::IfStatement => {
if let Some(cond) = node.child_by_field_name("condition") {
go_count_condition(&cond, node, &mut stats.conditions);
}
}
G::ForStatement => {
go_walk_for_statement(node, &mut stats.conditions);
}
G::ReturnStatement => {
if let Some(expr_list) = node.child(1) {
for_each_named_child(&expr_list, &mut stats.conditions, go_inspect_container);
}
}
G::ArgumentList | G::ArgumentList2 => {
go_count_unary_conditions(node, &mut stats.conditions);
}
_ => {}
}
}
}