third_party.pylibs.pylint.src/pylint/interfaces.py

103 lines
3.1 KiB
Python
Raw Normal View History

2018-07-15 09:36:36 +00:00
# -*- coding: utf-8 -*-
# Copyright (c) 2009-2010, 2012-2013 LOGILAB S.A. (Paris, FRANCE) <contact@logilab.fr>
# Copyright (c) 2013-2014 Google, Inc.
2017-12-15 11:24:15 +00:00
# Copyright (c) 2014 Michal Nowikowski <godfryd@gmail.com>
# Copyright (c) 2014 Arun Persaud <arun@nubati.net>
2018-07-15 09:36:36 +00:00
# Copyright (c) 2015-2017 Claudiu Popa <pcmanticore@gmail.com>
2017-12-15 11:24:15 +00:00
# Copyright (c) 2015 Florian Bruhin <me@the-compiler.org>
# Copyright (c) 2015 Ionel Cristian Maries <contact@ionelmc.ro>
2018-07-15 09:36:36 +00:00
# Copyright (c) 2018 ssolanki <sushobhitsolanki@gmail.com>
# Copyright (c) 2018 Ville Skyttä <ville.skytta@upcloud.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
"""Interfaces for Pylint objects"""
from collections import namedtuple
2006-04-26 10:48:09 +00:00
2018-09-16 15:33:50 +00:00
Confidence = namedtuple("Confidence", ["name", "description"])
# Warning Certainties
2018-09-16 15:33:50 +00:00
HIGH = Confidence("HIGH", "No false positive possible.")
INFERENCE = Confidence("INFERENCE", "Warning based on inference result.")
INFERENCE_FAILURE = Confidence(
"INFERENCE_FAILURE", "Warning based on inference with failures."
)
UNDEFINED = Confidence("UNDEFINED", "Warning without any associated confidence level.")
CONFIDENCE_LEVELS = [HIGH, INFERENCE, INFERENCE_FAILURE, UNDEFINED]
2006-04-26 10:48:09 +00:00
class Interface:
"""Base class for interfaces."""
2018-09-16 15:33:50 +00:00
@classmethod
def is_implemented_by(cls, instance):
return implements(instance, cls)
def implements(obj, interface):
"""Return true if the give object (maybe an instance or class) implements
the interface.
"""
2018-09-16 15:33:50 +00:00
kimplements = getattr(obj, "__implements__", ())
if not isinstance(kimplements, (list, tuple)):
kimplements = (kimplements,)
for implementedinterface in kimplements:
if issubclass(implementedinterface, interface):
return True
return False
2006-04-26 10:48:09 +00:00
class IChecker(Interface):
2018-01-30 20:41:03 +00:00
"""This is a base interface, not designed to be used elsewhere than for
2006-04-26 10:48:09 +00:00
sub interfaces definition.
"""
def open(self):
"""called before visiting project (i.e set of modules)"""
2006-04-26 10:48:09 +00:00
def close(self):
"""called after visiting project (i.e set of modules)"""
2006-04-26 10:48:09 +00:00
class IRawChecker(IChecker):
"""interface for checker which need to parse the raw file
"""
2013-06-17 13:06:48 +00:00
def process_module(self, astroid):
2006-04-26 10:48:09 +00:00
""" process a module
the module's content is accessible via astroid.stream
2006-04-26 10:48:09 +00:00
"""
class ITokenChecker(IChecker):
"""Interface for checkers that need access to the token list."""
2018-09-16 15:33:50 +00:00
def process_tokens(self, tokens):
"""Process a module.
2013-07-31 07:05:01 +00:00
tokens is a list of all source code tokens in the file.
"""
2013-06-17 13:06:48 +00:00
class IAstroidChecker(IChecker):
2006-04-26 10:48:09 +00:00
""" interface for checker which prefers receive events according to
statement type
"""
class IReporter(Interface):
""" reporter collect messages and display results encapsulated in a layout
"""
def handle_message(self, msg):
"""Handle the given message object."""
def display_reports(self, layout):
2006-04-26 10:48:09 +00:00
"""display results encapsulated in the layout tree
"""
2018-09-16 15:33:50 +00:00
__all__ = ("IRawChecker", "IAstroidChecker", "ITokenChecker", "IReporter")