openstack源码学习准备

openstack的keystone,glance,nova源码结构都非常相似,使用wsgi协议,webob,paste,routes几个基于python的框架。

     WSGI   Web服务器 网关 接口(Python Web Server Gateway Interface,缩写为WSGI)是Python应用程序或框架和Web服务器之间的一种接口。

    webob 是python基于WSGI request and response 的工具组件。

    Routes 是采用Python实现的Rails的URL映射控制,Routes很容易创建漂亮和简洁的URL的RESTful。

     Python Paste  - WSGI底层工具集. 包括多线程, SSL和 基于Cookies, sessions等的验证(authentication)库. 可以用Paste方便得搭建自己的Web框架。

安装的openstack系统中源码位置:

 可以利用find / -name api.py搜索,我通过yum在centos下安装的openstack,其源码位置在 /usr/lib/python2.6/site-pakages/



你可能感兴趣的:(源码,openstack,IaaS)