view commitwatcher/event.py @ 38:035368f84847

indent
author Jeff Hammel <jhammel@mozilla.com>
date Mon, 04 Nov 2013 23:20:32 -0800
parents 798b747b65d6
children 97dfcdeb9a4e
line wrap: on
line source

"""
event system for watching commits
"""

from abc import abstractmethod

class EventHandler(object):
    """ABC for events"""

    def match(self, commit):
        """does this event trigger the handler?"""
        return True  # abstractmethod

class PathEventHandler(EventHandler):
    """events based on paths"""

    def match(self, commit):
        pass # TODO: move path handling -> commit object