-
Notifications
You must be signed in to change notification settings - Fork 307
/
Copy pathNestingLevelMetric.cs
74 lines (64 loc) · 3.28 KB
/
NestingLevelMetric.cs
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
66
67
68
69
70
71
72
73
74
using Antlr4.Runtime.Misc;
using Rubberduck.Parsing.Grammar;
using Rubberduck.Parsing.Symbols;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
namespace Rubberduck.CodeAnalysis.CodeMetrics
{
internal class NestingLevelMetric : CodeMetric
{
public NestingLevelMetric() : base("Nesting Level", AggregationLevel.Member) { }
public override ICodeMetricsParseTreeListener TreeListener => new NestingLevelListener(this);
}
internal class NestingLevelMetricResult : CodeMetricResultBase
{
private readonly int value;
public NestingLevelMetricResult(Declaration declaration, CodeMetric metric, int value) : base (declaration, metric)
{
this.value = value;
}
public override string Value => value.ToString();
}
internal class NestingLevelListener : CodeMetricListenerBase
{
private List<ICodeMetricResult> _results = new List<ICodeMetricResult>();
private int _currentNestingLevel;
private int _currentMaxNesting;
public NestingLevelListener(CodeMetric owner) : base(owner)
{
}
public override void Reset()
{
base.Reset();
_results = new List<ICodeMetricResult>();
_currentMaxNesting = _currentNestingLevel = 0;
}
public override IEnumerable<ICodeMetricResult> Results() => _results;
public override void EnterBlock([NotNull] VBAParser.BlockContext context)
{
_currentNestingLevel++;
if (_currentNestingLevel > _currentMaxNesting)
{
_currentMaxNesting = _currentNestingLevel;
}
}
public override void ExitBlock([NotNull] VBAParser.BlockContext context) => _currentNestingLevel--;
public override void ExitPropertySetStmt([NotNull] VBAParser.PropertySetStmtContext context)
=> ExitMeasurableMember(_finder.UserDeclarations(DeclarationType.PropertySet).Where(d => d.Context == context).First());
public override void ExitPropertyLetStmt([NotNull] VBAParser.PropertyLetStmtContext context)
=> ExitMeasurableMember(_finder.UserDeclarations(DeclarationType.PropertyLet).Where(d => d.Context == context).First());
public override void ExitPropertyGetStmt([NotNull] VBAParser.PropertyGetStmtContext context)
=> ExitMeasurableMember(_finder.UserDeclarations(DeclarationType.PropertyGet).Where(d => d.Context == context).First());
public override void ExitFunctionStmt([NotNull] VBAParser.FunctionStmtContext context)
=> ExitMeasurableMember(_finder.UserDeclarations(DeclarationType.Function).Where(d => d.Context == context).First());
public override void ExitSubStmt([NotNull] VBAParser.SubStmtContext context)
=> ExitMeasurableMember(_finder.UserDeclarations(DeclarationType.Procedure).Where(d => d.Context == context).First());
private void ExitMeasurableMember(Declaration declaration)
{
Debug.Assert(_currentNestingLevel == 0, "Unexpected nesting level when exiting measurable member");
_results.Add(new CyclomaticComplexityMetricResult(declaration, ownerReference, _currentMaxNesting));
_currentMaxNesting = _currentNestingLevel = 0;
}
}
}