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 |
๋๊ธ