Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
10eb42ed
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看板
提交
10eb42ed
编写于
8月 26, 2013
作者:
A
alanb
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8023139: java/nio/file/WatchService/SensitivityModifier.java failing intermittently (win8)
Reviewed-by: alanb Contributed-by: yiming.wang@oracle.com
上级
55b1de80
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
53 addition
and
47 deletion
+53
-47
test/java/nio/file/WatchService/SensitivityModifier.java
test/java/nio/file/WatchService/SensitivityModifier.java
+53
-47
未找到文件。
test/java/nio/file/WatchService/SensitivityModifier.java
浏览文件 @
10eb42ed
...
@@ -54,7 +54,7 @@ public class SensitivityModifier {
...
@@ -54,7 +54,7 @@ public class SensitivityModifier {
@SuppressWarnings
(
"unchecked"
)
@SuppressWarnings
(
"unchecked"
)
static
void
doTest
(
Path
top
)
throws
Exception
{
static
void
doTest
(
Path
top
)
throws
Exception
{
FileSystem
fs
=
top
.
getFileSystem
();
FileSystem
fs
=
top
.
getFileSystem
();
WatchService
watcher
=
fs
.
newWatchService
();
try
(
WatchService
watcher
=
fs
.
newWatchService
())
{
// create directories and files
// create directories and files
int
nDirs
=
5
+
rand
.
nextInt
(
20
);
int
nDirs
=
5
+
rand
.
nextInt
(
20
);
...
@@ -84,30 +84,36 @@ public class SensitivityModifier {
...
@@ -84,30 +84,36 @@ public class SensitivityModifier {
try
(
OutputStream
out
=
Files
.
newOutputStream
(
file
))
{
try
(
OutputStream
out
=
Files
.
newOutputStream
(
file
))
{
out
.
write
(
new
byte
[
100
]);
out
.
write
(
new
byte
[
100
]);
}
}
System
.
out
.
println
(
"Waiting for event..."
);
System
.
out
.
println
(
"Waiting for event(s)..."
);
boolean
eventReceived
=
false
;
WatchKey
key
=
watcher
.
take
();
WatchKey
key
=
watcher
.
take
();
WatchEvent
<?>
event
=
key
.
pollEvents
().
iterator
().
next
();
do
{
for
(
WatchEvent
<?>
event:
key
.
pollEvents
())
{
if
(
event
.
kind
()
!=
ENTRY_MODIFY
)
if
(
event
.
kind
()
!=
ENTRY_MODIFY
)
throw
new
RuntimeException
(
"Unexpected event: "
+
event
);
throw
new
RuntimeException
(
"Unexpected event: "
+
event
);
Path
name
=
((
WatchEvent
<
Path
>)
event
).
context
();
Path
name
=
((
WatchEvent
<
Path
>)
event
).
context
();
if
(!
name
.
equals
(
file
.
getFileName
()))
if
(
name
.
equals
(
file
.
getFileName
()))
{
throw
new
RuntimeException
(
"Unexpected context: "
+
name
);
eventReceived
=
true
;
System
.
out
.
println
(
"Event OK"
);
break
;
}
// drain events (to avoid interference)
}
do
{
key
.
pollEvents
();
key
.
reset
();
key
.
reset
();
key
=
watcher
.
poll
(
1
,
TimeUnit
.
SECONDS
);
key
=
watcher
.
poll
(
1
,
TimeUnit
.
SECONDS
);
}
while
(
key
!=
null
);
}
while
(
key
!=
null
&&
!
eventReceived
);
// we should have received at least one ENTRY_MODIFY event
if
(
eventReceived
)
{
System
.
out
.
println
(
"Event OK"
);
}
else
{
throw
new
RuntimeException
(
"No ENTRY_MODIFY event received for "
+
file
);
}
// re-register the directories to force changing their sensitivity
// re-register the directories to force changing their sensitivity
// level
// level
register
(
dirs
,
watcher
);
register
(
dirs
,
watcher
);
}
}
}
// done
watcher
.
close
();
}
}
public
static
void
main
(
String
[]
args
)
throws
Exception
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录