๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
๊ธ€์“ฐ๋Š” ๊ฟ€๋ฒŒ ๐Ÿ

Dev Study #4 (feat. Design Pattern)

by soy๋ฏธ๋‹ˆ 2022. 2. 21.

 

 

Guarded Suspension

์“ฐ๋ ˆ๋“œ๋ฅผ ๊ธฐ๋‹ค๋ฆฌ๊ฒŒ ํ•˜์—ฌ ์ธ์Šคํ„ด์Šค์˜ ์•ˆ์ „์„ฑ์„ ์ง€ํ‚จ๋‹ค.

 

  • Request : ํ•˜๋‚˜์˜ ๋ฆฌํ€˜์ŠคํŠธ๋ฅผ ํ‘œํ˜„ํ•œ ํด๋ž˜์Šค
  • RequestQueue : ๋ฆฌํ€˜์ŠคํŠธ๋ฅผ ์ˆœ์„œ๋Œ€๋กœ ๋น„์ถ•ํ•ด๋‘๋Š” ํด๋ž˜์Šค
  • ClientThread : ๋ฆฌํ€˜์ŠคํŠธ๋ฅผ ๋‚ด์ฃผ๋Š” ํด๋ž˜์Šค
  • ServerThread : ๋ฆฌํ€˜์ŠคํŠธ๋ฅผ ๋ฐ›์•„ ํ•ด์„ํ•˜๋Š” ํด๋ž˜์Šค
  • Main : ๋™์ž‘ ํ…Œ์ŠคํŠธ์šฉ ํด๋ž˜์Šค

 

 

 

Request ํด๋ž˜์Šค

  • ClientThread ์—์„œ ServerThread ์— ๊ฑด๋„ค์ง„ ์ธ์Šคํ„ด์Šค
  • name ํ•„๋“œ๋ฅผ ๊ฐ€์ง„๋‹ค.
// Request ํด๋ž˜์Šค

public class Request {
    private final String name;
    public Request(String name) {
    	this.name = name;
    }
    public String getName() {
    	return name;
    }
    public String toString() {
    	return "[ Request " + name + " ]";
    }
}

 

 

 

RequestQueue ํด๋ž˜์Šค

  • Request ๋ฅผ ์ˆœ์„œ๋Œ€๋กœ ์ €์žฅํ•ด ๋†“์€ ํด๋ž˜์Šค (FIFO ๊ตฌ์กฐ)
  • Request ์ธ์Šคํ„ด์Šค๋ฅผ putRequest ๋กœ ๋ฐ€์–ด๋„ฃ๊ณ  ๊ทธ ์ˆœ์„œ๋Œ€๋กœ getRequest ๋กœ ๊บผ๋‚ด๋Š” ํด๋ž˜์Šค์ด๋‹ค.
  • getRequest
    • RequestQueue ์— ์ €์žฅ๋˜์–ด ์žˆ๋Š” Request ์ค‘์—์„œ ๊ฐ€์žฅ ์˜ค๋ž˜๋œ ๊ฒƒ์„ ํ•˜๋‚˜ ์„ ํƒํ•˜์—ฌ ๊ฐ’์„ ๊ณ ์นœ๋‹ค.
    • ๋งŒ์•ฝ ๋ฆฌํ€˜์ŠคํŠธ๊ฐ€ ํ•˜๋‚˜๋„ ์—†์œผ๋ฉด ๋ˆ„๊ตฐ๊ฐ€ ๋‹ค๋ฅธ ์“ฐ๋ ˆ๋“œ๊ฐ€ putRequest ํ•  ๋•Œ๊นŒ์ง€ ๊ธฐ๋‹ค๋ฆฐ๋‹ค.
  • putRequest
    • Request ๋ฅผ ํ•˜๋‚˜ ์ถ”๊ฐ€ํ•  ์ˆ˜ ์žˆ๋‹ค.
    • ์“ฐ๋ ˆ๋“œ๊ฐ€ RequestQueue ์— Request ์˜ ์ธ์Šคํ„ด์Šค๋ฅผ ์ถ”๊ฐ€ํ•  ๋•Œ ํ˜ธ์ถœ๋œ๋‹ค.

 

import java.util.LinkedList;

public class RequestQueue {
    private final LinkedList queue = new LinkedList();
    public synchronized Request getRequest() {
    	while (queue.size() <= 0) {
            try {
            	wait();
            } catch (InterruptedException e) {
            }
        } return (Request)queue.removeFirst(); // ํ•˜๋ ค๋Š” ์ฒ˜๋ฆฌ
    }
    public synchronized void putRequest(Request request) {
    	queue.addLast(request);
        notifyAll();
    }
}

 

  • wait ํ•˜๊ณ  ์žˆ๋Š” ์“ฐ๋ ˆ๋“œ๋Š” notify / notifyAll ๋  ๋•Œ๋งˆ๋‹ค ๊ฐ€๋“œ ์กฐ๊ฑด์„ ํ…Œ์ŠคํŠธํ•œ๋‹ค.
  • ์•„๋ฌด๋ฆฌ notify / notifyAll ๋˜์–ด๋„ ๊ฐ€๋“œ ์กฐ๊ฑด์ด ๋งŒ์กฑ๋˜์ง€ ์•Š์œผ๋ฉด ์“ฐ๋ ˆ๋“œ๋Š” while ์— ์˜ํ•ด ๋‹ค์‹œ wait ํ•˜๊ฒŒ ๋œ๋‹ค.

 

 

ClientThread ํด๋ž˜์Šค

  • ClientThread ํด๋ž˜์Šค๋Š” Request ๋ฅผ ๊บผ๋‚ด๋Š” ์“ฐ๋ ˆ๋“œ๋ฅผ ๋‚˜ํƒ€๋‚ด๋Š” ํด๋ž˜์Šค
  • RequestQueue ์˜ ์ธ์Šคํ„ด์Šค๋ฅผ ๊ธฐ๋‹ค๋ ค ๊ทธ๊ฒƒ์— ๋Œ€ํ•ด Request ๋ฅผ ๋ช‡ ๋ฒˆ์ด๊ณ  putRequest ํ•œ๋‹ค.
  • Request ๋ฅผ ๊บผ๋‚ด๋Š” (putRequest) ํƒ€์ด๋ฐ์„ ๋ฐ”๊พธ๊ธฐ ์œ„ํ•ด java.util.Random ํด๋ž˜์Šค๋ฅผ ์‚ฌ์šฉํ•˜์—ฌ 0 ์ด์ƒ 1000 ๋ฏธ๋งŒ ๋ฒ”์œ„์˜ ๋‚œ์ˆ˜๋ฅผ ๋ฐœ์ƒ์‹œ์ผœ์„œ ๊ทธ ์‹œ๊ฐ„ ๋™์•ˆ๋งŒ sleep ํ•˜๊ณ  ์žˆ๋‹ค.

 

import java.util.Random;

public class ClientThread extends Thread {
    private Random random;
    private RequestQueue requestQueue;
    public ClientThread(RequestQueue requestQueue, String name, long seed) {
    	super(name);
        this.requestQueue = requestQueue;
        this.random = new Random(seed);
    }
    public void run() {
    	for (int i = 0; i< 10000; i++) {
        	Request request = new Request("No." + i);
            System.out.println(Thread.currentThread().getName() + "requests " + request);
            requestQueue.putRequest(request);
            try {
            	Thread.sleep(random.nextInt(1000));
            } catch (InterruptedException e) {
            }
        }
    }
}

 

 

 

ServerThread ํด๋ž˜์Šค

  • getRequest ๋ฉ”์†Œ๋“œ๋กœ Request ๋ฅผ ํ•ด์„ํ•˜๋Š” ์“ฐ๋ ˆ๋“œ๋ฅผ ๋‚˜ํƒ€๋‚ด๋Š” ํด๋ž˜์Šค
  • RequestQueue ์˜ ์ธ์Šคํ„ด์Šค๋ฅผ ๊ฐ€์ง€๊ณ  ์žˆ๋‹ค.
  • ClientThread ์™€ ๊ฐ™์ด ServerThread ๋„ ๋‚œ์ˆ˜๋ฅผ ์‚ฌ์šฉํ•ด์„œ sleep ํ•˜๊ณ  ์žˆ๋‹ค.
import java.util.Random;

public class ServerThread extends Thread {
    private Random random;
    private RequestQueue requestQueue;
    public ServerThread(RequestQueue requestQueue, String name, long seed) {
    	super(name);
        this.requestQueue = requestQueue;
        this.random = new Random(seed);
    }
    public void run() {
    	for (int i = 0; i < 10000; i++){
        	Request request = requestQueue.getRequest();
            System.out.println(Thread.currentThread().getName() + "handles " + request);
            try {
            	Thread.sleep(random.nextInt(1000));
            } catch (InterruptedException e) {
            }
        }
    }
}

 

 

 

Main ํด๋ž˜์Šค

  • RequestQueue ์˜ ์ธ์Šคํ„ด์Šค(requestQueue) ๋ฅผ ๋งŒ๋“ค์–ด์„œ client ์™€ server ์— ๊ฑด๋„ค์ฃผ๊ณ  start ํ•œ๋‹ค.
public class Main {
    public static void main(String[] args) {
    	RequestQueue requestQueue = new RequestQueue();
        new ClientThread(requestQueue, "Alice", 3141592L).start(); // 3141592L ์€ ๋‚œ์ˆ˜
        new ServerThread(requestQueue, "Bobby", 6535897L).start(); // 6535897L ์€ ๋‚œ์ˆ˜
    }
}

 

 

'๊ธ€์“ฐ๋Š” ๊ฟ€๋ฒŒ ๐Ÿ' ์นดํ…Œ๊ณ ๋ฆฌ์˜ ๋‹ค๋ฅธ ๊ธ€

Dev Study #3 (feat. Design Pattern)  (0) 2022.02.18
Dev Study #2 (feat. JAVA)  (0) 2022.02.18
Dev Study #1  (0) 2022.02.16
[Book Review] ์ธ์ƒ์€ ์‹ค์ „์ด๋‹ค  (0) 2021.10.07

๋Œ“๊ธ€