Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
dce228fb
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
dce228fb
编写于
11月 09, 2010
作者:
A
alanb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6979009: (fc) FileChannel.read() fails to throw ClosedByInterruptException
Reviewed-by: forax, sherman, chegar
上级
e07ad74e
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
208 addition
and
18 deletion
+208
-18
src/share/classes/java/lang/Thread.java
src/share/classes/java/lang/Thread.java
+1
-1
src/share/classes/java/nio/channels/spi/AbstractInterruptibleChannel.java
...s/java/nio/channels/spi/AbstractInterruptibleChannel.java
+13
-11
src/share/classes/java/nio/channels/spi/AbstractSelector.java
...share/classes/java/nio/channels/spi/AbstractSelector.java
+4
-3
src/share/classes/sun/nio/ch/FileChannelImpl.java
src/share/classes/sun/nio/ch/FileChannelImpl.java
+10
-0
src/share/classes/sun/nio/ch/Interruptible.java
src/share/classes/sun/nio/ch/Interruptible.java
+3
-3
test/java/nio/channels/FileChannel/ClosedByInterrupt.java
test/java/nio/channels/FileChannel/ClosedByInterrupt.java
+177
-0
未找到文件。
src/share/classes/java/lang/Thread.java
浏览文件 @
dce228fb
...
...
@@ -958,7 +958,7 @@ class Thread implements Runnable {
Interruptible
b
=
blocker
;
if
(
b
!=
null
)
{
interrupt0
();
// Just to set the interrupt flag
b
.
interrupt
();
b
.
interrupt
(
this
);
return
;
}
}
...
...
src/share/classes/java/nio/channels/spi/AbstractInterruptibleChannel.java
浏览文件 @
dce228fb
...
...
@@ -88,7 +88,7 @@ public abstract class AbstractInterruptibleChannel
implements
Channel
,
InterruptibleChannel
{
private
Object
closeLock
=
new
Object
();
private
final
Object
closeLock
=
new
Object
();
private
volatile
boolean
open
=
true
;
/**
...
...
@@ -142,7 +142,7 @@ public abstract class AbstractInterruptibleChannel
// -- Interruption machinery --
private
Interruptible
interruptor
;
private
volatile
boolean
interrupted
=
false
;
private
volatile
Thread
interrupted
;
/**
* Marks the beginning of an I/O operation that might block indefinitely.
...
...
@@ -155,12 +155,12 @@ public abstract class AbstractInterruptibleChannel
protected
final
void
begin
()
{
if
(
interruptor
==
null
)
{
interruptor
=
new
Interruptible
()
{
public
void
interrupt
()
{
public
void
interrupt
(
Thread
target
)
{
synchronized
(
closeLock
)
{
if
(!
open
)
return
;
interrupted
=
true
;
open
=
false
;
interrupted
=
target
;
try
{
AbstractInterruptibleChannel
.
this
.
implCloseChannel
();
}
catch
(
IOException
x
)
{
}
...
...
@@ -168,8 +168,9 @@ public abstract class AbstractInterruptibleChannel
}};
}
blockedOn
(
interruptor
);
if
(
Thread
.
currentThread
().
isInterrupted
())
interruptor
.
interrupt
();
Thread
me
=
Thread
.
currentThread
();
if
(
me
.
isInterrupted
())
interruptor
.
interrupt
(
me
);
}
/**
...
...
@@ -195,12 +196,13 @@ public abstract class AbstractInterruptibleChannel
throws
AsynchronousCloseException
{
blockedOn
(
null
);
if
(
completed
)
{
interrupted
=
false
;
return
;
Thread
interrupted
=
this
.
interrupted
;
if
(
interrupted
!=
null
&&
interrupted
==
Thread
.
currentThread
())
{
interrupted
=
null
;
throw
new
ClosedByInterruptException
();
}
if
(
interrupted
)
throw
new
ClosedByInterruptException
();
if
(!
open
)
throw
new
AsynchronousCloseException
();
if
(
!
completed
&&
!
open
)
throw
new
AsynchronousCloseException
();
}
...
...
src/share/classes/java/nio/channels/spi/AbstractSelector.java
浏览文件 @
dce228fb
...
...
@@ -206,13 +206,14 @@ public abstract class AbstractSelector
protected
final
void
begin
()
{
if
(
interruptor
==
null
)
{
interruptor
=
new
Interruptible
()
{
public
void
interrupt
()
{
public
void
interrupt
(
Thread
ignore
)
{
AbstractSelector
.
this
.
wakeup
();
}};
}
AbstractInterruptibleChannel
.
blockedOn
(
interruptor
);
if
(
Thread
.
currentThread
().
isInterrupted
())
interruptor
.
interrupt
();
Thread
me
=
Thread
.
currentThread
();
if
(
me
.
isInterrupted
())
interruptor
.
interrupt
(
me
);
}
/**
...
...
src/share/classes/sun/nio/ch/FileChannelImpl.java
浏览文件 @
dce228fb
...
...
@@ -460,6 +460,16 @@ public class FileChannelImpl
}
finally
{
unmap
(
dbb
);
}
}
catch
(
ClosedByInterruptException
e
)
{
// target closed by interrupt as ClosedByInterruptException needs
// to be thrown after closing this channel.
assert
!
target
.
isOpen
();
try
{
close
();
}
catch
(
IOException
ignore
)
{
// nothing we can do
}
throw
e
;
}
catch
(
IOException
ioe
)
{
// Only throw exception if no bytes have been written
if
(
remaining
==
count
)
...
...
src/share/classes/sun/nio/ch/Interruptible.java
浏览文件 @
dce228fb
...
...
@@ -23,14 +23,14 @@
* questions.
*/
/*
/**
* An object that interrupts a thread blocked in an I/O operation.
*/
package
sun.nio.ch
;
public
interface
Interruptible
{
public
void
interrupt
();
public
void
interrupt
(
Thread
t
);
}
test/java/nio/channels/FileChannel/ClosedByInterrupt.java
0 → 100644
浏览文件 @
dce228fb
/*
* Copyright (c) 2010, 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
*/
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-8 concurrent threads
for
(
int
i
=
1
;
i
<=
8
;
i
++)
{
System
.
out
.
format
(
"%d thread(s)%n"
,
i
);
test
(
f
,
i
);
if
(
failed
)
break
;
}
}
/**
* 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
ignore
)
{
}
}
}
}
catch
(
ClosedByInterruptException
e
)
{
if
(
interruptible
)
{
if
(
Thread
.
currentThread
().
isInterrupted
())
{
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 (not 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
;
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录