分类: Python/Ruby
2015-11-25 16:01:06
转载自:http://blog.csdn.net/ztejiagn/article/details/8722765
参考资料:
Paste.Deploy主要是用来载入WSGI中的Web App使用,其核心函数是loadapp(),下文中PD就指代Paste.Deploy。
OS:Ubuntu12.04 2012年11月17日 第一版 主要是对官方文档的一个翻译,外加自己的一些理解 本文的Paste.Deploy使用主要是针对WSGI
Paste Deployment是一种机制,通过loadapp函数和一个配置文件或者egg包来载入WSGI应用。安装很简单,如下两种方式:
$ sudo pip install PasteDeploy
或者可以从github上进行源码安装
$ hg clone $ cd pastedeploy $ sudo python setup.py develop
一个配置文件后缀为ini,内容被分为很多段(section),PD只关心带有前缀的段,比如[app:main]或者[filter:errors],总的来说,一个section的标识就是[type:name],不是这种类型的section将会被忽略。
一个section的内容是以键=值来标示的。#是一个注释。在段的定义中,有以下几类:
[app:main]:定义WSGI应用,main表示只有一个应用,有多个应用的话main改为应用名字
[server:main]:定义WSGI的一个server。
[composite:xxx]:表示需要将一个请求调度定向(dispatched)到多个,或者多种应用上。以下是一个简单的例 子,例子中,使用了composite,通过urlmap来实现载入多应用。
[fliter:]:定义“过滤器”,将应用进行进一步的封装。
[DEFAULT]:定义一些默认变量的值。
以下是一个例子:
[composite:main]
use = egg:Paste#urlmap
/ = home
/blog = blog
/wiki = wiki
/cms = config:cms.ini
[app:home]
use = egg:Paste#static
document_root = %(here)s/htdocs
[filter-app:blog]
use = egg:Authentication#auth
next = blogapp
roles = admin
htpasswd = /home/me/users.htpasswd
[app:blogapp]
use = egg:BlogApp
database = sqlite:/home/me/blog.db
[app:wiki]
use = call:mywiki.main:application
database = sqlite:/home/me/wiki.db
下面会进行分段的讲解
[composite:main]
use = egg:Paste#urlmap
/ = home
/blog = blog
/wiki = wiki
/cms = config:cms.in
这是一个composite段,表示这将会根据一些条件将web请求调度到不同的应用。use = egg:Paste#urlmap表示我们奖使用Pasteegg包中urlmap来 实现composite,这一个段(urlmap)可以算是一个通用的composite程序了。根据web请求的path的前缀进行一个到应用的映射 (map)。这些被映射的程序就包括blog,home,wiki,config:cms.ini(映射到了另外一个配置文件,PD再根据这个文件进行载 入)
[app:home]
use = egg:Paste#static
document_root = %(here)s/htdoc
app是一个callable object,接受的参数(environ,start_response),这是paste系统交给application的,符合WSGI规范的参 数. app需要完成的任务是响应envrion中的请求,准备好响应头和消息体,然后交给start_response处理,并返回响应消息体。egg:Paste#static也是Paste包中的一个简单程序,它只处理静态文件。它需要一个配置文件document_root,后面的值可以是一个变量,形式为%(var)s相应的值应该在[DEFAULT]字段指明以便Paste读取。比如:
[app:test]
use = egg:Paste#static
document_root = %(path)s/htdocs
[DEFAULT]
path = /etc/tes
filter是一个callable object,其唯一参数是(app),这是WSGI的application对象,filter需要完成的工作是将application包装成另一个 application(“过滤”),并返回这个包装后的application。
[filter-app:blog]
use = egg:Authentication#auth
next = blogapp
roles = admin
htpasswd = /home/me/users.htpasswd
[app:blogapp]
use = egg:BlogApp
database = sqlite:/home/me/blog.d
[filter-app:blog]fliter- app字段表明你希望对某个应用进行包装,需要包装的应用通过next指明(表明在下一个段中),这个字段的意思就是,在正式调用blogapp之前,我 会调用egg:Authentication#auth进行一个用户的验证,随后才会调用blogapp进行处理。后面的[app:blogapp]则是 定义了blogapp,并指明了需要的database参数。
[app:wiki]
use = call:mywiki.main:application
database = sqlite:/home/me/wiki.db
这个段和之前的app段定义类似,不同的是对于wiki这个应用,我们没有使用egg包,而是直接对mywiki.main这个模块中的 application对象使用了call方法。python,中一切皆对象,作为WSGI app的可以是一个函数,一个类,或者一个实例,使用call的话,相应的函数,类,实例中必须实现call()方法。此类app的格式用冒号分割: call(表示使用call方法):模块的完成路径名字:应用变量的完整名字
PD的主要使用就是通过读取配置文件载入WSGI应用。如下:
from paste.deploy import loadapp wsgi_app = loadapp('config:/path/to/config.ini')
注意,这里需要指明绝对路径。
单个配置文件中可以定义多个应用个,每个应用有自己独立的段。应用的定义以[app:name]的格式,[app:main]表示只有一个应用。应用的定义支持以下五种格式:
[app:myapp]
use = config:another_config_file.ini#app_name #使用另外一个配置文件
[app:myotherapp]
use = egg:MyApp #使用egg包中的内容
[app:mythirdapp]
use = call:my.project:myapplication #使用模块中的callable对象
[app:mylastapp]
use = myotherapp #使用另外一个section
[app:myfacapp]
paste.app_factory = myapp.modulename:app_factory #使用工厂函
其中,最后一种方式,将一个app指向了某些python代码。此模式下,必须执行app协议,以app_factory表示,后面的值需要import的东西,在这个例子中myapp.modulename被载入,并从其中取得了app_factory的实例。
app_factory是一个callable object,其接受的参数是一些关于application的配置信息:(global_conf,**kwargs),global_conf是在ini文件中default section中定义的一系列key-value对,而**kwargs,即一些本地配置,是在ini文件中,app:xxx section中定义的一系列key-value对。app_factory返回值是一个application对象
在app的配置中,use参数以后配置就算结束了。其余的键值参数将会作为参数,传递到factory中,如下:
[app:blog]
use = egg:MyBlog
database = mysql://localhost/blogdb #这是参数
blogname = This Is My Blog! #这是参
全局配置主要是用于多个应用共用一些变量,这些变量我们规定放在段[DEFAULT]中,如果需要覆盖,可以在自己的app中重新定义,如下:
[DEFAULT]
admin_email = webmaster@example.com
[app:main]
use = ... set admin_email = bob@example.com
composite是一个运行着像是app,但是实际上是由多个应用组成的。urlmap就是composite app的一个例子,url不同的path对应了不同的应用。如下:
[composite:main]
use = egg:Paste#urlmap
/ = mainapp
/files = staticapp
[app:mainapp]
use = egg:MyApp
[app:staticapp]
use = egg:Paste#static
document_root = /path/to/docroot
在loadapp函数的执行中,composite app被实例化,它同时还会访问配置文件中定义的其他应用。
在app段中,你可以定义fliters和servers,通过fliter:和server: PD通过loadserver和loadfilter函数进行调用,工作机制都一样,返回不同的对象。
应用filter的方式很多,重要的是看你filter的数量和组织形式。下面会一一介绍应用fliter的几种方式:
1.使用filter-with
[app:main]
use = egg:MyEgg
filter-with = printdebug
[filter:printdebug]
use = egg:Paste#printdebug
# and you could have another filter-with here, and so on..
2.使用fliter-app
[fliter-app:printdebug]
use = egg:Paste
next = main
[app:main]
use = egg:MyEgg
3.使用pipeline
当使用多个filter的时候需要使用pipeline的方式,它需要提供一个key参数pipeline,后面的值是一个列表,最后以应用结尾。如下:
[pipeline:main]
pipeline = filter1 egg:FilterEgg#filter2 filter3 app
[filter:filter1]
...
假设在ini文件中, 某条pipeline的顺序是filter1, filter2, filter3,app, 那么,最终运行的app_real是这样组织的: app_real = filter1(filter2(filter3(app)))
在app真正被调用的过程中,filter1.__call__(environ,start_response)被首先调用,若某种检查未通 过,filter1做出反应;否则交给filter2.__call__(environ,start_response)进一步处理,若某种检查未通 过,filter2做出反应,中断链条,否则交给filter3.__call__(environ,start_response)处理,若 filter3的某种检查都通过了,最后交给app.__call__(environ,start_response)进行处理。
如果希望在不创建应用的情况下得到配置文件,可以使用appconfig(uri)函数,将会以字典形式返回使用的配置。这个字典包括了全局很本地的配置 信息,所以可以通过属性方法获得相应的attributes (.local_conf and .global_conf)
egg是python的一个包,pip easy_install等都是安装egg包的方式。关注egg包要注意: +某一egg包是有标准说明的
python setup.py name +有entry point,不用太在意,这个只是说明调用程序的参数。
工厂函数的定义还是遵循之前提到的应用的协议。目前,用于工厂函数的协议有以下:
*paste.app_factory
*paste.composite_factory
*paste.filter_factory
*paste.server_factory
所有的这些都希望有一个含有__call__方法的(函数,方法,类)。
1.paste.app_factory
def app_factory(global_config, **local_conf):
return wsgi_app
global_config是一个字典,而local_conf则是关键字参数。返回一个wsgi_app(含有call方法。)
2.paste.composite_factory`
def composite_factory(loader, global_config, **local_conf):
return wsgi_ap
loader是一个对象,有几个有趣的方法,get_app(name_or_uri, global_conf=None)根据name返回一个wsgi应用,get_filter()和get_server()也是一样。看一个更加复杂的 例子,举例一个pipeline应用:
def pipeline_factory(loader, global_config, pipeline):
# space-separated list of filter and app names:
pipeline = pipeline.split()
filters = [loader.get_filter(n) for n in pipeline[:-1]]
app = loader.get_app(pipeline[-1])
filters.reverse() # apply in reverse order!
for filter in filters:
app = filter(app)
return app
相应的配置文件如下:
[composite:main]
use =
pipeline = egg:Paste#printdebug session myapp
[filter:session]
use = egg:Paste#session
store = memory
[app:myapp]
use = egg:MyApp
3.paste.filter_factory fliter 的工厂函数和app的共产函数类似,除了它返回的是一个filter,fliter是一个仅仅把一个wsgi应用作为唯一参数的callable对象,返 回一个被filter了的应用。 以下是一个例子,这个filter会检查CGI中REMOTE_USER变量是否存在,并创建一个简单的认证过滤器。
def auth_filter_factory(global_conf, req_usernames):
# space-separated list of usernames:
req_usernames = req_usernames.split()
def filter(app):
return AuthFilter(app, req_usernames)
return filter
class AuthFilter(object):
def __init__(self, app, req_usernames):
self.app = app
self.req_usernames = req_usernames
def __call__(self, environ, start_response):
if environ.get('REMOTE_USER') in self.req_usernames:
return self.app(environ, start_response)
start_response(
'403 Forbidden', [('Content-type', 'text/html')])
return ['You are forbidden to view this resource']
4.paste.filter_app_factory 和paste.filter_factory类似,接受一个wsgi应用参数,返回一个WSGI应用,所以如果改变以上代码的:
class AuthFilter(object):
def __init__(self, app, global_conf, req_usernames):
...
那么,类 AuthFilter就会作为一个filter_app_factory函数使用。
5.paste.server_factory
与以上不同的是,函数返回的是一个server,一个server也是一个callable对象,以一个WSGI应用作为参数,而后为这个应用服务。
def server_factory(global_conf, host, port):
port = int(port)
def serve(app):
s = Server(app, host=host, port=port)
s.serve_forever()
return serve
Server的实现用户可以自定义,可以参考python包wsgiref
6.paste.server_runner 与 paste.server_factory类似,不同的是参数格式。
ConfigParser(PD底层用到这个来解析ini文件)解析ini文件不是很有效率,是否需要更改?
在配置文件中的对象是否需要是python风格的,而不是字符串的形式?
Paste Deployment currently does not require other parts of Paste, and is distributed as a separate package.
上一节中梳理了Python Paste中Deploy机制的概念,这一节就做一点小小的实践。首先,我们举一个使用了Deploy的例子,这个就是OpenStack的 Quantum组件的WSGI部分。我们先来看关于WSGI部分的配置文件,以ini后缀,那么就是api-paste.ini文件,决定了API的处理 流程。我加入了适当的注释。
[composite:quantum]
use = egg:Paste#urlmap
/: quantumversions
/v2.0: quantumapi_v2_0
#使用composite分解机制,composite使用了usrlmap,xxxxx/xxx的API交给quantumversions处理。xxxx/v2.0/xxxx的API交给quantumapi_v2_0处理。
[composite:quantumapi_v2_0]
use = call:quantum.auth:pipeline_factory
noauth = extensions quantumapiapp_v2_0
keystone = authtoken keystonecontext extensions quantumapiapp_v2_0
#quantumapi_v2_0依然是一个分解组件,使用了quantum.auth模块下的pipeline_factory,对于这个factory,传递了两个参数,一个是noauth,一个是keystone。
[filter:keystonecontext]
paste.filter_factory = quantum.auth:QuantumKeystoneContext.factory
#对于keystonecontext,实际上是一个过滤器,使用了quantum.auth模块下的类的QuantumKeystoneContext的factory函数
[filter:authtoken]
paste.filter_factory = keystone.middleware.auth_token:filter_factory
auth_host = 127.0.0.1
auth_port = 35357
auth_protocol = http
admin_tenant_name = %SERVICE_TENANT_NAME%
admin_user = %SERVICE_USER%
admin_password = %SERVICE_PASSWORD%
#定义了另外一个filter
[filter:extensions]
paste.filter_factory = quantum.extensions.extensions:plugin_aware_extension_middleware_factory
#定义了另外一个filter,这个filter是为了支持扩展quantum api的
[app:quantumversions]
paste.app_factory = quantum.api.versions:Versions.factory
#核心的app部分,使用工厂函数,将app指向python代码。app_factory表明这个函数接收一系列参数,[DEFAULET]以及[app:]下面的,本部分本section没有参数,并返回一个函数对象。
[app:quantumapiapp_v2_0]
paste.app_factory = quantum.api.v2.router:APIRouter.factory
#同上
我们来总结一下,整个Quantum处理api的流程如下,其中,强调的部分为函数代码,其他为配置文件中的section部分。
对于路径为/类的API——quantumversions处理——调用quantum.api.versions:Version类的factory函数处理。
对于路径为/2.0类的API——quantumapi_v2_0处理——调用quantum.auth中的pipeline_factory处理,同时传递了两个参数noauth和keystone,类型为字典。 这个pipeline_factory中会读取另外一个变量CONF.auth(来自另外一个配置文件,不考虑),选择采用的认证方式,然后选择noauth或者keystone,并读取参数的值。 那么,就有两种情况:
noauth: 应用将会先经过extensions这个filter处理——调用了quantum.extensions.extensions:plugin_aware_extension_middleware_factory,用来处理扩展api请求,这是第一次包装——quantumapiapp_v2_0,这才是实际的WSGI应用,调用了quantum.api.v2.router:APIRouter.factory,并处理返回结果。
keystone:和上面类似,不同的是多了几个filter,authtoken keystonecontext extensions quantumapiapp_v2_0,并且在每个filter中可能还会有参数传递给这个fliter。
总的来说,通过pipeline装载多个filter,将最基本的app—APIRouter,层层包装,使其变为一个具有处理认证,扩展API等的应用(逻辑上看),filter的好处就是可以自定义,比如可以不要认证功能,这比写一个囊括全部功能的应用明显要好的多。
[DEFAULT]
company = UESTC
school = Commuication and Information
[composite:common]
use = egg:Paste#urlmap
/:showversion
/detail:showdetail
[pipeline:showdetail]
pipeline = filter1 filter2 showstudetail
[filter:filter1]
#filter1 deal with auth,read args below
paste.filter_factory = python_paste:AuthFilter.factory
user = admin
passwd = admin
[filter:filter2]
#filter2 deal with time,read args below
paste.filter_factory = python_paste:LogFilter.factory
#all value is string
date = 20121120
[app:showstudetail]
name = wangchang
age = 23
paste.app_factory = python_paste:ShowStuDetail.factory
[app:showversion]
version = 1.0.0
从配置文件可以看出,这个程序会有如下操作: *对于的访问,会调用showversion这个应用,应用读取ini文件中的version值并返回。__注意,在ini中的所有值都是字符串。
对于detail的访问,会先经过filter1以及filter2,这两个filter分别处理认证和LOG信息, 他们会读取ini配置中的用户信息以及时间。最后才是交给showstudetail处理,showstudetail会读取ini中的用户信息并返回。 __注意,使用多个filter的时候需要使用pipeline方式。
import sys
import os
import webob
from webob import Request
from webob import Response
#from webob import environ
from paste.deploy import loadapp
from wsgiref.simple_server import make_server
from pprint import pprint
class AuthFilter(object):
'''filter1,auth
1.factory read args and print,return self instance
2.call method return app
3.AuthFilter(app)
'''
def __init__(self,app):
self.app = app
def __call__(self,environ,start_response):
print 'this is Auth call filter1'
#pass environ and start_response to app
return self.app(environ,start_response)
@classmethod
def factory(cls,global_conf,**kwargs):
'''global_conf and kwargs are dict'''
print '######filter1##########'
print 'global_conf type:',type(global_conf)
print '[DEFAULT]',global_conf
print 'kwargs type:',type(kwargs)
print 'Auth Info',kwargs
return AuthFilter
class LogFilter(object):
'''
filter2,Log
'''
def __init__(self,app):
self.app = app
def __call__(self,environ,start_response):
print 'This is call LogFilter filter2'
return self.app(environ,start_response)
@classmethod
def factory(cls,global_conf,**kwargs):
#print type(global_conf)
#print type(kwargs)
print '######filter2###########'
print '[DEFAULT]',global_conf
print 'Log Info',kwargs
return LogFilter
class ShowStuDetail(object):
'''
app
'''
def __init__(self,name,age):
self.name = name
self.age = age
def __call__(self,environ,start_response):
print 'this is call ShowStuDetail'
#pprint(environ)
#pprint environ
start_response("200 OK",[("Content-type","text/plain")])
content = []
content.append("name: %s age:%s\n" % (self.name,self.age))
content.append("**********WSGI INFO***********\n")
for k,v in environ.iteritems():
content.append('%s:%s \n' % (k,v))
return ['\n'.join(content)] #return a list
@classmethod
def factory(cls,global_conf,**kwargs):
#self.name = kwargs['name']
#self.age = kwargs['age']
return ShowStuDetail(kwargs['name'],kwargs['age'])
class ShowVersion(object):
'''
app
'''
def __init__(self,version):
self.version = version
def __call__(self,environ,start_response):
print 'this is call ShowVersion'
req = Request(environ)
res = Response()
res.status = '200 OK'
res.content_type = "text/plain"
content = []
#pprint(req.environ)
content.append("%s\n" % self.version)
content.append("*********WSGI INFO*********")
for k,v in environ.iteritems():
content.append('%s:%s\n' % (k,v))
res.body = '\n'.join(content)
return res(environ,start_response)
@classmethod
def factory(cls,global_conf,**kwargs):
#self.version = kwargs['version']
return ShowVersion(kwargs['version'])
if __name__ == '__main__':
config = "python_paste.ini"
appname = "common"
wsgi_app = loadapp("config:%s" % os.path.abspath(config), appname)
server = make_server('localhost',7070,wsgi_app)
server.serve_forever()
pass
在程序中,对于web请求的处理,我分别采用了webob和普通WSGI定义的方式,后续我会补上webob的使用。
先从服务端结果分析一下调用流程:
Ubuntu:~/python$ python python_paste.py
######filter1##########
global_conf type:
[DEFAULT] {'school': 'Commuication and Information', 'company': 'UESTC', 'here': '/home/wachang/python', '__file__': '/home/wachang/python/python_paste.ini'}
kwargs type:
Auth Info {'passwd': 'admin', 'user': 'admin'}
######filter2###########
[DEFAULT] {'school': 'Commuication and Information', 'company': 'UESTC', 'here': '/home/wachang/python', '__file__': '/home/wachang/python/python_paste.ini'}
Log Info {'date': '20121120'}
以上是PD载入应用时,调用filter的factory方法输出的结果,可以看到,此读出了相关的变量信息。
this is call ShowVersion
localhost - - [21/Nov/2012 13:23:40] "GET / HTTP/1.1" 200 2938
this is call ShowVersion
localhost - - [21/Nov/2012 13:23:40] "GET /favicon.ico HTTP/1.1" 200 2889
以上是接收/请求,因为没有使用filter,直接交予showversion应用处理,并返回。
this is Auth call filter1
This is call LogFilter filter2
this is call ShowStuDetail
localhost - - [21/Nov/2012 13:24:23] "GET /detail HTTP/1.1" 200 3016
this is call ShowVersion
localhost - - [21/Nov/2012 13:24:24] "GET /favicon.ico HTTP/1.1" 200 2889
filter的调用时重点啊,可以看到,调用的顺序和pipeline中一样。最后才调用应用。