2
2
import os .path
3
3
import sys
4
4
import traceback
5
+ from collections import OrderedDict
5
6
6
- from typing import Tuple , List , TypeVar , Set
7
+ from typing import Tuple , List , TypeVar , Set , Dict , Optional
7
8
8
9
9
10
T = TypeVar ('T' )
@@ -79,8 +80,11 @@ class Errors:
79
80
# Stack of short names of current functions or members (or None).
80
81
function_or_member = None # type: List[str]
81
82
82
- # Ignore errors on these lines.
83
- ignored_lines = None # type: Set[int]
83
+ # Ignore errors on these lines of each file.
84
+ ignored_lines = None # type: Dict[str, Set[int]]
85
+
86
+ # Lines on which an error was actually ignored.
87
+ used_ignored_lines = None # type: Dict[str, Set[int]]
84
88
85
89
# Collection of reported only_once messages.
86
90
only_once_messages = None # type: Set[str]
@@ -90,7 +94,8 @@ def __init__(self) -> None:
90
94
self .import_ctx = []
91
95
self .type_name = [None ]
92
96
self .function_or_member = [None ]
93
- self .ignored_lines = set ()
97
+ self .ignored_lines = OrderedDict ()
98
+ self .used_ignored_lines = {}
94
99
self .only_once_messages = set ()
95
100
96
101
def copy (self ) -> 'Errors' :
@@ -109,13 +114,22 @@ def set_ignore_prefix(self, prefix: str) -> None:
109
114
prefix += os .sep
110
115
self .ignore_prefix = prefix
111
116
112
- def set_file (self , file : str ) -> None :
113
- """Set the path of the current file."""
117
+ def simplify_path (self , file : str ) -> str :
114
118
file = os .path .normpath (file )
115
- self . file = remove_path_prefix (file , self .ignore_prefix )
119
+ return remove_path_prefix (file , self .ignore_prefix )
116
120
117
- def set_ignored_lines (self , ignored_lines : Set [int ]) -> None :
118
- self .ignored_lines = ignored_lines
121
+ def set_file (self , file : str , ignored_lines : Set [int ] = None ) -> None :
122
+ """Set the path of the current file."""
123
+ # The path will be simplified later, in render_messages. That way
124
+ # * 'file' is always a key that uniquely identifies a source file
125
+ # that mypy read (simplified paths might not be unique); and
126
+ # * we only have to simplify in one place, while still supporting
127
+ # reporting errors for files other than the one currently being
128
+ # processed.
129
+ self .file = file
130
+
131
+ def set_file_ignored_lines (self , file : str , ignored_lines : Set [int ] = None ) -> None :
132
+ self .ignored_lines [file ] = ignored_lines
119
133
120
134
def push_function (self , name : str ) -> None :
121
135
"""Set the current function or member short name (it can be None)."""
@@ -170,15 +184,25 @@ def report(self, line: int, message: str, blocker: bool = False,
170
184
self .add_error_info (info )
171
185
172
186
def add_error_info (self , info : ErrorInfo ) -> None :
173
- if info .line in self .ignored_lines :
187
+ if info .file in self . ignored_lines and info . line in self .ignored_lines [ info . file ] :
174
188
# Annotation requests us to ignore all errors on this line.
189
+ self .used_ignored_lines .setdefault (info .file , set ()).add (info .line )
175
190
return
176
191
if info .only_once :
177
192
if info .message in self .only_once_messages :
178
193
return
179
194
self .only_once_messages .add (info .message )
180
195
self .error_info .append (info )
181
196
197
+ def generate_unused_ignore_notes (self ) -> None :
198
+ for file , ignored_lines in self .ignored_lines .items ():
199
+ for line in ignored_lines - self .used_ignored_lines .get (file , set ()):
200
+ # Don't use report since add_error_info will ignore the error!
201
+ info = ErrorInfo (self .import_context (), file , None , None ,
202
+ line , 'note' , "unused 'type: ignore' comment" ,
203
+ False , False )
204
+ self .error_info .append (info )
205
+
182
206
def num_messages (self ) -> int :
183
207
"""Return the number of generated messages."""
184
208
return len (self .error_info )
@@ -254,32 +278,34 @@ def render_messages(self, errors: List[ErrorInfo]) -> List[Tuple[str, int,
254
278
result .append ((None , - 1 , 'note' , fmt .format (path , line )))
255
279
i -= 1
256
280
281
+ file = self .simplify_path (e .file )
282
+
257
283
# Report context within a source file.
258
284
if (e .function_or_member != prev_function_or_member or
259
285
e .type != prev_type ):
260
286
if e .function_or_member is None :
261
287
if e .type is None :
262
- result .append ((e . file , - 1 , 'note' , 'At top level:' ))
288
+ result .append ((file , - 1 , 'note' , 'At top level:' ))
263
289
else :
264
- result .append ((e . file , - 1 , 'note' , 'In class "{}":' .format (
290
+ result .append ((file , - 1 , 'note' , 'In class "{}":' .format (
265
291
e .type )))
266
292
else :
267
293
if e .type is None :
268
- result .append ((e . file , - 1 , 'note' ,
294
+ result .append ((file , - 1 , 'note' ,
269
295
'In function "{}":' .format (
270
296
e .function_or_member )))
271
297
else :
272
- result .append ((e . file , - 1 , 'note' ,
298
+ result .append ((file , - 1 , 'note' ,
273
299
'In member "{}" of class "{}":' .format (
274
300
e .function_or_member , e .type )))
275
301
elif e .type != prev_type :
276
302
if e .type is None :
277
- result .append ((e . file , - 1 , 'note' , 'At top level:' ))
303
+ result .append ((file , - 1 , 'note' , 'At top level:' ))
278
304
else :
279
- result .append ((e . file , - 1 , 'note' ,
305
+ result .append ((file , - 1 , 'note' ,
280
306
'In class "{}":' .format (e .type )))
281
307
282
- result .append ((e . file , e .line , e .severity , e .message ))
308
+ result .append ((file , e .line , e .severity , e .message ))
283
309
284
310
prev_import_context = e .import_ctx
285
311
prev_function_or_member = e .function_or_member
0 commit comments