~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/apps/config.py

  • Committer: Martin Albisetti
  • Date: 2008-06-23 03:45:24 UTC
  • Revision ID: argentina@gmail.com-20080623034524-97s2zy6g5c45kedt
 * Show author instead of committer. Bug #149443

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
"""A server that uses a loggerhead.conf file.
 
1
# A server that recreates (modulo cherrypy bugs :) the url parsing
 
2
# from the old, loggerhead.conf approach.
2
3
 
3
 
We recreate the branch discovery and url scheme of the old branchview
4
 
code.  It's all a bit horrible really.
5
 
"""
 
4
# It's all a bit horrible really.
6
5
 
7
6
import logging
8
7
import os
9
8
import posixpath
10
9
 
11
 
import bzrlib.lru_cache
12
 
 
13
10
from configobj import ConfigObj
14
11
 
15
12
from paste.request import path_info_pop
26
23
 
27
24
from loggerhead.history import is_branch
28
25
 
29
 
class Project(object):
30
 
    """A project contains the branches.
31
 
 
32
 
    There is some complication because we don't want to hold on to the
33
 
    branches when they are not being browsed."""
34
 
 
35
 
    def __init__(self, name, config, root_config, graph_cache):
 
26
class Project (object):
 
27
    def __init__(self, name, config, root_config):
36
28
        self.name = name
37
29
        self.friendly_name = config.get('name', name)
38
30
        self.description = config.get('description', '')
39
31
        self.long_description = config.get('long_description', '')
40
32
        self._config = config
41
33
        self._root_config = root_config
42
 
        self.graph_cache = graph_cache
43
34
 
44
 
        self.view_names = []
45
 
        self.view_data_by_name = {}
 
35
        self.views = []
 
36
        self.views_by_name = {}
46
37
        for view_name in config.sections:
47
38
            log.debug('Configuring (project %s) branch %s...', name, view_name)
48
39
            self._add_view(
69
60
            return
70
61
 
71
62
        # rebuild views:
72
 
        self.view_names = []
73
63
        log.debug('Rescanning auto-folder for project %s ...', self.name)
 
64
        self._views = []
74
65
        for folder in auto_list:
75
66
            view_name = os.path.basename(folder)
76
67
            log.debug('Auto-configuring (project %s) branch %s...', self.name, view_name)
86
77
            return posixpath.join(url, folder) + '/'
87
78
        return None
88
79
 
89
 
    def _get_description(self, view, view_config, history):
 
80
    def _get_description(self, view, view_config):
90
81
        description = view_config.get('description', None)
91
82
        if description is not None:
92
83
            return description
93
 
        description = history._branch.get_config().get_user_option('description')
 
84
        description = view.history._branch.get_config().get_user_option('description')
94
85
        return description
95
86
 
96
87
    def _add_view(self, view_name, view_config, folder):
97
 
        b = bzrlib.branch.Branch.open(folder)
98
 
        view = BranchWSGIApp(b, view_name, view_config, self.graph_cache)
99
 
        b.lock_read()
100
 
        try:
101
 
            history = view.get_history()
102
 
            friendly_name = view_config.get('branch_name', None)
 
88
        view = BranchWSGIApp(folder, view_name, view_config)
 
89
        friendly_name = view_config.get('branch_name', None)
 
90
        if friendly_name is None:
 
91
            friendly_name = view.history.get_config().get_nickname()
103
92
            if friendly_name is None:
104
 
                friendly_name = history.get_config().get_nickname()
105
 
                if friendly_name is None:
106
 
                    friendly_name = view_name
107
 
            self.view_data_by_name[view_name] = {
108
 
                'branch_path': folder,
109
 
                'args': (view_name, view_config, self.graph_cache),
110
 
                'description': self._get_description(view, view_config, history),
111
 
                '_src_folder': folder,
112
 
                '_view_config': view_config,
113
 
                'friendly_name': friendly_name,
114
 
                'name': view_name,
115
 
                }
116
 
            branch_url = self._get_branch_url(view, view_config, view_name)
117
 
            if branch_url is not None:
118
 
                self.view_data_by_name[view_name]['branch_url'] = branch_url
119
 
            self.view_names.append(view_name)
120
 
        finally:
121
 
            b.unlock()
122
 
 
123
 
    def view_named(self, name):
124
 
        view_data = self.view_data_by_name.get(name)
125
 
        if view_data is None:
126
 
            return None
127
 
        view_data = view_data.copy()
128
 
        branch_path = view_data.pop('branch_path')
129
 
        args = view_data.pop('args')
130
 
        b = bzrlib.branch.Branch.open(branch_path)
131
 
        b.lock_read()
132
 
        view = BranchWSGIApp(b, *args)
133
 
        for k in view_data:
134
 
            setattr(view, k, view_data[k])
135
 
        return view
 
93
                friendly_name = view_name
 
94
        view.friendly_name = friendly_name
 
95
        view.name = view_name
 
96
        branch_url = self._get_branch_url(view, view_config, view_name)
 
97
        if branch_url is not None:
 
98
            view.branch_url = branch_url
 
99
        view.description = self._get_description(view, view_config)
 
100
        view._src_folder = folder
 
101
        view._view_config = view_config
 
102
        self.views.append(view)
 
103
        self.views_by_name[view_name] = view
136
104
 
137
105
    def call(self, environ, start_response):
138
106
        segment = path_info_pop(environ)
139
107
        if not segment:
140
108
            raise httpexceptions.HTTPNotFound()
141
109
        else:
142
 
            view = self.view_named(segment)
 
110
            view = self.views_by_name.get(segment)
143
111
            if view is None:
144
112
                raise httpexceptions.HTTPNotFound()
145
 
            try:
146
 
                return view.app(environ, start_response)
147
 
            finally:
148
 
                view.branch.unlock()
 
113
            return view.app(environ, start_response)
149
114
 
150
115
 
151
116
class Root(object):
152
 
    """The root of the server -- renders as the browse view,
153
 
    dispatches to Project above for each 'project'."""
154
117
 
155
118
    def __init__(self, config):
156
119
        self.projects = []
157
120
        self.config = config
158
121
        self.projects_by_name = {}
159
 
        graph_cache = bzrlib.lru_cache.LRUCache()
160
122
        for project_name in self.config.sections:
161
123
            project = Project(
162
 
                project_name, self.config[project_name], self.config, graph_cache)
 
124
                project_name, self.config[project_name], self.config)
163
125
            self.projects.append(project)
164
126
            self.projects_by_name[project_name] = project
165
127
 
166
128
    def browse(self, response):
167
 
        # This is insanely complicated because we want to open and
168
 
        # lock all the branches, render the view and then unlock the
169
 
        # branches again.
170
129
        for p in self.projects:
171
130
            p._recheck_auto_folders()
172
 
        class branch(object):
 
131
        class branch:
173
132
            @staticmethod
174
133
            def static_url(path):
175
134
                return self._static_url_base + path
176
 
        views_by_project = {}
177
 
        all_views = []
178
 
        try:
179
 
            for p in self.projects:
180
 
                views_by_project[p] = []
181
 
                for vn in p.view_names:
182
 
                    v = p.view_named(vn)
183
 
                    all_views.append(v)
184
 
                    views_by_project[p].append(v)
185
 
            vals = {
186
 
                'projects': self.projects,
187
 
                'util': util,
188
 
                'title': self.config.get('title', None),
189
 
                'branch': branch,
190
 
                'views_by_project': views_by_project,
191
 
            }
192
 
            vals.update(templatefunctions)
193
 
            response.headers['Content-Type'] = 'text/html'
194
 
            template = load_template('loggerhead.templates.browse')
195
 
            template.expand_into(response, **vals)
196
 
        finally:
197
 
            for v in all_views:
198
 
                v.branch.unlock()
 
135
        vals = {
 
136
            'projects': self.projects,
 
137
            'util': util,
 
138
            'title': self.config.get('title', None),
 
139
            'branch': branch,
 
140
        }
 
141
        vals.update(templatefunctions)
 
142
        response.headers['Content-Type'] = 'text/html'
 
143
        template = load_template('loggerhead.templates.browse')
 
144
        template.expand_into(response, **vals)
199
145
 
200
146
    def __call__(self, environ, start_response):
201
 
        self._static_url_base = environ['loggerhead.static.url'] = \
202
 
                                environ['SCRIPT_NAME']
 
147
        self._static_url_base = environ['loggerhead.static.url'] = environ['SCRIPT_NAME']
203
148
        segment = path_info_pop(environ)
204
149
        if segment is None:
205
150
            raise httpexceptions.HTTPMovedPermanently(