view pylons_app/lib/base.py @ 169:8e01265fb586

added long term caching of repo_list to the base controller. changed hg and repos to use that cached list.
author Marcin Kuzminski <marcin@python-works.com>
date Fri, 21 May 2010 02:17:13 +0200
parents 988477a05db6
children 3380ca40cdba
line wrap: on
line source

"""The base Controller API

Provides the BaseController class for subclassing.
"""
from pylons.controllers import WSGIController
from pylons.templating import render_mako as render
from pylons_app.model import meta
from beaker.cache import cache_region
from pylons import tmpl_context as c
from pylons_app.model.hg_model import HgModel

@cache_region('long_term', 'cached_repo_list')
def _get_repos_cached():
    return [rep for rep in HgModel().get_repos()]

class BaseController(WSGIController):
        
    def __call__(self, environ, start_response):
        """Invoke the Controller"""
        # WSGIController.__call__ dispatches to the Controller method
        # the request is routed to. This routing information is
        # available in environ['pylons.routes_dict']
        c.cached_repo_list = _get_repos_cached()
        self.sa = meta.Session
        try:
            return WSGIController.__call__(self, environ, start_response)
        finally:
            meta.Session.remove()