~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/bundle_ui.py

  • Committer: Martin Albisetti
  • Date: 2009-06-03 23:11:27 UTC
  • mfrom: (352.5.8 global-config)
  • Revision ID: martin.albisetti@canonical.com-20090603231127-kyzswuj78lvq2eb6
Allow setting configuration options in ~/.bazaar/bazaar.conf, and deprecate start-loggerhead

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 time
20
 
 
21
 
from paste import httpexceptions
22
 
from paste.request import path_info_pop
23
 
 
24
 
class BundleUI (object):
25
 
 
26
 
    def __init__(self, branch):
27
 
        # BranchView object
28
 
        self._branch = branch
29
 
        self.log = branch.log
30
 
 
31
 
    def default(self, request, response):
32
 
        # /bundle/<rev_id>/[<compare_rev_id>/]filename
33
 
        z = time.time()
34
 
        h = self._branch.history
35
 
 
36
 
        h._branch.lock_read()
37
 
        try:
38
 
            args = []
39
 
            while 1:
40
 
                arg = path_info_pop(request.environ)
41
 
                if arg is None:
42
 
                    break
43
 
                args.append(arg)
44
 
            if len(args) < 1:
45
 
                raise httpexceptions.HTTPMovedPermanently('../changes')
46
 
            revid = h.fix_revid(args[0])
47
 
            if len(args) >= 3:
48
 
                compare_revid = h.fix_revid(args[1])
49
 
            else:
50
 
                compare_revid = None
51
 
 
52
 
            try:
53
 
                bundle_data = h.get_bundle(revid, compare_revid)
54
 
            except:
55
 
                self.log.exception('Exception fetching bundle')
56
 
                raise httpexceptions.HTTPServerError('Could not fetch bundle')
57
 
 
58
 
            response.headers['Content-Type'] = 'application/octet-stream'
59
 
            response.headers['Content-Length'] = len(bundle_data)
60
 
            response.write(bundle_data)
61
 
            self.log.info('/bundle: %r seconds' % (time.time() - z,))
62
 
        finally:
63
 
            h._branch.unlock()