10
10
use Arkitect \Analyzer \Parser ;
11
11
use Arkitect \ClassSetRules ;
12
12
use Arkitect \CLI \Progress \Progress ;
13
+ use Arkitect \Exceptions \FailOnFirstViolationException ;
13
14
use Arkitect \Rules \ParsingErrors ;
14
15
use Arkitect \Rules \Violations ;
15
16
use Symfony \Component \Finder \SplFileInfo ;
16
17
17
18
class Runner
18
19
{
19
- /** @var Violations */
20
- private $ violations ;
20
+ private Violations $ violations ;
21
21
22
- /** @var ParsingErrors */
23
- private $ parsingErrors ;
22
+ private ParsingErrors $ parsingErrors ;
23
+
24
+ private bool $ stopOnFailure ;
24
25
25
26
public function __construct (bool $ stopOnFailure = false )
26
27
{
27
- $ this ->violations = new Violations ($ stopOnFailure );
28
+ $ this ->stopOnFailure = $ stopOnFailure ;
29
+ $ this ->violations = new Violations ();
28
30
$ this ->parsingErrors = new ParsingErrors ();
29
31
}
30
32
@@ -57,6 +59,8 @@ public function check(
57
59
): void {
58
60
/** @var SplFileInfo $file */
59
61
foreach ($ classSetRule ->getClassSet () as $ file ) {
62
+ $ fileViolations = new Violations ();
63
+
60
64
if (!$ onlyErrors ) {
61
65
$ progress ->startParsingFile ($ file ->getRelativePathname ());
62
66
}
@@ -71,9 +75,18 @@ public function check(
71
75
/** @var ClassDescription $classDescription */
72
76
foreach ($ fileParser ->getClassDescriptions () as $ classDescription ) {
73
77
foreach ($ classSetRule ->getRules () as $ rule ) {
74
- $ rule ->check ($ classDescription , $ violations );
78
+ $ rule ->check ($ classDescription , $ fileViolations );
79
+
80
+ if ($ this ->stopOnFailure && $ fileViolations ->count () > 0 ) {
81
+ $ violations ->merge ($ fileViolations );
82
+
83
+ throw new FailOnFirstViolationException ();
84
+ }
75
85
}
76
86
}
87
+
88
+ $ violations ->merge ($ fileViolations );
89
+
77
90
if (!$ onlyErrors ) {
78
91
$ progress ->endParsingFile ($ file ->getRelativePathname ());
79
92
}
0 commit comments