3 \� @s dZddlmZmZddlZddlZddlmZddl m Z dZ ddd d gZ d e Z e �d ejj�dZe d eZGdd�de�ZGdd�de�ZGdd�de�Zdd �Zeefdd �Zedk�redde��BZejj�Zededdedd�ddlZejd�ej�WdQRXdS)a!BaseHTTPServer that implements the Python WSGI protocol (PEP 3333) This is both an example of how WSGI can be implemented, and a basis for running simple web applications on a local machine, such as might be done when testing or debugging an application. It has not been reviewed for security issues, however, and we strongly recommend that you use a "real" web server for production use. For example usage, see the 'if __name__=="__main__"' block at the end of the module. See also the BaseHTTPServer module docs for other API information. �)�BaseHTTPRequestHandler� HTTPServerN)� SimpleHandler)�python_implementationz0.2� WSGIServer�WSGIRequestHandler�demo_app� make_serverz WSGIServer/�/� c@seZdZeZdd�ZdS)� ServerHandlerc Cs4z"|jj|jjdd�d|j�Wdtj|�XdS)Nr �r)�request_handlerZ log_requestZstatus�splitZ bytes_sentr�close)�self�r�-/usr/lib64/python3.6/wsgiref/simple_server.pyr szServerHandler.closeN)�__name__� __module__� __qualname__�software_versionZserver_softwarerrrrrr sr c@s4eZdZdZdZdd�Zdd�Zdd�Zd d �ZdS) rz7BaseHTTPServer that implements the Python WSGI protocolNcCstj|�|j�dS)z.Override server_bind to store the server name.N)r� server_bind� setup_environ)rrrrr0s zWSGIServer.server_bindcCsFi}|_|j|d<d|d<t|j�|d<d|d<d|d<d|d<dS) NZ SERVER_NAMEzCGI/1.1ZGATEWAY_INTERFACEZ SERVER_PORT�� REMOTE_HOST�CONTENT_LENGTHZ SCRIPT_NAME)� base_environZ server_name�strZ server_port)r�envrrrr5s  zWSGIServer.setup_environcCs|jS)N)� application)rrrr�get_app?szWSGIServer.get_appcCs ||_dS)N)r )rr rrr�set_appBszWSGIServer.set_app) rrr�__doc__r rrr!r"rrrrr*s  c@s,eZdZdeZdd�Zdd�Zdd�ZdS) rz WSGIServer/cCsT|jjj�}|j|d<|j|d<|j|d<d|jkrH|jjdd�\}}n |jd}}tj j |d�|d<||d <|j �}||j d kr�||d <|j d |d <|j jd �dkr�|j j�|d<n|j d |d<|j jd�}|r�||d<xn|j j�D]`\}}|jdd�j�}|j�}||k�rq�d||k�r@|d|d|7<q�||d|<q�W|S)NZSERVER_PROTOCOLZSERVER_SOFTWAREZREQUEST_METHOD�?r rz iso-8859-1Z PATH_INFOZ QUERY_STRINGrrZ REMOTE_ADDRz content-typeZ CONTENT_TYPEzcontent-lengthr�-�_ZHTTP_�,)�serverr�copy�request_version�server_version�command�pathr�urllib�parseZunquoteZaddress_stringZclient_addressZheaders�getZget_content_type�items�replace�upper�strip)rrr-Zquery�hostZlength�k�vrrr� get_environKs8        zWSGIRequestHandler.get_environcCstjS)N)�sys�stderr)rrrr� get_stderrpszWSGIRequestHandler.get_stderrcCs||jjd�|_t|j�dkr<d|_d|_d|_|jd�dS|j�sHdSt |j|j |j �|j ��}||_ |j|jj��dS)zHandle a single HTTP requestiiri�N)Zrfile�readlineZraw_requestline�lenZ requestliner*r,Z send_errorZ parse_requestr Zwfiler;r8rZrunr(r!)rZhandlerrrr�handless zWSGIRequestHandler.handleN)rrr� __version__r+r8r;r>rrrrrGs%cCsvddlm}|�}td|d�t|d�t|j��}x$|D]\}}t|dt|�|d�q:W|dd g�|j�jd �gS) Nr)�StringIOz Hello world!)�file�=z200 OK� Content-Type�text/plain; charset=utf-8zutf-8)rCrD)�ior@�print�sortedr1�repr�getvalue�encode)�environZstart_responser@�stdout�hr6r7rrrr�s     cCs|||f|�}|j|�|S)zACreate a new WSGI server listening on `host` and `port` for `app`)r")r5�portZappZ server_classZ handler_classr(rrrr �s �__main__ri@zServing HTTP onrNr z...zhttp://localhost:8000/xyz?abc) r#Z http.serverrrr9Z urllib.parser.Zwsgiref.handlersr�platformrr?�__all__r+�versionr� sys_versionrr rrrr rZhttpdZsocketZ getsocknameZsarFZ webbrowser�openZhandle_requestrrrr�<module> s,    B