blob: 273ddc54df729619cbddffb2bc754e957468efac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
|
package io.skas.melbjvm.nio2;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.AsynchronousFileChannel;
import java.nio.channels.CompletionHandler;
import java.nio.file.Path;
import java.nio.file.StandardOpenOption;
/**
* @author Szymon Szukalski [szymon.szukalski@gmail.com]
*/
public class AsynchronousFileReader implements CompletionHandler<Integer, ByteBuffer> {
public static final Logger LOG = LoggerFactory.getLogger(AsynchronousFileReader.class);
public static final int BYTES_IN_MEGABYTE = 1048576;
private Long position;
private Path path;
private ByteBuffer buffer;
private AsynchronousFileChannel asynchronousFileChannel;
public AsynchronousFileReader(Path path) {
this.position = 0L;
this.path = path;
this.buffer = ByteBuffer.allocate(BYTES_IN_MEGABYTE);
LOG.info("reading {}...", path);
this.openChannel();
this.readChannel(0);
}
private void openChannel() {
try {
this.asynchronousFileChannel = AsynchronousFileChannel.open(path, StandardOpenOption.READ);
} catch (IOException e) {
e.printStackTrace();
}
}
private void closeChannel() {
try {
this.asynchronousFileChannel.close();
} catch (IOException e) {
e.printStackTrace();
}
}
private void readChannel(long position) {
asynchronousFileChannel.read(buffer, position, buffer, this);
}
@Override
public void completed(Integer result, ByteBuffer buffer) {
if (result < 0) {
closeChannel();
LOG.debug("read: {} megabytes", position / BYTES_IN_MEGABYTE);
} else {
position += result;
if (buffer.hasRemaining()) {
readChannel(position);
} else {
buffer.flip();
// Do something with the content of the buffer
buffer.clear();
this.readChannel(position);
}
}
}
@Override
public void failed(Throwable exc, ByteBuffer buffer) {
LOG.error("read failed: {}", exc.getMessage());
exc.printStackTrace();
}
}
|