要写一个类似tomcat的简易服务器,首先需弄清楚这几点:
1. 客户端(ClIEnt)和服务端(Server)的角色及作用
角色A向角色B请求数据,这时可以把A视为客户端,B视为服务端。客户端的主要职责是发送请求和接收服务端根据自己发送的请求返回的请求信息,而服务端的主要职责是接收请求和返回请求数据。
2. 浏览器是什么及工作原理
我们常说B/S,C/S架构,所谓的B/S指browser/server,C/S指ClIEnt/Server,B/S架构其实就是应用于浏览器的程序,只要最后在浏览器上展现的都是 B/S架构,而非在浏览器上展现的都是C/S架构,如常见的英雄联盟游戏。但是本质上只有C/S架构,因为浏览器是一种特殊的客户端。
浏览器的特殊之处是有一下三大引擎:
3. Socket
上面提到的客户端服务端,他们之间是怎样实现连接及数据传递的,这就是Socket,每一门编程语言都有Socket编程,Socket的作用就是提供了网络通信的能力
4. http协议及http与TCP/TP的区别
客户端和服务端通过Socket实现了网络通信的能力,可以实现数据传递。而协议是规范数据传输,也就是说客户端和服务端之间传输数据要按照一定得规范和标准传输,不能瞎传。
TCP/IP(Transmission Control Protocol/Internet Protocol):传输控制协议/网间协议
http(HyperText Transfer Protocol):超文本传输协议。
TCP/TP的区别:
做一个形象的比喻,TCP/TP是马路,http则是马路上的汽车,所以http一定是在TCP/TP的基础上的。
http主要是应用在web程序上,设计之初就是为了提供一种发布和接收HTML页面的方法,这样说可能很抽象很难理解。具体的说当我们去访问一个网站时,只需要拿到基于这个网站的内容(比如HTML,CSS,JavaScript)。但我们抓取浏览器接收到的资源包(可以用fiddler工具)发现除了网页需要的实体内容还有一些下面信息:
http/1.1 200 OK
Cache-Control: private
Content-Type: text/plain; charset=utf-8
content-encoding: gzip
vary: Accept-EnCoding
Server: Microsoft-IIS/7.5
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Tue,24 Jan 2017 03:25:23 GMT
Connection: close
Content-Length: 661
这就是http协议规范,比如Content-Type就是说传输的时候文件的格式,content-encoding规定了编码格式。不止以上这些,非常多,关于这些参数含义这里就不去一一介绍
5. URL的含义
URL(统一资源定位符),就是我们常说的网址,直接来解析一个URL来说明他:http://198.2.17.25:8080/webapp/index.HTML
这个含义是找到IP为198.2.17.25的服务器下目录为webapp的index.HTML
但是我们常看到的是这样的URL:http://goodcandle.cnblogs.com/archive/2005/12/10/294652.aspx
其实这个和上面的一样,不过这里存在一个域名解析,可以将goodcandle.cnblogs.com解析成对应的IP地址
弄清楚以上五点之后开始来写代码
webServer.py
import socketimport sysimport getfileContent#声明一个将要绑定的IP和端口,这里是用本地地址server_address = ('localhost',8080)class WebServer(): def run(self): print >>sys.stderr,'starting up on %s port %s' % server_address #实例化一个Socket sock=socket.socket(socket.AF_INET,socket.soCK_STREAM) #绑定IP和端口 sock.bind(server_address) #设置监听 sock.Listen(1) #这里首先给个死循环,其实这里是需要多线程的,再后续版本将会实现 while True: #接受客户端的请求并得到请求信息和请求的端口信息 connection,clIEnt_address = sock.accept() print >>sys.stderr,'waiting for a connection' try: #获取请求信息 data = connection.recv(1024) if data: #发送请求信息 connection.sendall(getfileContent.getHTMLfile(data)) finally: connection.close()if __name__ == '__main__': server=WebServer() server.run()
webServer.py很清晰简洁,connection.sendall()
服务端返回信息给浏览器,但是发送的数据必须遵循http协议规范
getfileContent.py是对发送的数据进行http协议规范处理
import sysimport os#得到要发送的数据信息def getHTMLfile(data): msgSendtoClIEnt="" requestType=data[0:data.find("/")].rstrip() #判断是GET请求还是POST请求 if requestType=="GET": msgSendtoClIEnt=responseGetRequest(data,msgSendtoClIEnt) if requestType=="POST": msgSendtoClIEnt=responsePostRequest(data,msgSendtoClIEnt) return msgSendtoClIEnt#打开文件,这里不直接写,二是去取要发送的文件再写def getfile(msgSendtoClIEnt,file): for line in file: msgSendtoClIEnt+=line return msgSendtoClIEnt#筛选出请求的一个方法def getMIDStr(data,startStr,endStr): startIndex = data.index(startStr) if startIndex>=0: startIndex += len(startStr) endindex = data.index(endStr) return data[startIndex:endindex]#获取要发送数据的大小,根据http协议规范,要提前指定发送的实体内容的大小def getfileSize(fileobject): fileobject.seek(0,2) size = fileobject.tell() return size#设置编码格式和文件类型def setParaAndContext(msgSendtoClIEnt,type,file,openfileType): msgSendtoClIEnt+="Content-Type: "+type+";charset=utf-8" msgSendtoClIEnt+="Content-Length: "+str(getfileSize(open(file,"r")))+"\n"+"\n" HTMLfile=open(file,openfileType) msgSendtoClIEnt=getfile(msgSendtoClIEnt,HTMLfile) return msgSendtoClIEnt#GET请求的返回数据def responseGetRequest(data,msgSendtoClIEnt): return responseRequest(getMIDStr(data,'GET /','http/1.1'),msgSendtoClIEnt)#POST请求的返回数据def responsePostRequest(data,'POST /',msgSendtoClIEnt)#请求返回数据def responseRequest(getRequestPath,msgSendtoClIEnt): headfile=open("head.txt","r") msgSendtoClIEnt=getfile(msgSendtoClIEnt,headfile) if getRequestPath==" ": msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"text/HTML","index.HTML","r") else: rootPath=getRequestPath if os.path.exists(rootPath) and os.path.isfile(rootPath): if ".HTML" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,rootPath,"r") if ".CSS" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"text/CSS","r") if ".Js" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"application/x-JavaScript","r") if ".gif" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"image/gif","rb") if ".doc" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"application/msword","rb") if ".mp4" in rootPath: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"vIDeo/mpeg4","rb") else: msgSendtoClIEnt=setParaAndContext(msgSendtoClIEnt,"file.Js","r") return msgSendtoClIEnt
Github源码下载:https://github.com/Jiashengp/Python_httpServer
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。
总结以上是内存溢出为你收集整理的Python实现简单的HttpServer服务器示例全部内容,希望文章能够帮你解决Python实现简单的HttpServer服务器示例所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)