1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
//! `Cognitive` implementation for C.
#![allow(
clippy::enum_glob_use,
clippy::match_same_arms,
clippy::needless_pass_by_value,
clippy::wildcard_imports
)]
#![allow(
clippy::cast_precision_loss,
clippy::cast_possible_truncation,
clippy::cast_sign_loss
)]
use super::*;
impl Cognitive for CCode {
fn compute<'a>(
node: &Node<'a>,
_code: &'a [u8],
stats: &mut Stats,
nesting_map: &mut HashMap<usize, (usize, usize, usize)>,
) {
use C::*;
// Macro expansion is not tracked; macros are treated as opaque tokens.
let (mut nesting, mut depth, lambda) = get_nesting_from_map(node, nesting_map);
match node.kind_id().into() {
IfStatement if !Self::is_else_if(node) => {
increase_nesting(stats, &mut nesting, depth, lambda);
}
ForStatement
| WhileStatement
| DoStatement
| SwitchStatement
| ConditionalExpression => {
increase_nesting(stats, &mut nesting, depth, lambda);
}
GotoStatement | Else /* else-if also */ => {
increment_by_one(stats);
}
BinaryExpression2 => {
compute_booleans(node, stats, AMPAMP, PIPEPIPE);
}
// At a (possibly nested) function-definition boundary, reset
// structural nesting to zero and bump the function-depth
// surcharge when this definition is itself nested inside
// another — matching Rust and the 9-of-13 sibling
// families. Without this, a method defined inside a control
// construct inherited the enclosing nesting and every nested
// definition missed the SonarSource B-nesting amplification
// (#696).
FunctionDefinition | FunctionDefinition2 => {
nesting = 0;
increment_function_depth(
&mut depth,
node,
&[FunctionDefinition, FunctionDefinition2],
);
}
_ => {}
}
nesting_map.insert(node.id(), (nesting, depth, lambda));
}
}