pngtile/wsgi.py
author Tero Marttila <terom@paivola.fi>
Mon, 15 Sep 2014 00:10:43 +0300
changeset 142 9b316e83e9e3
parent 103 1a6a6957197d
permissions -rw-r--r--
pngtile.image: split out javascript and rename js/css to map
"""
    Our WSGI web interface, which can serve the JS UI and any .png tiles via HTTP.
"""

from werkzeug import Request, responder
from werkzeug import exceptions

from pngtile import handlers


class WSGIApplication (object) :
    """
        Simple WSGI application invoking the werkzeug handlers
    """

    def __init__ (self, cache=None) :
        """
            Use given cache if any
        """

        self.cache = cache

    @responder
    def __call__ (self, env, start_response) :
        """
            Main WSGI entry point.

            This is wrapped with werkzeug, so we can return a Response object
        """

        req = Request(env, start_response)
        
        try :
            return handlers.handle_req(req, self.cache)

        except exceptions.HTTPException, e :
            return e