~launchpad-pqm/launchpad/devel

11435.5.1 by Tim Penhey
Extract the branch cloud into its own module.
1
# Copyright 2010 Canonical Ltd.  This software is licensed under the
2
# GNU Affero General Public License version 3 (see the file LICENSE).
3
4
"""The implementation of the branch cloud."""
5
6
__metaclass__ = type
7
__all__ = [
8
    'BranchCloud',
9
    ]
10
11
12
from datetime import datetime, timedelta
13
14
import pytz
11435.5.2 by Tim Penhey
Fix the remainder tests.
15
from storm.expr import Alias, Func
16
from storm.locals import Count, Desc, Max, Not
11435.5.1 by Tim Penhey
Extract the branch cloud into its own module.
17
from zope.interface import classProvides
18
19
from canonical.launchpad.interfaces.lpstorm import ISlaveStore
20
21
from lp.code.interfaces.branch import IBranchCloud
22
from lp.code.model.revision import RevisionCache
23
from lp.registry.model.product import Product
24
25
26
class BranchCloud:
27
    """See `IBranchCloud`."""
28
29
    classProvides(IBranchCloud)
30
31
    @staticmethod
11435.5.4 by Tim Penhey
Always use the slave store, even in the tests.
32
    def getProductsWithInfo(num_products=None):
11435.5.1 by Tim Penhey
Extract the branch cloud into its own module.
33
        """See `IBranchCloud`."""
34
        distinct_revision_author = Func(
35
            "distinct", RevisionCache.revision_author_id)
36
        commits = Alias(Count(RevisionCache.revision_id))
37
        epoch = datetime.now(pytz.UTC) - timedelta(days=30)
11435.5.4 by Tim Penhey
Always use the slave store, even in the tests.
38
        # It doesn't matter if this query is even a whole day out of date, so
11435.5.10 by Tim Penhey
Tweak comment to not be a lie.
39
        # use the slave store.
11435.5.4 by Tim Penhey
Always use the slave store, even in the tests.
40
        result = ISlaveStore(RevisionCache).find(
11435.5.1 by Tim Penhey
Extract the branch cloud into its own module.
41
            (Product.name,
42
             commits,
43
             Count(distinct_revision_author),
44
             Max(RevisionCache.revision_date)),
45
            RevisionCache.product == Product.id,
46
            Not(RevisionCache.private),
47
            RevisionCache.revision_date >= epoch)
48
        result = result.group_by(Product.name)
49
        result = result.order_by(Desc(commits))
50
        if num_products:
51
            result.config(limit=num_products)
52
        return result