Pipe

Programming/Java NIO 2015. 9. 15. 17:36

Java NIO Pipe는 두 스레드 간의 단방향 데이터 연결이다. Pipe는 소스 채널과 싱크 채널을 갖고있다. 싱크 채널에 데이터를 기록한다. 이 데이터는 소스 채널로부터 읽혀질 수 있다.


다음 Pipe의 원리를 보여주는 그림이 있다:

Java NIO: Pipe Internals

Java NIO: Pipe 내부

Creating a Pipe


Pipe.open() 메소드를 호출하여 Pipe를 연다. 다음 보는 방법이다:

Pipe pipe = Pipe.open();

Writing to a Pipe


Pipe에 기록하기 위해 싱크 채널에 접근해야만 한다. 다음 수행 방법이 있다:

Pipe.SinkChannel sinkChannel = pipe.sink();

아래와 같이, SinkChannel의 write() 메소드를 호출하여 기록한다:

String newData = "New String to write to file..." + System.currentTimeMillis();

ByteBuffer buf = ByteBuffer.allocate(48);
buf.clear();
buf.put(newData.getBytes());

buf.flip();

while(buf.hasRemaining()) {
    sinkChannel.write(buf);
}

Reading from a Pipe


Pipe로부터 읽기 위해 소스 채널에 접근해야만 한다. 다음 수행 방법이 있다:

Pipe.SourceChannel sourceChannel = pipe.source();

아래와 같이, 소스 채널로부터 읽기 위해 read() 메소드를 호출한다:

ByteBuffer buf = ByteBuffer.allocate(48);

int bytesRead = inChannel.read(buf); 

read() 메소드에 의해 반환된 int는 버퍼에 얼마만큼의 bytes를 읽었는지 말해준다.



<원문 출처>


'Programming > Java NIO' 카테고리의 다른 글

Path  (0) 2015.09.15
vs. IO  (0) 2015.09.15
DatagramChannel  (0) 2015.09.11
ServerSocketChannel  (0) 2015.09.10
SocketChannel  (0) 2015.09.10
Posted by 레미파
,