2
2
using System . Collections . Generic ;
3
3
using System . Linq ;
4
4
using FineCodeCoverage . Core . Utilities ;
5
+ using FineCodeCoverage . Editor . DynamicCoverage . TrackedLinesImpl . Construction ;
5
6
using FineCodeCoverage . Engine ;
6
7
using FineCodeCoverage . Engine . Model ;
7
8
using FineCodeCoverage . Impl ;
11
12
12
13
namespace FineCodeCoverage . Editor . DynamicCoverage
13
14
{
15
+ internal interface ICoverageContentTypes
16
+ {
17
+ bool IsApplicable ( string contentTypeName ) ;
18
+ }
19
+
14
20
internal class BufferLineCoverage :
15
21
IBufferLineCoverage , IListener < NewCoverageLinesMessage > , IListener < TestExecutionStartingMessage >
16
22
{
@@ -19,12 +25,14 @@ internal class BufferLineCoverage :
19
25
private readonly ITrackedLinesFactory trackedLinesFactory ;
20
26
private readonly IDynamicCoverageStore dynamicCoverageStore ;
21
27
private readonly IAppOptionsProvider appOptionsProvider ;
28
+ private readonly ICoverageContentTypes coverageContentTypes ;
22
29
private readonly ILogger logger ;
23
30
private readonly ITextBuffer2 textBuffer ;
24
31
private bool ? editorCoverageModeOff ;
25
32
private IFileLineCoverage fileLineCoverage ;
26
33
private Nullable < DateTime > lastChanged ;
27
34
private DateTime lastTestExecutionStarting ;
35
+ private bool applicableContentType = true ;
28
36
29
37
public ITrackedLines TrackedLines { get ; set ; }
30
38
@@ -40,6 +48,7 @@ public BufferLineCoverage(
40
48
ITrackedLinesFactory trackedLinesFactory ,
41
49
IDynamicCoverageStore dynamicCoverageStore ,
42
50
IAppOptionsProvider appOptionsProvider ,
51
+ ICoverageContentTypes coverageContentTypes ,
43
52
ILogger logger
44
53
)
45
54
{
@@ -50,11 +59,13 @@ ILogger logger
50
59
}
51
60
52
61
this . textBuffer = textInfo . TextBuffer ;
62
+ this . textBuffer . ContentTypeChanged += this . ContentTypeChanged ;
53
63
this . textInfo = textInfo ;
54
64
this . eventAggregator = eventAggregator ;
55
65
this . trackedLinesFactory = trackedLinesFactory ;
56
66
this . dynamicCoverageStore = dynamicCoverageStore ;
57
67
this . appOptionsProvider = appOptionsProvider ;
68
+ this . coverageContentTypes = coverageContentTypes ;
58
69
this . logger = logger ;
59
70
void AppOptionsChanged ( IAppOptions appOptions )
60
71
{
@@ -79,6 +90,7 @@ void textViewClosedHandler(object s, EventArgs e)
79
90
{
80
91
this . UpdateDynamicCoverageStore ( ( s as ITextView ) . TextSnapshot ) ;
81
92
this . textBuffer . Changed -= this . TextBuffer_ChangedOnBackground ;
93
+ this . textBuffer . ContentTypeChanged -= this . ContentTypeChanged ;
82
94
textInfo . TextView . Closed -= textViewClosedHandler ;
83
95
appOptionsProvider . OptionsChanged -= AppOptionsChanged ;
84
96
_ = eventAggregator . RemoveListener ( this ) ;
@@ -87,6 +99,25 @@ void textViewClosedHandler(object s, EventArgs e)
87
99
textInfo . TextView . Closed += textViewClosedHandler ;
88
100
}
89
101
102
+ private void ContentTypeChanged ( object sender , ContentTypeChangedEventArgs args )
103
+ {
104
+ // purpose is so do not create tracked lines for a content type that is not applicable when new coverage
105
+ this . applicableContentType = this . coverageContentTypes . IsApplicable ( args . AfterContentType . TypeName ) ;
106
+ if ( this . applicableContentType )
107
+ {
108
+ // this currently does not work as Roslyn is not ready.
109
+ // could fallback to single lines but would have to look at other uses of IFileCodeSpanRangeService
110
+ // this is low priority
111
+ this . CreateTrackedLinesIfRequired ( true ) ;
112
+ }
113
+ else
114
+ {
115
+ this . TrackedLines = null ;
116
+ }
117
+
118
+ this . SendCoverageChangedMessage ( ) ;
119
+ }
120
+
90
121
private void UpdateDynamicCoverageStore ( ITextSnapshot textSnapshot )
91
122
{
92
123
if ( this . TrackedLines != null )
@@ -116,23 +147,23 @@ private void UpdateDynamicCoverageStore(ITextSnapshot textSnapshot)
116
147
private bool FileSystemReflectsTrackedLines ( string snapshotText )
117
148
=> this . textInfo . GetFileText ( ) == snapshotText ;
118
149
119
- private void CreateTrackedLinesIfRequired ( bool initial )
150
+ private void CreateTrackedLinesIfRequired ( bool fromStore )
120
151
{
121
152
if ( this . EditorCoverageColouringModeOff ( ) )
122
153
{
123
154
this . TrackedLines = null ;
124
155
}
125
156
else
126
157
{
127
- this . TryCreateTrackedLines ( initial ) ;
158
+ this . TryCreateTrackedLines ( fromStore ) ;
128
159
}
129
160
}
130
161
131
- private void TryCreateTrackedLines ( bool initial )
162
+ private void TryCreateTrackedLines ( bool fromStore )
132
163
{
133
164
try
134
165
{
135
- this . CreateTrackedLines ( initial ) ;
166
+ this . CreateTrackedLines ( fromStore ) ;
136
167
}
137
168
catch ( Exception e )
138
169
{
@@ -182,11 +213,11 @@ as When is written when the text view is closed it is always - LastWriteTime < W
182
213
: ( SerializedCoverageState . Ok , serializedCoverageWhen . Serialized ) ;
183
214
}
184
215
185
- private void CreateTrackedLines ( bool initial )
216
+ private void CreateTrackedLines ( bool fromStore )
186
217
{
187
218
string filePath = this . textInfo . FilePath ;
188
219
ITextSnapshot currentSnapshot = this . textBuffer . CurrentSnapshot ;
189
- if ( initial )
220
+ if ( fromStore )
190
221
{
191
222
SerializedCoverageWhen serializedCoverageWhen = this . dynamicCoverageStore . GetSerializedCoverage (
192
223
filePath
@@ -266,6 +297,8 @@ public IEnumerable<IDynamicLine> GetLines(int startLineNumber, int endLineNumber
266
297
267
298
public void Handle ( NewCoverageLinesMessage message )
268
299
{
300
+ if ( ! this . applicableContentType ) return ;
301
+
269
302
this . fileLineCoverage = message . CoverageLines ;
270
303
271
304
bool hadTrackedLines = this . TrackedLines != null ;
0 commit comments