File: SocketChannelStreams.java

package info (click to toggle)
openjdk-25 25.0.1%2B8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 825,408 kB
  • sloc: java: 5,585,680; cpp: 1,333,948; xml: 1,321,242; ansic: 488,034; asm: 404,003; objc: 21,088; sh: 15,106; javascript: 13,265; python: 8,319; makefile: 2,518; perl: 357; awk: 351; pascal: 103; exp: 83; sed: 72; jsp: 24
file content (480 lines) | stat: -rw-r--r-- 15,352 bytes parent folder | download | duplicates (4)
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
/*
 * Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
 *
 * This code is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License version 2 only, as
 * published by the Free Software Foundation.
 *
 * This code is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
 * version 2 for more details (a copy is included in the LICENSE file that
 * accompanied this code).
 *
 * You should have received a copy of the GNU General Public License version
 * 2 along with this work; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
 * or visit www.oracle.com if you need additional information or have any
 * questions.
 */

/* @test
 * @bug 8279339
 * @run testng SocketChannelStreams
 * @summary Exercise InputStream/OutputStream returned by Channels.newXXXStream
 *    when channel is a SocketChannel
 */

import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.nio.channels.Channels;
import java.nio.channels.IllegalBlockingModeException;
import java.nio.channels.ServerSocketChannel;
import java.nio.channels.SocketChannel;
import java.util.Objects;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

import org.testng.annotations.*;
import static org.testng.Assert.*;

@Test
public class SocketChannelStreams {
    private ScheduledExecutorService executor;

    @BeforeClass()
    public void init() {
        executor = Executors.newSingleThreadScheduledExecutor();
    }

    @AfterClass
    public void finish() {
        executor.shutdown();
    }

    /**
     * Test read when bytes are available.
     */
    public void testRead1() throws Exception {
        withConnection((sc, peer) -> {
            write(peer, 99);
            int n = Channels.newInputStream(sc).read();
            assertEquals(n, 99);
        });
    }

    /**
     * Test read blocking before bytes are available.
     */
    public void testRead2() throws Exception {
        withConnection((sc, peer) -> {
            scheduleWrite(peer, 99, 1000);
            int n = Channels.newInputStream(sc).read();
            assertEquals(n, 99);
        });
    }

    /**
     * Test read after peer has closed connection.
     */
    public void testRead3() throws Exception {
        withConnection((sc, peer) -> {
            peer.close();
            int n = Channels.newInputStream(sc).read();
            assertEquals(n, -1);
        });
    }

    /**
     * Test read blocking before peer closes connection.
     */
    public void testRead4() throws Exception {
        withConnection((sc, peer) -> {
            scheduleClose(peer, 1000);
            int n = Channels.newInputStream(sc).read();
            assertEquals(n, -1);
        });
    }

    /**
     * Test async close of channel when thread blocked in read.
     */
    public void testRead5() throws Exception {
        withConnection((sc, peer) -> {
            scheduleClose(sc, 2000);
            InputStream in = Channels.newInputStream(sc);
            expectThrows(IOException.class, () -> in.read());
        });
    }

    /**
     * Test async close of input stream, when thread blocked in read.
     */
    public void testRead6() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            scheduleClose(in, 2000);
            expectThrows(IOException.class, () -> in.read());
        });
    }

    /**
     * Test interrupt status set before read.
     */
    public void testRead7() throws Exception {
        withConnection((sc, peer) -> {
            Thread.currentThread().interrupt();
            try {
                InputStream in = Channels.newInputStream(sc);
                expectThrows(IOException.class, () -> in.read());
            } finally {
                Thread.interrupted();  // clear interrupt
            }
            assertFalse(sc.isOpen());
        });
    }

    /**
     * Test interrupt of thread blocked in read.
     */
    public void testRead8() throws Exception {
        withConnection((sc, peer) -> {
            Future<?> interrupter = scheduleInterrupt(Thread.currentThread(), 2000);
            try {
                InputStream in = Channels.newInputStream(sc);
                expectThrows(IOException.class, () -> in.read());
            } finally {
                interrupter.cancel(true);
                Thread.interrupted();  // clear interrupt
            }
            assertFalse(sc.isOpen());
        });
    }

    /**
     * Test that read is untimed when SO_TIMEOUT is set on the Socket adaptor.
     */
    public void testRead9() throws Exception {
        withConnection((sc, peer) -> {
            sc.socket().setSoTimeout(100);
            scheduleWrite(peer, 99, 2000);
            // read should block until bytes are available
            int b = Channels.newInputStream(sc).read();
            assertTrue(b == 99);
        });
    }

    /**
     * Test write.
     */
    public void testWrite1() throws Exception {
        withConnection((sc, peer) -> {
            OutputStream out = Channels.newOutputStream(sc);
            out.write(99);
            int n = read(peer);
            assertEquals(n, 99);
        });
    }

    /**
     * Test async close of channel when thread blocked in write.
     */
    public void testWrite2() throws Exception {
        withConnection((sc, peer) -> {
            scheduleClose(sc, 2000);
            expectThrows(IOException.class, () -> {
                OutputStream out = Channels.newOutputStream(sc);
                byte[] data = new byte[64*1000];
                while (true) {
                    out.write(data);
                }
            });
        });
    }

    /**
     * Test async close of output stream when thread blocked in write.
     */
    public void testWrite3() throws Exception {
        withConnection((sc, peer) -> {
            OutputStream out = Channels.newOutputStream(sc);
            scheduleClose(out, 2000);
            expectThrows(IOException.class, () -> {
                byte[] data = new byte[64*1000];
                while (true) {
                    out.write(data);
                }
            });
        });
    }

    /**
     * Test interrupt status set before write.
     */
    public void testWrite4() throws Exception {
        withConnection((sc, peer) -> {
            Thread.currentThread().interrupt();
            try {
                OutputStream out = Channels.newOutputStream(sc);
                expectThrows(IOException.class, () -> out.write(99));
            } finally {
                Thread.interrupted();  // clear interrupt
            }
            assertFalse(sc.isOpen());
        });
    }

    /**
     * Test interrupt of thread blocked in write.
     */
    public void testWrite5() throws Exception {
        withConnection((sc, peer) -> {
            Future<?> interrupter = scheduleInterrupt(Thread.currentThread(), 2000);
            try {
                expectThrows(IOException.class, () -> {
                    OutputStream out = Channels.newOutputStream(sc);
                    byte[] data = new byte[64*1000];
                    while (true) {
                        out.write(data);
                    }
                });
            } finally {
                interrupter.cancel(true);
                Thread.interrupted();  // clear interrupt
            }
            assertFalse(sc.isOpen());
        });
    }

    /**
     * Test read when another thread is blocked in write. The read should
     * complete immediately.
     */
    public void testConcurrentReadWrite1() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);

            // block thread in write
            fork(() -> {
                var data = new byte[64*1024];
                for (;;) {
                    out.write(data);
                }
            });
            Thread.sleep(1000); // give writer time to block

            // test read, should not be blocked by writer thread
            write(peer, 99);
            int n = in.read();
            assertEquals(n, 99);
        });
    }

    /**
     * Test read when another thread is blocked in write. The read should
     * block until bytes are available.
     */
    public void testConcurrentReadWrite2() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);

            // block thread in write
            fork(() -> {
                var data = new byte[64*1024];
                for (;;) {
                    out.write(data);
                }
            });
            Thread.sleep(1000); // give writer time to block

            // test read, should not be blocked by writer thread
            scheduleWrite(peer, 99, 500);
            int n = in.read();
            assertEquals(n, 99);
        });
    }

    /**
     * Test writing when another thread is blocked in read.
     */
    public void testConcurrentReadWrite3() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);

            // block thread in read
            fork(() -> {
                in.read();
            });
            Thread.sleep(100); // give reader time to block

            // test write, should not be blocked by reader thread
            out.write(99);
            int n = read(peer);
            assertEquals(n, 99);
        });
    }

    /**
     * Test read/write when channel configured non-blocking.
     */
    public void testIllegalBlockingMode() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);

            sc.configureBlocking(false);
            expectThrows(IllegalBlockingModeException.class, () -> in.read());
            expectThrows(IllegalBlockingModeException.class, () -> out.write(99));
        });
    }

    /**
     * Test NullPointerException.
     */
    public void testNullPointerException() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);

            expectThrows(NullPointerException.class, () -> in.read(null));
            expectThrows(NullPointerException.class, () -> in.read(null, 0, 0));

            expectThrows(NullPointerException.class, () -> out.write(null));
            expectThrows(NullPointerException.class, () -> out.write(null, 0, 0));
        });
    }

    /**
     * Test IndexOutOfBoundsException.
     */
    public void testIndexOutOfBoundsException() throws Exception {
        withConnection((sc, peer) -> {
            InputStream in = Channels.newInputStream(sc);
            OutputStream out = Channels.newOutputStream(sc);
            byte[] ba = new byte[100];

            expectThrows(IndexOutOfBoundsException.class, () -> in.read(ba, -1, 1));
            expectThrows(IndexOutOfBoundsException.class, () -> in.read(ba, 0, -1));
            expectThrows(IndexOutOfBoundsException.class, () -> in.read(ba, 0, 1000));
            expectThrows(IndexOutOfBoundsException.class, () -> in.read(ba, 1, 100));

            expectThrows(IndexOutOfBoundsException.class, () -> out.write(ba, -1, 1));
            expectThrows(IndexOutOfBoundsException.class, () -> out.write(ba, 0, -1));
            expectThrows(IndexOutOfBoundsException.class, () -> out.write(ba, 0, 1000));
            expectThrows(IndexOutOfBoundsException.class, () -> out.write(ba, 1, 100));
        });
    }

    // -- test infrastructure --

    private interface ThrowingTask {
        void run() throws Exception;
    }

    private interface ThrowingBiConsumer<T, U> {
        void accept(T t, U u) throws Exception;
    }

    /**
     * Invokes the consumer with a connected pair of socket channels.
     */
    private static void withConnection(ThrowingBiConsumer<SocketChannel, SocketChannel> consumer)
        throws Exception
    {
        var loopback = InetAddress.getLoopbackAddress();
        try (ServerSocketChannel listener = ServerSocketChannel.open()) {
            listener.bind(new InetSocketAddress(loopback, 0));
            try (SocketChannel sc = SocketChannel.open(listener.getLocalAddress())) {
                try (SocketChannel peer = listener.accept()) {
                    consumer.accept(sc, peer);
                }
            }
        }
    }

    /**
     * Forks a thread to execute the given task.
     */
    private Future<?> fork(ThrowingTask task) {
        ExecutorService pool = Executors.newFixedThreadPool(1);
        try {
            return pool.submit(() -> {
                task.run();
                return null;
            });
        } finally {
            pool.shutdown();
        }
    }

    /**
     * Read a byte from the given socket channel.
     */
    private int read(SocketChannel sc) throws IOException {
        return sc.socket().getInputStream().read();
    }

    /**
     * Write a byte to the given socket channel.
     */
    private void write(SocketChannel sc, int b) throws IOException {
        sc.socket().getOutputStream().write(b);
    }

    /**
     * Writes the given data to the socket channel after a delay.
     */
    private Future<?> scheduleWrite(SocketChannel sc, byte[] data, long delay) {
        return schedule(() -> {
            try {
                sc.socket().getOutputStream().write(data);
            } catch (IOException ioe) { }
        }, delay);
    }

    /**
     * Writes a byte to the socket channel after a delay.
     */
    private Future<?> scheduleWrite(SocketChannel sc, int b, long delay) {
        return scheduleWrite(sc, new byte[] { (byte)b }, delay);
    }

    /**
     * Closes the given object after a delay.
     */
    private Future<?> scheduleClose(Closeable c, long delay) {
        return schedule(() -> {
            try {
                c.close();
            } catch (IOException ioe) { }
        }, delay);
    }

    /**
     * Interrupts the given Thread after a delay.
     */
    private Future<?> scheduleInterrupt(Thread t, long delay) {
        return schedule(() -> t.interrupt(), delay);
    }

    /**
     * Schedules the given task to run after a delay.
     */
    private Future<?> schedule(Runnable task, long delay) {
        return executor.schedule(task, delay, TimeUnit.MILLISECONDS);
    }
}