NIO์ tcp๋ blocking, non-blocking, asyncronized์ ์๋ก ๊ตฌํ๋ฐฉ์์ด ์ ํ ๋ค๋ฆ
๋๋ค.
Blocking Socket
SocketChannel
ServerSocketChannel : buffer X blocking ๋ฐฉ์
SocketChannel : buffer O, blocking, non-blocking ๋ฐฉ์
Connection
Server
ServerSocket์ ์์ฑํ ๋ค blocking์ผ๋ก ์ค์ ํด์ค๋๋ค.
ServerSocketChannel serverSocketChannel = ServerSocketChannel.open(INET);
serverSocketChannel.configureBlocking(true);
serverSocketChannel.bind(new InetSocketAddress(8877));
ํด๋ผ์ด์ธํธ์ ์ฐ๊ฒฐ์ ์น์ธํ๊ธฐ ์ํ accept()๋ฅผ ์คํํฉ๋๋ค.
SocketChannel accept = serverSocketChannel.accept();
์ฐ๊ฒฐ์ ์ข
๋ฃํ๊ณ ์ถ์ ๊ฒฝ์ฐ close๋ฅผ ์คํํด ์ค๋๋ค.
serverSocketChannel.close();
Client
Socket์ ์์ฑํ ๋ค blocking์ผ๋ก ์ค์ ํด์ค๋๋ค.
SocketChannel socketChannel = SocketChannel.open(INET);
socketChannel.configureBlocking(true);
์๋ฒ์ ์ฐ๊ฒฐ ์์ฒญ์ ๋ณด๋ด๊ธฐ ์ํด connet()๋ฅผ ์คํํฉ๋๋ค.
socketChannel.connect(new InetSocketAddress("localhost", 8877));
์ฐ๊ฒฐ ์ข
๋ฃ๋ close๋ฅผ ์คํํด ์ค๋๋ค.
if (socketChannel.isConnected()) {
socketChannel.close();
}
how do code?
Server
public class Main {
public static void main(String[] args) throws IOException{
ServerSocketChannel serverSocketChannel = ServerSocketChannel.open(INET);
serverSocketChannel.configureBlocking(true);
serverSocketChannel.bind(new InetSocketAddress(8877));
while (true) {
SocketChannel socketChannel = serverSocketChannel.accept();
InetSocketAddress inetSocketAddress = (InetSocketAddress) socketChannel.getRemoteAddress();
System.out.println("CONNECTED !!! " + inetSocketAddress.getHostName());
}
}
}
Client
public class Main {
public static void main(String[] args) throws IOException {
SocketChannel socketChannel = SocketChannel.open(INET);
socketChannel.configureBlocking(true);
socketChannel.connect(new InetSocketAddress("localhost", 8877));
System.out.println("COMPLETE CONNECT");
if (socketChannel.isConnected()) {
socketChannel.close();
System.out.println("COMPLETE CLOSE");
}
}
}
Data Communication
Client์ ์ฐ๊ฒฐ ์์ฒญ์ด Server์์ ์๋ฝ๋์๋ค๋ฉด, read(), write()๋ฅผ ์ด์ฉํด ํต์ ํ ์ ์์ต๋๋ค.
๋ชจ๋ ๋ฒํผ๋ฅผ ๊ฐ์ง๊ณ ์๊ธฐ ๋๋ฌธ์ ๋ฒํผ๋ฅผ ์ฌ์ฉํ์ฌ ๋ฐ์ดํฐ๋ฅผ ๊ตํํฉ๋๋ค.
Write
๋ฐ์ดํฐ ์ ์ก์ write๋ฅผ ์ฌ์ฉํ์ฌ ์ ์กํ๋ค.
๋ฐ์ดํธ์ฝ๋๋ก ์ ์กํ๋ฉด๋๋ค.
socketChannel.write(Charset.defaultCharset().encode("This is junny land"));
Read
์ ์ก๋ ๋ฐ์ดํฐ๋ฅผ ์ฝ์ด์ค๋ ๊ฒ์ Read๋ฅผ ์ฌ์ฉํ๋ค.
๋ฐ์ดํธ ์ฝ๋๋ก ๋ค์ด์จ ๊ฐ์ ์ฝ์ผ๋ฉด ๋๋ค.
ByteBuffer buffer = ByteBuffer.allocate(1024);
socketChannel.read(buffer);
buffer.flip();
String result = Charset.defaultCharset().decode(buffer).toString();
read๋ฅผ ํธ์ถํ ์์ ๋ถํฐ ์๋๋ฐฉ์ด ๋ฐ์ดํฐ๋ฅผ ๋ณด๋ด์ฃผ๊ธฐ์ ๊น์ง๋ ํญ์ Blocking์ํ๊ฐ ๋๋๋ฐ,
๋ธ๋กํน์ด ํด์ ๋๊ณ ์๋ต์ด ์ค๋ ๊ฒฝ์ฐ๋ ์ธ๊ฐ์ง ์
๋๋ค.
Thread Pool?
๋๊ธฐ ๋ฐฉ์์ ์๋ฒ ์ฑ๋์ read๋ ์๋ต์ ๊ธฐ๋ค๋ฆฌ๋ ๋์ blocking๋๊ธฐ ๋๋ฌธ์ ์์
์ด ๋๋๋ค.
์ด๋ฐ ๋ฌธ์ ๋๋ณ๋ ฌ ํ๋ก๊ทธ๋๋ฐ ๋ฐฉ์ ์ค Tread pool์ ์ด์ฉํ์ฌ ํด๊ฒฐํ ์ ์๋ค.
this.executorService = newFixedThreadPool(getRuntime().availableProcessors());
executorService์ ์ค๋ ๋ํ ์ ํฌ๊ธฐ๋ฅผ ์ง์ ํด ์ค๋ค
Runnable runnable = () -> {
CharBuffer answer = Charset.defaultCharset().decode(BUFFER);
System.out.println("READ ="+ answer);
};
executorService.submit(runnable);
Runnable์ ์คํํ ์์
์ ์์ฑํ ๋ค, executorService์ ๋ฑ๋กํด์ค๋ค