9
9
*/
10
10
namespace SebastianBergmann \CodeCoverage \Driver ;
11
11
12
+ use SebastianBergmann \CodeCoverage \Filter ;
12
13
use SebastianBergmann \CodeCoverage \RuntimeException ;
13
14
14
15
/**
@@ -23,10 +24,15 @@ final class Xdebug implements Driver
23
24
*/
24
25
private $ cacheNumLines = [];
25
26
27
+ /**
28
+ * @var Filter
29
+ */
30
+ private $ filter ;
31
+
26
32
/**
27
33
* @throws RuntimeException
28
34
*/
29
- public function __construct ()
35
+ public function __construct (Filter $ filter = null )
30
36
{
31
37
if (!\extension_loaded ('xdebug ' )) {
32
38
throw new RuntimeException ('This driver requires Xdebug ' );
@@ -35,6 +41,12 @@ public function __construct()
35
41
if (!\ini_get ('xdebug.coverage_enable ' )) {
36
42
throw new RuntimeException ('xdebug.coverage_enable=On has to be set in php.ini ' );
37
43
}
44
+
45
+ if ($ filter === null ) {
46
+ $ filter = new Filter ;
47
+ }
48
+
49
+ $ this ->filter = $ filter ;
38
50
}
39
51
40
52
/**
@@ -66,13 +78,15 @@ private function cleanup(array $data): array
66
78
foreach (\array_keys ($ data ) as $ file ) {
67
79
unset($ data [$ file ][0 ]);
68
80
69
- if (\strpos ($ file , 'xdebug://debug-eval ' ) !== 0 && \file_exists ($ file )) {
70
- $ numLines = $ this ->getNumberOfLinesInFile ($ file );
81
+ if (!$ this ->filter ->isFile ($ file )) {
82
+ continue ;
83
+ }
84
+
85
+ $ numLines = $ this ->getNumberOfLinesInFile ($ file );
71
86
72
- foreach (\array_keys ($ data [$ file ]) as $ line ) {
73
- if ($ line > $ numLines ) {
74
- unset($ data [$ file ][$ line ]);
75
- }
87
+ foreach (\array_keys ($ data [$ file ]) as $ line ) {
88
+ if ($ line > $ numLines ) {
89
+ unset($ data [$ file ][$ line ]);
76
90
}
77
91
}
78
92
}
0 commit comments