~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/bundle_ui.py

  • Committer: John Arbash Meinel
  • Date: 2011-03-16 14:43:36 UTC
  • mfrom: (411.4.8 page_loading)
  • Revision ID: john@arbash-meinel.com-20110316144336-5or6keig1cbagois
Merge the page-loading change.

When /changes page is loaded, don't walk the whole ancestry during 'get_revids_from'.
Instead, only walk enough history to generate the actual page, plus a little bit more
to get the link for the 'next' page.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Copyright (C) 2006  Robey Pointer <robey@lag.net>
3
 
#
4
 
# This program is free software; you can redistribute it and/or modify
5
 
# it under the terms of the GNU General Public License as published by
6
 
# the Free Software Foundation; either version 2 of the License, or
7
 
# (at your option) any later version.
8
 
#
9
 
# This program is distributed in the hope that it will be useful,
10
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 
# GNU General Public License for more details.
13
 
#
14
 
# You should have received a copy of the GNU General Public License
15
 
# along with this program; if not, write to the Free Software
16
 
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
 
#
18
 
 
19
 
import os
20
 
import time
21
 
 
22
 
import turbogears
23
 
from cherrypy import HTTPRedirect, response
24
 
 
25
 
from loggerhead import util
26
 
 
27
 
 
28
 
class BundleUI (object):
29
 
 
30
 
    def __init__(self, branch):
31
 
        # BranchView object
32
 
        self._branch = branch
33
 
        self.log = branch.log
34
 
 
35
 
    @turbogears.expose()
36
 
    def default(self, *args, **kw):
37
 
        # /bundle/<rev_id>/filename
38
 
        z = time.time()
39
 
        h = self._branch.get_history()
40
 
 
41
 
        if len(args) < 1:
42
 
            raise HTTPRedirect(self._branch.url('/changes'))
43
 
        revid = h.fix_revid(args[0])
44
 
 
45
 
        try:
46
 
            bundle_data = h.get_bundle(revid)
47
 
        except Exception, x:
48
 
            self.log.error('Exception fetching bundle: %s' % (x,))
49
 
            util.log_exception(self.log)
50
 
            raise HTTPRedirect(self._branch.url('/changes'))
51
 
            
52
 
        response.headers['Content-Type'] = 'text/plain'
53
 
        response.headers['Content-Length'] = len(bundle_data)
54
 
        response.body = bundle_data
55
 
        self.log.info('/bundle: %r seconds' % (time.time() - z,))
56
 
        return response.body