[Tomcat 8.5 소스 분석][3]간단 한 HTTP 서버

위의 두 글 을 통 해 우 리 는 HTTP\SOCK\TCP\IP 간 의 관계 와 차 이 를 알 게 되 었 습 니 다.그 다음 에 우 리 는 손 으로 HTTP 서버 를 씁 니 다.
      우선,저 희 는 HttpServer 클래스 를 정의 합 니 다.이 클래스 는 주로 ServerSocket 을 만 드 는 데 사 용 됩 니 다.요청 이 있 을 때 accept()방법 으로 소켓-Socket 대상 을 만 든 다음 Socket 대상 의 입 출력 흐름 을 통 해 요청 데 이 터 를 읽 고 요청 결 과 를 되 돌려 줍 니 다.봉 인 된 입력 흐름 대상 은 Request 이 고 봉 인 된 출력 흐름 대상 은 Response 이 며 마지막 으로 입력 한 요청 에./shutdown 이 포함 되면 서버 를 닫 습 니 다.
     코드 는 다음 과 같 습 니 다:HttpServer 클래스
package cn.tomcat;

import java.io.*;
import java.net.ServerSocket;
import java.net.Socket;

/**
 * @description:
 * @author: gongqi
 * @create: 2018/11/07 15:09
 */
public class HttpServer {
    //       
    private boolean shutdown = false;
    //      
    private Integer port = 9011;
    //        
    public static final String WEB_ROOT = System.getProperty("user.dir") + File.separator + "webroot";
    //       
    private static final String SHUTDOWN_CMD = "./shutdown";

    
    /**
    *    
    */
    public static void main(String[] args) {
        HttpServer server = new HttpServer();
        server.await();
    }
    
    /**
    *    
    */
    public void await() {

        //
        ServerSocket serverSocket = null;
        try {
            //    ServerSocket         
            serverSocket = new ServerSocket(port);
        } catch (IOException e) {
            e.printStackTrace();
        }

        //                   
        while (!shutdown) {

            Socket socket;
            InputStream inputStream;
            OutputStream outputStream;

            System.out.println(WEB_ROOT);
            //
            try {
                //          
                //              Socket  
                socket = serverSocket.accept();
                //     
                inputStream = socket.getInputStream();
                //     
                outputStream = socket.getOutputStream();
                
                //     
                Request request = new Request(inputStream);
                request.parse();
                
                //     
                Response response = new Response(outputStream);
                response.setRequest(request);
                response.sendStaticResource();
                //    Socket  
                socket.close();

                shutdown = SHUTDOWN_CMD.equals(request.getUri());
            } catch (Exception e) {
                e.printStackTrace();
            }
        }

    }
}
Request 
package cn.tomcat;


import java.io.IOException;
import java.io.InputStream;

/**
 * @description:
 * @author: gongqi
 * @create: 2018/11/07 16:20
 */
public class Request {

    private InputStream input;
    private String uri;

    public Request(InputStream input) {
        this.input = input;
    }

    public void parse() {
        //
        StringBuffer request = new StringBuffer(2048);
        int i;
        byte[] buffer = new byte[2048];
        try {
            //       2048 byte,        2048 
            i = input.read(buffer);
        } catch (IOException e) {
            e.printStackTrace();
            i = -1;
        }
        //  byte  ,             StringBuffer
        for (int j = 0; j < i; j++) {
            request.append((char)buffer[j]);
        }
        //        
        System.out.println(request.toString());
        uri = parseUri(request.toString());
    }
    

    private String parseUri(String requestString) {
        int index1, index2;
        index1 = requestString.indexOf(' ');
        if (index1 != -1) {
            index2 = requestString.indexOf(' ', index1 + 1);
            if (index2 > index1) {
                return requestString.substring(index1 + 1, index2);

            }
        }
        return null;
    }

    public String getUri() {
        return uri;
    }


}

 
Response 클래스:
package cn.tomcat;

import java.io.*;

/**
 * @description:
 * @author: gongqi
 * @create: 2018/11/07 16:36
 */
public class Response {

    private static final int BUFFER_SIZE = 1024;
    private Request request;
    private OutputStream output;

    public Response(OutputStream output) {
        this.output = output;
    }

    public void setRequest(Request request) {
        this.request = request;
    }


    public void sendStaticResource() throws IOException {
        byte[] bytes = new byte[BUFFER_SIZE];
        File file = new File(HttpServer.WEB_ROOT + request.getUri());
        if (file.exists()) {
            FileInputStream fileInputStream = null;
            try {
                fileInputStream = new FileInputStream(file);
                int ch = fileInputStream.read(bytes, 0, BUFFER_SIZE);
                while (ch != -1) {
                    output.write(bytes, 0, ch);
                    ch=fileInputStream.read(bytes,0,BUFFER_SIZE);
                }
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } finally {
                if (fileInputStream != null) {
                    fileInputStream.close();
                }
            }
        } else {
            String mesg = "HTTP/1.1 404 File not found\r
" + "Content-Type: text/html\r
" + "Content-Length: 23\r
" + "\r
" + "

File not found

"; // try { output.write(mesg.getBytes()); } catch (IOException e) { e.printStackTrace(); } } } }

대응 하 는 HTML:



    


, !


 
이렇게 간단 한 HTTP 서버 를 다 썼 습 니 다.가 져 가서 뛰 어 보 세 요.하하 하!!

좋은 웹페이지 즐겨찾기