Report if too many lines in function body. Args: error: The function to call with any errors found. filename: The name of the current file. linenum: The number of the line to check.
(self, error, filename, linenum)
| 1525 | self.lines_in_function += 1 |
| 1526 | |
| 1527 | def Check(self, error, filename, linenum): |
| 1528 | """Report if too many lines in function body. |
| 1529 | |
| 1530 | Args: |
| 1531 | error: The function to call with any errors found. |
| 1532 | filename: The name of the current file. |
| 1533 | linenum: The number of the line to check. |
| 1534 | """ |
| 1535 | if not self.in_a_function: |
| 1536 | return |
| 1537 | |
| 1538 | if Match(r'T(EST|est)', self.current_function): |
| 1539 | base_trigger = self._TEST_TRIGGER |
| 1540 | else: |
| 1541 | base_trigger = self._NORMAL_TRIGGER |
| 1542 | trigger = base_trigger * 2**_VerboseLevel() |
| 1543 | |
| 1544 | if self.lines_in_function > trigger: |
| 1545 | error_level = int(math.log(self.lines_in_function / base_trigger, 2)) |
| 1546 | # 50 => 0, 100 => 1, 200 => 2, 400 => 3, 800 => 4, 1600 => 5, ... |
| 1547 | if error_level > 5: |
| 1548 | error_level = 5 |
| 1549 | error(filename, linenum, 'readability/fn_size', error_level, |
| 1550 | 'Small and focused functions are preferred:' |
| 1551 | ' %s has %d non-comment lines' |
| 1552 | ' (error triggered by exceeding %d lines).' % ( |
| 1553 | self.current_function, self.lines_in_function, trigger)) |
| 1554 | |
| 1555 | def End(self): |
| 1556 | """Stop analyzing function body.""" |
no test coverage detected