Skip to content

Commit 23c9091

Browse files
committed
Slowly working through pep8.Checker.check_logical
1 parent 0c894cc commit 23c9091

File tree

2 files changed

+70
-1
lines changed

2 files changed

+70
-1
lines changed

flake8/checker.py

+50-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717

1818
LOG = logging.getLogger(__name__)
1919

20+
SKIP_TOKENS = frozenset([tokenize.NL, tokenize.NEWLINE, tokenize.INDENT,
21+
tokenize.DEDENT])
22+
2023

2124
class Manager(object):
2225
"""Manage the parallelism and checker instances for each plugin and file.
@@ -216,8 +219,15 @@ def run_check(self, plugin, **arguments):
216219

217220
def run_logical_checks(self):
218221
"""Run all checks expecting a logical line."""
222+
comments, logical_line, mapping = self.processor.build_logical_line()
223+
if not mapping:
224+
return
225+
self.processor.update_state(mapping)
226+
227+
LOG.debug('Logical line: "%s"', logical_line.rstrip())
228+
219229
for plugin in self.checks.logical_line_plugins:
220-
result = self.run_check(plugin) # , logical_line=logical_line)
230+
result = self.run_check(plugin, logical_line=logical_line)
221231
if result is not None:
222232
column_offset, text = result
223233
self.report(
@@ -415,6 +425,45 @@ def visited_new_blank_line(self):
415425
"""Note that we visited a new blank line."""
416426
self.blank_lines += 1
417427

428+
def build_logical_line_tokens(self):
429+
"""Build the mapping, comments, and logical line lists."""
430+
logical = []
431+
comments = []
432+
length = 0
433+
previous_row = previous_column = mapping = None
434+
for token_type, text, start, end, line in self.tokens:
435+
if token_type in SKIP_TOKENS:
436+
continue
437+
if not mapping:
438+
mapping = [(0, start)]
439+
if token_type == tokenize.COMMENT:
440+
comments.append(text)
441+
continue
442+
if token_type == tokenize.STRING:
443+
text = utils.mutate_string(text)
444+
if previous_row:
445+
(start_row, start_column) = start
446+
if previous_row != start_row:
447+
row_index = previous_row - 1
448+
column_index = previous_column - 1
449+
previous_text = self.lines[row_index][column_index]
450+
if (previous_text == ',' or
451+
(previous_text not in '{[(' and
452+
text not in '}])')):
453+
text = ' ' + text
454+
elif previous_column != start_column:
455+
text = line[previous_column:start_column] + text
456+
logical.append(text)
457+
length += len(text)
458+
mapping.append((length, end))
459+
(previous_row, previous_column) = end
460+
return comments, logical, mapping
461+
462+
def build_logical_line(self):
463+
"""Build a logical line from the current tokens list."""
464+
comments, logical, mapping_list = self.build_logical_line_tokens()
465+
return ''.join(comments), ''.join(logical), mapping_list
466+
418467
def split_line(self, token):
419468
"""Split a physical line's line based on new-lines.
420469

flake8/utils.py

+20
Original file line numberDiff line numberDiff line change
@@ -223,3 +223,23 @@ def count_parentheses(current_parentheses_count, token_text):
223223
return current_parentheses_count + 1
224224
elif token_text in '}])':
225225
return current_parentheses_count - 1
226+
227+
228+
def mutate_string(text):
229+
"""Replace contents with 'xxx' to prevent syntax matching.
230+
231+
>>> mute_string('"abc"')
232+
'"xxx"'
233+
>>> mute_string("'''abc'''")
234+
"'''xxx'''"
235+
>>> mute_string("r'abc'")
236+
"r'xxx'"
237+
"""
238+
# String modifiers (e.g. u or r)
239+
start = text.index(text[-1]) + 1
240+
end = len(text) - 1
241+
# Triple quotes
242+
if text[-3:] in ('"""', "'''"):
243+
start += 2
244+
end -= 2
245+
return text[:start] + 'x' * (end - start) + text[end:]

0 commit comments

Comments
 (0)