Skip to content

Commit ef14574

Browse files
committed
Explicit lambda argument types
1 parent 3940250 commit ef14574

File tree

3 files changed

+58
-22
lines changed

3 files changed

+58
-22
lines changed

src/main/java/org/libj/io/FileUtil.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public final class FileUtil {
4848
private static ConcurrentMap<Path,ArrayList<Filter<? super Path>>> deleteOnExit;
4949
private static final AtomicBoolean deleteOnExitMutex = new AtomicBoolean();
5050

51-
// FIXME: This synchronization seems so rigid
5251
private static void deleteOnExit(final Path path, final Filter<? super Path> filter, final Consumer<Throwable> onThrow) {
5352
if (!deleteOnExitMutex.get()) {
5453
synchronized (deleteOnExitMutex) {
@@ -116,7 +115,7 @@ public static File getTempDir() {
116115
return TEMP_DIR == null ? TEMP_DIR = new File(System.getProperty("java.io.tmpdir")) : TEMP_DIR;
117116
}
118117

119-
private static final Filter<Path> anyStreamFilter = p -> true;
118+
private static final Filter<Path> anyStreamFilter = (final Path p) -> true;
120119

121120
private static void deleteAll0(final Path path, final Filter<? super Path> filter) throws IOException {
122121
if (Files.isDirectory(path)) {
@@ -290,7 +289,7 @@ public static Path copyAll(final Path source, final Path target, final CopyOptio
290289
if (options[i] == StandardCopyOption.REPLACE_EXISTING && !deleteAll(target))
291290
throw new DirectoryNotEmptyException(target.toString());
292291

293-
Files.walk(source).forEach(rethrow(path -> {
292+
Files.walk(source).forEach(rethrow((final Path path) -> {
294293
final Path resolved = target.resolve(source.relativize(path));
295294
if (Files.isRegularFile(path))
296295
Files.copy(path, resolved, options);

src/main/java/org/libj/io/Streams.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -578,13 +578,14 @@ public static InputStream mergeAsync(final InputStream ... streams) throws IOExc
578578
}
579579

580580
private static InputStream merge(final boolean sync, final InputStream ... streams) throws IOException {
581-
if (streams.length == 0)
581+
final int len = streams.length;
582+
if (len == 0)
582583
throw new IllegalArgumentException("streams.length == 0");
583584

584-
if (streams.length == 1)
585+
if (len == 1)
585586
return streams[0];
586587

587-
final CountDownLatch latch = new CountDownLatch(streams.length + 1);
588+
final CountDownLatch latch = new CountDownLatch(len + 1);
588589
try (final PipedOutputStream pipedOut = new PipedOutputStream() {
589590
@Override
590591
public void close() throws IOException {
@@ -595,8 +596,8 @@ public void close() throws IOException {
595596
}
596597
}) {
597598
final InputStream pipedIn = new PipedInputStream(pipedOut, DEFAULT_SOCKET_BUFFER_SIZE);
598-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
599-
pipe(streams[i], pipedOut, false, sync, p -> {
599+
for (int i = 0; i < len; ++i) { // [A]
600+
pipe(streams[i], pipedOut, false, sync, (final IOException p) -> {
600601
try {
601602
pipedOut.close();
602603
}

src/main/java/org/libj/io/TeeOutputStream.java

+50-14
Original file line numberDiff line numberDiff line change
@@ -24,30 +24,38 @@
2424
* {@link OutputStream} that delegates its method calls to an array of output streams.
2525
*/
2626
public class TeeOutputStream extends OutputStream {
27+
private final OutputStream stream;
2728
private final OutputStream[] streams;
29+
private final int len;
2830

2931
/**
3032
* Construct a new {@link TeeOutputStream} with the specified {@link OutputStream} instances.
3133
* <p>
3234
* Streams will be written to in the order of the provided array.
3335
*
34-
* @param streams The streams to which this stream's method calls will be delegated.
35-
* @throws NullPointerException If {@code streams} is null or empty, or if any stream in the {@code streams} array is null.
36+
* @param stream The first stream to which this stream's method calls will be delegated.
37+
* @param streams The other streams to which this stream's method calls will be delegated.
38+
* @throws NullPointerException If {@code stream} or {@code streams} is null, or if any stream in the {@code streams} array is null.
3639
*/
37-
public TeeOutputStream(final OutputStream ... streams) {
38-
if (Objects.requireNonNull(streams).length == 0)
39-
throw new IllegalArgumentException("Empty array");
40-
41-
for (int i = 0, i$ = streams.length; i < i$; ++i) // [A]
42-
Objects.requireNonNull(streams[i], "member at index " + i + " is null");
43-
40+
public TeeOutputStream(final OutputStream stream, final OutputStream ... streams) {
41+
this.stream = Objects.requireNonNull(stream, "member at index 0 is null");;
4442
this.streams = streams;
43+
this.len = streams.length;
44+
for (int i = 0; i < len; ++i) // [A]
45+
Objects.requireNonNull(streams[i], "member at index " + (i + 1) + " is null");
4546
}
4647

4748
@Override
4849
public void write(final int b) throws IOException {
4950
IOException exception = null;
50-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
51+
try {
52+
stream.write(b);
53+
}
54+
catch (final IOException e) {
55+
exception = e;
56+
}
57+
58+
for (int i = 0; i < len; ++i) { // [A]
5159
try {
5260
streams[i].write(b);
5361
}
@@ -66,7 +74,14 @@ public void write(final int b) throws IOException {
6674
@Override
6775
public void write(final byte[] b) throws IOException {
6876
IOException exception = null;
69-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
77+
try {
78+
stream.write(b);
79+
}
80+
catch (final IOException e) {
81+
exception = e;
82+
}
83+
84+
for (int i = 0; i < len; ++i) { // [A]
7085
try {
7186
streams[i].write(b);
7287
}
@@ -85,7 +100,14 @@ public void write(final byte[] b) throws IOException {
85100
@Override
86101
public void write(final byte[] b, final int off, final int len) throws IOException {
87102
IOException exception = null;
88-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
103+
try {
104+
stream.write(b, off, len);
105+
}
106+
catch (final IOException e) {
107+
exception = e;
108+
}
109+
110+
for (int i = 0; i < len; ++i) { // [A]
89111
try {
90112
streams[i].write(b, off, len);
91113
}
@@ -104,7 +126,14 @@ public void write(final byte[] b, final int off, final int len) throws IOExcepti
104126
@Override
105127
public void flush() throws IOException {
106128
IOException exception = null;
107-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
129+
try {
130+
stream.flush();
131+
}
132+
catch (final IOException e) {
133+
exception = e;
134+
}
135+
136+
for (int i = 0; i < len; ++i) { // [A]
108137
try {
109138
streams[i].flush();
110139
}
@@ -123,7 +152,14 @@ public void flush() throws IOException {
123152
@Override
124153
public void close() throws IOException {
125154
IOException exception = null;
126-
for (int i = 0, i$ = streams.length; i < i$; ++i) { // [A]
155+
try {
156+
stream.close();
157+
}
158+
catch (final IOException e) {
159+
exception = e;
160+
}
161+
162+
for (int i = 0; i < len; ++i) { // [A]
127163
try {
128164
streams[i].close();
129165
}

0 commit comments

Comments
 (0)