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
|
/*
* Copyright (c) 2010, 2011, 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 6979009
* @summary Ensure ClosedByInterruptException is thrown when I/O operation
* interrupted by Thread.interrupt
* @key randomness
*/
import java.io.*;
import java.util.Random;
import java.nio.ByteBuffer;
import java.nio.channels.*;
public class ClosedByInterrupt {
static final int K = 1024;
static final Random rand = new Random();
static volatile boolean failed;
public static void main(String[] args) throws Exception {
File f = File.createTempFile("blah", null);
f.deleteOnExit();
// create 1MB file.
byte[] b = new byte[K*K];
rand.nextBytes(b);
ByteBuffer bb = ByteBuffer.wrap(b);
try (FileChannel fc = new FileOutputStream(f).getChannel()) {
while (bb.hasRemaining())
fc.write(bb);
}
// test with 1-16 concurrent threads
for (int i=1; i<=16; i++) {
System.out.format("%d thread(s)%n", i);
test(f, i);
if (failed)
break;
}
if (failed)
throw new RuntimeException("Test failed");
}
/**
* Starts "nThreads" that do I/O on the given file concurrently. Continuously
* interrupts one of the threads to cause the file to be closed and
* ClosedByInterruptException to be thrown. The other threads should "fail" with
* ClosedChannelException (or the more specific AsynchronousCloseException).
*/
static void test(File f, int nThreads) throws Exception {
try (FileChannel fc = new RandomAccessFile(f, "rwd").getChannel()) {
Thread[] threads = new Thread[nThreads];
// start threads
for (int i=0; i<nThreads; i++) {
boolean interruptible = (i==0);
ReaderWriter task = new ReaderWriter(fc, interruptible);
Thread t = new Thread(task);
t.start();
threads[i] = t;
}
// give time for threads to start
Thread.sleep(500 + rand.nextInt(1000));
// interrupt thread until channel is closed
while (fc.isOpen()) {
threads[0].interrupt();
Thread.sleep(rand.nextInt(50));
}
// wait for test to finish
for (int i=0; i<nThreads; i++) {
threads[i].join();
}
}
}
/**
* A task that continuously reads or writes to random areas of a file
* until the channel is closed. An "interruptible" task expects the
* channel to be closed by an interupt, a "non-interruptible" thread
* does not.
*/
static class ReaderWriter implements Runnable {
final FileChannel fc;
final boolean interruptible;
final boolean writer;
ReaderWriter(FileChannel fc, boolean interruptible) {
this.fc = fc;
this.interruptible = interruptible;
this.writer = rand.nextBoolean();
}
public void run() {
ByteBuffer bb = ByteBuffer.allocate(K);
if (writer)
rand.nextBytes(bb.array());
try {
for (;;) {
long position = rand.nextInt(K*K - bb.capacity());
if (writer) {
bb.position(0).limit(bb.capacity());
fc.write(bb, position);
} else {
bb.clear();
fc.read(bb, position);
}
if (!interruptible) {
// give the interruptible thread a chance
try {
Thread.sleep(rand.nextInt(50));
} catch (InterruptedException e) {
unexpected(e);
}
}
}
} catch (ClosedByInterruptException e) {
if (interruptible) {
if (Thread.interrupted()) {
expected(e + " thrown and interrupt status set");
} else {
unexpected(e + " thrown but interrupt status not set");
}
} else {
unexpected(e);
}
} catch (ClosedChannelException e) {
if (interruptible) {
unexpected(e);
} else {
expected(e);
}
} catch (Exception e) {
unexpected(e);
}
}
}
static void expected(Exception e) {
System.out.format("%s (expected)%n", e);
}
static void expected(String msg) {
System.out.format("%s (expected)%n", msg);
}
static void unexpected(Exception e) {
System.err.format("%s (not expected)%n", e);
failed = true;
}
static void unexpected(String msg) {
System.err.println(msg);
failed = true;
}
}
|