zoukankan      html  css  js  c++  java
  • WSGI学习系列Paste

    Paste has been under development for a while, and has lots of code in it.

    The code is largely decoupled except for some core functions shared by many parts of the code.

    Those core functions are largely replaced in WebOb, and replaced with better implementations.

    The future of these pieces is to split them into independent packages, and refactor the internal Paste dependencies to rely instead on WebOb.

     

    paste.httpserver

    # Use paste httpserver
    from paste import httpserver
    httpserver.serve(application, host='127.0.0.1', port=8000)

     

    paste.deploy

    murano-paste.ini is as follows.

    [pipeline:murano]
    pipeline = versionnegotiation faultwrap authtoken context rootapp
    
    [filter:context]
    paste.filter_factory = murano.api.middleware.context:ContextMiddleware.factory
    
    #For more information see Auth-Token Middleware with Username and Password
    #http://docs.openstack.org/developer/keystone/configuringservices.html
    [filter:authtoken]
    paste.filter_factory = keystonemiddleware.auth_token:filter_factory
    
    [composite:rootapp]
    use = egg:Paste#urlmap
    /: apiversions
    /v1: apiv1app
    
    [app:apiversions]
    paste.app_factory = murano.api.versions:create_resource
    
    [app:apiv1app]
    paste.app_factory = murano.api.v1.router:API.factory
    
    [filter:versionnegotiation]
    paste.filter_factory = murano.api.middleware.version_negotiation:VersionNegotiationFilter.factory
    
    [filter:faultwrap]
    paste.filter_factory = murano.api.middleware.fault:FaultWrapper.factory

    (1) pipeline

    [pipeline:murano]

    pipeline = versionnegotiation faultwrap authtoken context rootapp

    pipeline is used when you need apply a number of filters.

    It takes one configuration key pipeline (plus any global configuration overrides you want).

    pipeline is a list of filters ended by an application.

    These filters are defined by the ini file.

    rootapp is a Murano application.

    (2) filter_factory

    Filters are callables that take a WSGI application as the only argument, and return a “filtered” version of that application.

    [filter:authtoken]

    paste.filter_factory = keystonemiddleware.auth_token:filter_factory

    For example, authtoken filter is implemented by keystonemiddleware.auth_token:filter_factory function.

    Before visiting the Murano Application interface, filter_factory function will call the keystone client to check the user or tenant authorization.

    (3) composite

    [composite:rootapp]

    use = egg:Paste#urlmap

    /: apiversions

    /v1: apiv1app

    The default site directory is implemented by apiversions app.

    The /v1 directory is implemented by apiv1app app.

    (4) app_factory

    [app:apiv1app]

    paste.app_factory = murano.api.v1.router:API.factory

    The application is the most common. You define one like:

    def app_factory(global_config, **local_conf):
        return wsgi_app

    The global_config is a dictionary, and local configuration is passed as keyword arguments.

    The function returns a WSGI application.

    apiv1app is implemented by murano.api.v1.router:API.factory function.

  • 相关阅读:
    (转)编写高质量高效率的SharePoint应用程序
    转:我眼中的Visual Studio 2010架构工具
    Windows 7 x64/Windows 2008 : The ‘Microsoft.Jet.OLEDB.4.0′ provider is not registered on the local machine.
    转:构建高性能ASP.NET站点之一 剖析页面的处理过程(前端)
    HTML5 到底是什么?
    使用eval()解析JSON格式字符串应注意的问题
    使用HTML5进行地理位置定位。误差在+500m
    LAST DAY
    javacript获取obj的长度
    通过 JSON 字符串来创建对象
  • 原文地址:https://www.cnblogs.com/edisonxiang/p/4753967.html
Copyright © 2011-2022 走看看