summaryrefslogtreecommitdiff
path: root/pylint/checkers/mapreduce_checker.py
blob: a9dfca5080532a2a56246b37f3efa228d539b730 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Copyright (c) 2020 Frank Harrison <frank@doublethefish.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@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
import abc


class MapReduceMixin(metaclass=abc.ABCMeta):
    """ A mixin design to allow multiprocess/threaded runs of a Checker """

    @abc.abstractmethod
    def get_map_data(self):
        """ Returns mergable/reducible data that will be examined """

    @classmethod
    @abc.abstractmethod
    def reduce_map_data(cls, linter, data):
        """ For a given Checker, receives data for all mapped runs """