Pthon中的plisttet和HTTP的Content-Tpe

这段时间本人在学习Android Service相关的内容,临时需要一个可以提供文件上传和下载功能的服务器,于是上网查找了一个简单服务器的python实现代码,本着温顾一下HTTP协议的想法,于是深入研究了一下其中的代码,发现大家对SimpleHTTPRequestsHandler中的self.headers.plisttext.split("=")[1]语句的含义不是很理解,于是自己查阅了一下python源码定义和相关HTTP协议文档,理解了这段代码的含义。

源码定义

 我们先来看一下关于plisttext的源码定义。

https://svn.python.org/projects/python/branches/alpha100/Lib/mimetools.py

class Message(rfc822.Message):
def init(self, fp):
....
self.typeheader = \
self.getheader('content-type')
....
def parsetype(self):
str = self.typeheader
if str == None:
str = 'text/plain'
if ';' in str:
i = string.index(str, ';')
self.plisttext = str[i:]
str = str[:i]
else:
self.plisttext = ''
....
 从源码中可以得出,plisttext与HTTP头部content-type有关,这里我们就要回想一下content-type的有关定义了。
 在w3c的文档给出了content-type的格式定义,我们可以发现,content-type对的值有可选的内容,使用;隔开,所以plisttext的值就是parameter的内容。

Content-Type := type "/" subtype *[";" parameter] type :=          "application"     / "audio"           / "image"           / "message"           / "multipart"  / "text"           / "video"           / x-token x-token :=  subtype := token parameter := attribute "=" value attribute := token value := token / quoted-string token := 1* tspecials :=  "(" / ")" / "" / "@"  ; Must be in            /  "," / ";" / ":" / "\" /   ; quoted-string,            /  "/" / "[" / "]" / "?" / "."  ; to use within            /  "="                        ; parameter values 

使用原理

 知道了plisttext代表的含义,我们再来看一下它在文件上传过程中的作用吧。我们先来看一下它在处理文件上传的post请求时的作用吧。

boundary = self.headers.plisttext.split("=")[1]
remainbytes = int(self.headers['content-length'])
line = self.rfile.readline()
remainbytes -= len(line)
if not boundary in line:
return (False,"Content NOT begin with boundary")
line = self.rfile.readline()
remainbytes -= len(line)
filename = re.findall(r'Content-Disposition.name="file"; filename="(.)"',line)
if not fn:
return (False,"Can't find out file name")
 我们都知道当通过html的form来进行文件提交时,浏览器会发送POST请求,并且content-type为multipart/form-data; boundary=----WebKitFormBoundaryqdHXHkzdBEGWWZka,所以,plisttext的值为boundary=----WebKitFormBoundaryqdHXHkzdBEGWWZka。boundary在HTTP的body中会使用到,因为post请求提交了很多类型的数据,所以必须使用boundary进行间隔,也就是所谓的Multipart Content-Type时的body格式。详细的body的格式在w3c的文档中有详细的介绍。

 这里贴一张wireShark截获的tcp包的信息,来帮助大家理解一下这段python代码的原理。通过form提交一份文件和一个名为other的字符串。

 POST / HTTP/1.1Host: localhost:8080Connection: keep-aliveContent-Length: 269353Cache-Control: max-age=0Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8Origin: http://localhost:8080User-Agent: Mozilla/5.0 (X11; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/43.0.2357.81 Chrome/43.0.2357.81 Safari/537.36Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryqdHXHkzdBEGWWZkaReferer: http://localhost:8080/Accept-Encoding: gzip, deflateAccept-Language: en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4------WebKitFormBoundaryqdHXHkzdBEGWWZkaContent-Disposition: form-data; name="file"; filename="AndroidStudy.png"Content-Type: image/png..... //图片内容------WebKitFormBoundaryqdHXHkzdBEGWWZkaContent-Disposition: form-data; name="other"ddd------WebKitFormBoundaryqdHXHkzdBEGWWZka--

关键字:Python, http

版权声明

本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处。如若内容有涉嫌抄袭侵权/违法违规/事实不符,请点击 举报 进行投诉反馈!

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部