~barry/mailman/events-and-web

« back to all changes in this revision

Viewing changes to src/mailman/model/bounce.py

  • Committer: Barry Warsaw
  • Date: 2012-04-22 21:33:33 UTC
  • mfrom: (7150.1.11 transactions)
  • Revision ID: barry@list.org-20120422213333-3skjqsjktooesgsl
Several non-functional improvements to the code base.

Reduce the explicit use of the config.db global by introducing two new
helpers:
 - A new transaction() context manager which will commit the transaction on
   successful exit, otherwise it will abort the transaction
 - A new dbconnection decorator which calls the decorated method with the
   Storm store object as the first argument (after self).  This can be used
   instead of config.db.store.

By reducing the explicit use of this global, we have a better chance of
refactoring it away in the future.  Still TODO: runner.py and lmtp.py.

Be explicit about the `store` attribute on the IDatabase interface.

More consistent use of __future__ imports.

Remove an obsolete command line script.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Bounce support."""
19
19
 
20
 
from __future__ import absolute_import, unicode_literals
 
20
from __future__ import absolute_import, print_function, unicode_literals
21
21
 
22
22
__metaclass__ = type
23
23
__all__ = [
29
29
from storm.locals import Bool, Int, DateTime, Unicode
30
30
from zope.interface import implements
31
31
 
32
 
from mailman.config import config
33
32
from mailman.database.model import Model
 
33
from mailman.database.transaction import dbconnection
34
34
from mailman.database.types import Enum
35
35
from mailman.interfaces.bounce import (
36
36
    BounceContext, IBounceEvent, IBounceProcessor)
62
62
class BounceProcessor:
63
63
    implements(IBounceProcessor)
64
64
 
65
 
    def register(self, mlist, email, msg, where=None):
 
65
    @dbconnection
 
66
    def register(self, store, mlist, email, msg, where=None):
66
67
        """See `IBounceProcessor`."""
67
68
        event = BounceEvent(mlist.fqdn_listname, email, msg, where)
68
 
        config.db.store.add(event)
 
69
        store.add(event)
69
70
        return event
70
71
 
71
72
    @property
72
 
    def events(self):
 
73
    @dbconnection
 
74
    def events(self, store):
73
75
        """See `IBounceProcessor`."""
74
 
        for event in config.db.store.find(BounceEvent):
 
76
        for event in store.find(BounceEvent):
75
77
            yield event
76
78
 
77
79
    @property
78
 
    def unprocessed(self):
 
80
    @dbconnection
 
81
    def unprocessed(self, store):
79
82
        """See `IBounceProcessor`."""
80
 
        for event in config.db.store.find(BounceEvent,
81
 
                                          BounceEvent.processed == False):
 
83
        for event in store.find(BounceEvent, BounceEvent.processed == False):
82
84
            yield event