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.

  • 相关阅读:
    linux学习笔记
    HDMI之CEC DDC学习笔记(可能有误)
    MAP按照value排序
    Map遍历四种方法
    Java native方法
    [PAT] 1143 Lowest Common Ancestor (30 分)Java
    [PAT] 1148 Werewolf
    [PAT] 1096 Consecutive Factors (20 分)Java
    [PAT] 1092 To Buy or Not to Buy (20 分)Java
    [PAT] 1088 Rational Arithmetic (20 分)Java
  • 原文地址:https://www.cnblogs.com/edisonxiang/p/4753967.html
Copyright © 2011-2022 走看看