third_party.pylibs.pylint.src/pylint/checkers/design_analysis.py

334 lines
13 KiB
Python
Raw Normal View History

# Copyright (c) 2006, 2009-2010, 2012-2015 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
# Copyright (c) 2014-2016 Claudiu Popa <pcmanticore@gmail.com>
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
2013-05-07 07:43:38 +00:00
"""check for signs of poor design"""
2006-04-26 10:48:09 +00:00
from collections import defaultdict
from astroid import If, BoolOp
from astroid import decorators
2006-04-26 10:48:09 +00:00
2013-06-17 13:06:48 +00:00
from pylint.interfaces import IAstroidChecker
2006-04-26 10:48:09 +00:00
from pylint.checkers import BaseChecker
from pylint.checkers.utils import check_messages
from pylint import utils
2006-04-26 10:48:09 +00:00
MSGS = {
'R0901': ('Too many ancestors (%s/%s)',
'too-many-ancestors',
2006-05-09 07:55:16 +00:00
'Used when class has too many parent classes, try to reduce \
this to get a simpler (and so easier to use) class.'),
2006-04-26 10:48:09 +00:00
'R0902': ('Too many instance attributes (%s/%s)',
'too-many-instance-attributes',
2006-05-09 07:55:16 +00:00
'Used when class has too many instance attributes, try to reduce \
this to get a simpler (and so easier to use) class.'),
2006-10-03 07:55:44 +00:00
'R0903': ('Too few public methods (%s/%s)',
'too-few-public-methods',
2006-10-03 07:55:44 +00:00
'Used when class has too few public methods, so be sure it\'s \
2006-05-09 07:55:16 +00:00
really worth it.'),
2006-04-26 10:48:09 +00:00
'R0904': ('Too many public methods (%s/%s)',
'too-many-public-methods',
2006-05-09 07:55:16 +00:00
'Used when class has too many public methods, try to reduce \
this to get a simpler (and so easier to use) class.'),
2012-09-19 13:08:00 +00:00
2006-04-26 10:48:09 +00:00
'R0911': ('Too many return statements (%s/%s)',
'too-many-return-statements',
2006-05-09 07:55:16 +00:00
'Used when a function or method has too many return statement, \
making it hard to follow.'),
2006-04-26 10:48:09 +00:00
'R0912': ('Too many branches (%s/%s)',
'too-many-branches',
2006-05-09 07:55:16 +00:00
'Used when a function or method has too many branches, \
making it hard to follow.'),
2006-04-26 10:48:09 +00:00
'R0913': ('Too many arguments (%s/%s)',
'too-many-arguments',
2006-04-26 10:48:09 +00:00
'Used when a function or method takes too many arguments.'),
'R0914': ('Too many local variables (%s/%s)',
'too-many-locals',
2006-04-26 10:48:09 +00:00
'Used when a function or method has too many local variables.'),
'R0915': ('Too many statements (%s/%s)',
'too-many-statements',
2006-04-26 10:48:09 +00:00
'Used when a function or method has too many statements. You \
should then split it in smaller functions / methods.'),
'R0916': ('Too many boolean expressions in if statement (%s/%s)',
'too-many-boolean-expressions',
'Used when a if statement contains too many boolean '
'expressions'),
2006-04-26 10:48:09 +00:00
}
def _count_boolean_expressions(bool_op):
"""Counts the number of boolean expressions in BoolOp `bool_op` (recursive)
example: a and (b or c or (d and e)) ==> 5 boolean expressions
"""
nb_bool_expr = 0
for bool_expr in bool_op.get_children():
if isinstance(bool_expr, BoolOp):
nb_bool_expr += _count_boolean_expressions(bool_expr)
else:
nb_bool_expr += 1
return nb_bool_expr
2006-04-26 10:48:09 +00:00
class MisdesignChecker(BaseChecker):
2012-09-19 13:08:00 +00:00
"""checks for sign of poor/misdesign:
* number of methods, attributes, local variables...
* size, complexity of functions, methods
2006-04-26 10:48:09 +00:00
"""
2012-09-19 13:08:00 +00:00
2013-06-17 13:06:48 +00:00
__implements__ = (IAstroidChecker,)
2006-04-26 10:48:09 +00:00
# configuration section name
name = 'design'
# messages
msgs = MSGS
priority = -2
# configuration options
options = (('max-args',
{'default' : 5, 'type' : 'int', 'metavar' : '<int>',
'help': 'Maximum number of arguments for function / method'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-locals',
{'default' : 15, 'type' : 'int', 'metavar' : '<int>',
'help': 'Maximum number of locals for function / method body'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-returns',
{'default' : 6, 'type' : 'int', 'metavar' : '<int>',
'help': 'Maximum number of return / yield for function / '
'method body'}
2014-07-25 15:23:37 +00:00
),
('max-branches',
2006-04-26 10:48:09 +00:00
{'default' : 12, 'type' : 'int', 'metavar' : '<int>',
'help': 'Maximum number of branch for function / method body'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-statements',
{'default' : 50, 'type' : 'int', 'metavar' : '<int>',
'help': 'Maximum number of statements in function / method '
'body'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-parents',
{'default' : 7,
'type' : 'int',
'metavar' : '<num>',
'help' : 'Maximum number of parents for a class (see R0901).'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-attributes',
{'default' : 7,
'type' : 'int',
'metavar' : '<num>',
'help' : 'Maximum number of attributes for a class \
(see R0902).'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('min-public-methods',
{'default' : 2,
'type' : 'int',
'metavar' : '<num>',
'help' : 'Minimum number of public methods for a class \
(see R0903).'}
2014-07-25 15:23:37 +00:00
),
2006-04-26 10:48:09 +00:00
('max-public-methods',
{'default' : 20,
'type' : 'int',
'metavar' : '<num>',
'help' : 'Maximum number of public methods for a class \
(see R0904).'}
2014-07-25 15:23:37 +00:00
),
('max-bool-expr',
{'default': 5,
'type': 'int',
'metavar': '<num>',
'help': 'Maximum number of boolean expressions in a if '
'statement'}
),
2014-07-25 15:23:37 +00:00
)
2006-04-26 10:48:09 +00:00
def __init__(self, linter=None):
BaseChecker.__init__(self, linter)
self.stats = None
self._returns = None
self._branches = None
2006-04-26 10:48:09 +00:00
self._stmts = 0
2012-09-19 13:08:00 +00:00
2006-04-26 10:48:09 +00:00
def open(self):
"""initialize visit variables"""
self.stats = self.linter.add_stats()
self._returns = []
self._branches = defaultdict(int)
2012-09-19 13:08:00 +00:00
@decorators.cachedproperty
def _ignored_argument_names(self):
return utils.get_global_option(self, 'ignored-argument-names', default=None)
@check_messages('too-many-ancestors', 'too-many-instance-attributes',
'too-few-public-methods', 'too-many-public-methods')
def visit_classdef(self, node):
2006-04-26 10:48:09 +00:00
"""check size of inheritance hierarchy and number of instance attributes
"""
nb_parents = len(list(node.ancestors()))
if nb_parents > self.config.max_parents:
self.add_message('too-many-ancestors', node=node,
2006-04-26 10:48:09 +00:00
args=(nb_parents, self.config.max_parents))
2016-07-10 14:30:35 +00:00
2006-04-26 10:48:09 +00:00
if len(node.instance_attrs) > self.config.max_attributes:
self.add_message('too-many-instance-attributes', node=node,
2006-04-26 10:48:09 +00:00
args=(len(node.instance_attrs),
self.config.max_attributes))
2012-09-19 13:08:00 +00:00
@check_messages('too-few-public-methods', 'too-many-public-methods')
def leave_classdef(self, node):
2006-04-26 10:48:09 +00:00
"""check number of public methods"""
my_methods = sum(1 for method in node.mymethods()
if not method.name.startswith('_'))
all_methods = sum(1 for method in node.methods()
if not method.name.startswith('_'))
# Does the class contain less than n public methods ?
# This checks only the methods defined in the current class,
# since the user might not have control over the classes
# from the ancestors. It avoids some false positives
# for classes such as unittest.TestCase, which provides
# a lot of assert methods. It doesn't make sense to warn
# when the user subclasses TestCase to add his own tests.
if my_methods > self.config.max_public_methods:
self.add_message('too-many-public-methods', node=node,
args=(my_methods,
2006-04-26 10:48:09 +00:00
self.config.max_public_methods))
# stop here for exception, metaclass and interface classes
if node.type != 'class':
return
# Does the class contain more than n public methods ?
# This checks all the methods defined by ancestors and
# by the current class.
if all_methods < self.config.min_public_methods:
2014-10-21 17:02:12 +00:00
self.add_message('too-few-public-methods', node=node,
args=(all_methods,
2006-04-26 10:48:09 +00:00
self.config.min_public_methods))
@check_messages('too-many-return-statements', 'too-many-branches',
2014-08-08 16:31:05 +00:00
'too-many-arguments', 'too-many-locals',
'too-many-statements')
def visit_functiondef(self, node):
2006-04-26 10:48:09 +00:00
"""check function name, docstring, arguments, redefinition,
variable names, max locals
"""
# init branch and returns counters
self._returns.append(0)
# check number of arguments
args = node.args.args
ignored_argument_names = self._ignored_argument_names
if args is not None:
ignored_args_num = len(
[arg for arg in args
if ignored_argument_names and ignored_argument_names.match(arg.name)])
argnum = len(args) - ignored_args_num
if argnum > self.config.max_args:
self.add_message('too-many-arguments', node=node,
args=(len(args), self.config.max_args))
else:
ignored_args_num = 0
2006-04-26 10:48:09 +00:00
# check number of local variables
locnum = len(node.locals) - ignored_args_num
2006-04-26 10:48:09 +00:00
if locnum > self.config.max_locals:
self.add_message('too-many-locals', node=node,
2006-04-26 10:48:09 +00:00
args=(locnum, self.config.max_locals))
# init statements counter
self._stmts = 1
visit_asyncfunctiondef = visit_functiondef
2014-08-08 16:31:05 +00:00
@check_messages('too-many-return-statements', 'too-many-branches',
'too-many-arguments', 'too-many-locals',
'too-many-statements')
def leave_functiondef(self, node):
2006-04-26 10:48:09 +00:00
"""most of the work is done here on close:
checks for max returns, branch, return in __init__
"""
returns = self._returns.pop()
if returns > self.config.max_returns:
self.add_message('too-many-return-statements', node=node,
2006-04-26 10:48:09 +00:00
args=(returns, self.config.max_returns))
branches = self._branches[node]
if branches > self.config.max_branches:
self.add_message('too-many-branches', node=node,
args=(branches, self.config.max_branches))
2006-04-26 10:48:09 +00:00
# check number of statements
if self._stmts > self.config.max_statements:
self.add_message('too-many-statements', node=node,
2006-04-26 10:48:09 +00:00
args=(self._stmts, self.config.max_statements))
leave_asyncfunctiondef = leave_functiondef
2006-04-26 10:48:09 +00:00
def visit_return(self, _):
"""count number of returns"""
2006-12-05 09:29:06 +00:00
if not self._returns:
return # return outside function, reported by the base checker
2006-04-26 10:48:09 +00:00
self._returns[-1] += 1
2012-09-19 13:08:00 +00:00
2006-04-26 10:48:09 +00:00
def visit_default(self, node):
"""default visit method -> increments the statements counter if
necessary
"""
2009-03-06 14:19:26 +00:00
if node.is_statement:
2006-04-26 10:48:09 +00:00
self._stmts += 1
def visit_tryexcept(self, node):
"""increments the branches counter"""
branches = len(node.handlers)
2009-03-06 14:19:26 +00:00
if node.orelse:
branches += 1
self._inc_branch(node, branches)
self._stmts += branches
2012-09-19 13:08:00 +00:00
def visit_tryfinally(self, node):
"""increments the branches counter"""
self._inc_branch(node, 2)
2006-04-26 10:48:09 +00:00
self._stmts += 2
2012-09-19 13:08:00 +00:00
@check_messages('too-many-boolean-expressions')
2006-04-26 10:48:09 +00:00
def visit_if(self, node):
"""increments the branches counter and checks boolean expressions"""
self._check_boolean_expressions(node)
branches = 1
# don't double count If nodes coming from some 'elif'
2013-12-22 22:41:57 +00:00
if node.orelse and (len(node.orelse) > 1 or
not isinstance(node.orelse[0], If)):
branches += 1
self._inc_branch(node, branches)
self._stmts += branches
2012-09-19 13:08:00 +00:00
def _check_boolean_expressions(self, node):
"""Go through "if" node `node` and counts its boolean expressions
if the "if" node test is a BoolOp node
"""
condition = node.test
if not isinstance(condition, BoolOp):
return
nb_bool_expr = _count_boolean_expressions(condition)
if nb_bool_expr > self.config.max_bool_expr:
self.add_message('too-many-boolean-expressions', node=condition,
args=(nb_bool_expr, self.config.max_bool_expr))
2006-04-26 10:48:09 +00:00
def visit_while(self, node):
"""increments the branches counter"""
branches = 1
2009-03-06 14:19:26 +00:00
if node.orelse:
branches += 1
self._inc_branch(node, branches)
2012-09-19 13:08:00 +00:00
2006-04-26 10:48:09 +00:00
visit_for = visit_while
def _inc_branch(self, node, branchesnum=1):
"""increments the branches counter"""
self._branches[node.scope()] += branchesnum
2006-04-26 10:48:09 +00:00
2006-04-26 10:48:09 +00:00
def register(linter):
"""required method to auto register this checker """
linter.register_checker(MisdesignChecker(linter))