Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
0aac167d
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看板
提交
0aac167d
编写于
1月 30, 2012
作者:
D
dl
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
7132378: Race in FutureTask if used with explicit set ( not Runnable )
Reviewed-by: chegar, dholmes
上级
5bb0a44f
变更
3
展开全部
隐藏空白更改
内联
并排
Showing
3 changed file
with
576 addition
and
204 deletion
+576
-204
src/share/classes/java/util/concurrent/FutureTask.java
src/share/classes/java/util/concurrent/FutureTask.java
+326
-204
test/java/util/concurrent/FutureTask/DoneTimedGetLoops.java
test/java/util/concurrent/FutureTask/DoneTimedGetLoops.java
+163
-0
test/java/util/concurrent/FutureTask/ExplicitSet.java
test/java/util/concurrent/FutureTask/ExplicitSet.java
+87
-0
未找到文件。
src/share/classes/java/util/concurrent/FutureTask.java
浏览文件 @
0aac167d
此差异已折叠。
点击以展开。
test/java/util/concurrent/FutureTask/DoneTimedGetLoops.java
0 → 100644
浏览文件 @
0aac167d
/*
* Copyright (c) 2012 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.
*/
/*
* Written by Martin Buchholz with assistance from members of JCP JSR-166
* Expert Group and released to the public domain, as explained at
* http://creativecommons.org/publicdomain/zero/1.0/
*/
/*
* @test
* @run main DoneTimedGetLoops 300
* @summary isDone returning true guarantees that subsequent timed get
* will never throw TimeoutException.
*/
import
java.util.*
;
import
java.util.concurrent.*
;
import
java.util.concurrent.atomic.*
;
@SuppressWarnings
({
"unchecked"
,
"rawtypes"
,
"deprecation"
})
public
class
DoneTimedGetLoops
{
final
long
testDurationMillisDefault
=
10L
*
1000L
;
final
long
testDurationMillis
;
static
class
PublicFutureTask
extends
FutureTask
<
Boolean
>
{
final
static
Runnable
noop
=
new
Runnable
()
{
public
void
run
()
{}
};
PublicFutureTask
()
{
super
(
noop
,
null
);
}
public
void
set
(
Boolean
v
)
{
super
.
set
(
v
);
}
public
void
setException
(
Throwable
t
)
{
super
.
setException
(
t
);
}
}
DoneTimedGetLoops
(
String
[]
args
)
{
testDurationMillis
=
(
args
.
length
>
0
)
?
Long
.
valueOf
(
args
[
0
])
:
testDurationMillisDefault
;
}
void
test
(
String
[]
args
)
throws
Throwable
{
final
long
testDurationNanos
=
testDurationMillis
*
1000L
*
1000L
;
final
long
quittingTimeNanos
=
System
.
nanoTime
()
+
testDurationNanos
;
final
long
timeoutMillis
=
10L
*
1000L
;
final
AtomicReference
<
PublicFutureTask
>
normalRef
=
new
AtomicReference
<
PublicFutureTask
>();
final
AtomicReference
<
PublicFutureTask
>
abnormalRef
=
new
AtomicReference
<
PublicFutureTask
>();
final
Throwable
throwable
=
new
Throwable
();
abstract
class
CheckedThread
extends
Thread
{
CheckedThread
(
String
name
)
{
super
(
name
);
setDaemon
(
true
);
start
();
}
/** Polls for quitting time. */
protected
boolean
quittingTime
()
{
return
System
.
nanoTime
()
-
quittingTimeNanos
>
0
;
}
/** Polls occasionally for quitting time. */
protected
boolean
quittingTime
(
long
i
)
{
return
(
i
%
1024
)
==
0
&&
quittingTime
();
}
abstract
protected
void
realRun
()
throws
Exception
;
public
void
run
()
{
try
{
realRun
();
}
catch
(
Throwable
t
)
{
unexpected
(
t
);
}
}
}
Thread
setter
=
new
CheckedThread
(
"setter"
)
{
protected
void
realRun
()
{
while
(!
quittingTime
())
{
PublicFutureTask
future
=
new
PublicFutureTask
();
normalRef
.
set
(
future
);
future
.
set
(
Boolean
.
TRUE
);
}}};
Thread
setterException
=
new
CheckedThread
(
"setterException"
)
{
protected
void
realRun
()
{
while
(!
quittingTime
())
{
PublicFutureTask
future
=
new
PublicFutureTask
();
abnormalRef
.
set
(
future
);
future
.
setException
(
throwable
);
}}};
Thread
doneTimedGetNormal
=
new
CheckedThread
(
"doneTimedGetNormal"
)
{
protected
void
realRun
()
throws
Exception
{
while
(!
quittingTime
())
{
PublicFutureTask
future
=
normalRef
.
get
();
if
(
future
!=
null
)
{
while
(!
future
.
isDone
())
;
check
(
future
.
get
(
0L
,
TimeUnit
.
HOURS
)
==
Boolean
.
TRUE
);
}}}};
Thread
doneTimedGetAbnormal
=
new
CheckedThread
(
"doneTimedGetAbnormal"
)
{
protected
void
realRun
()
throws
Exception
{
while
(!
quittingTime
())
{
PublicFutureTask
future
=
abnormalRef
.
get
();
if
(
future
!=
null
)
{
while
(!
future
.
isDone
())
;
try
{
future
.
get
(
0L
,
TimeUnit
.
HOURS
);
fail
();
}
catch
(
ExecutionException
t
)
{
check
(
t
.
getCause
()
==
throwable
);
}
}}}};
for
(
Thread
thread
:
new
Thread
[]
{
setter
,
setterException
,
doneTimedGetNormal
,
doneTimedGetAbnormal
})
{
thread
.
join
(
timeoutMillis
+
testDurationMillis
);
if
(
thread
.
isAlive
())
{
System
.
err
.
printf
(
"Hung thread: %s%n"
,
thread
.
getName
());
failed
++;
for
(
StackTraceElement
e
:
thread
.
getStackTrace
())
System
.
err
.
println
(
e
);
// Kludge alert
thread
.
stop
();
thread
.
join
(
timeoutMillis
);
}
}
}
//--------------------- Infrastructure ---------------------------
volatile
int
passed
=
0
,
failed
=
0
;
void
pass
()
{
passed
++;}
void
fail
()
{
failed
++;
Thread
.
dumpStack
();}
void
fail
(
String
msg
)
{
System
.
err
.
println
(
msg
);
fail
();}
void
unexpected
(
Throwable
t
)
{
failed
++;
t
.
printStackTrace
();}
void
check
(
boolean
cond
)
{
if
(
cond
)
pass
();
else
fail
();}
void
equal
(
Object
x
,
Object
y
)
{
if
(
x
==
null
?
y
==
null
:
x
.
equals
(
y
))
pass
();
else
fail
(
x
+
" not equal to "
+
y
);}
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
new
DoneTimedGetLoops
(
args
).
instanceMain
(
args
);}
public
void
instanceMain
(
String
[]
args
)
throws
Throwable
{
try
{
test
(
args
);}
catch
(
Throwable
t
)
{
unexpected
(
t
);}
System
.
out
.
printf
(
"%nPassed = %d, failed = %d%n%n"
,
passed
,
failed
);
if
(
failed
>
0
)
throw
new
AssertionError
(
"Some tests failed"
);}
}
test/java/util/concurrent/FutureTask/ExplicitSet.java
0 → 100644
浏览文件 @
0aac167d
/*
* Copyright (c) 2012, 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 7132378
* @summary Race in FutureTask if used with explicit set ( not Runnable )
* @author Chris Hegarty
*/
import
java.util.concurrent.Callable
;
import
java.util.concurrent.FutureTask
;
public
class
ExplicitSet
{
static
void
realMain
(
String
[]
args
)
throws
Throwable
{
for
(
int
i
=
1
;
i
<=
10000
;
i
++)
{
//System.out.print(".");
test
();
}
}
static
void
test
()
throws
Throwable
{
final
SettableTask
task
=
new
SettableTask
();
Thread
thread
=
new
Thread
()
{
public
void
run
()
{
try
{
check
(
task
.
get
()
!=
null
);
}
catch
(
Exception
e
)
{
unexpected
(
e
);
}
}};
thread
.
start
();
task
.
set
(
Boolean
.
TRUE
);
thread
.
join
(
5000
);
}
static
class
SettableTask
extends
FutureTask
<
Boolean
>
{
SettableTask
()
{
super
(
new
Callable
<
Boolean
>()
{
public
Boolean
call
()
{
fail
(
"The task should never be run!"
);
return
null
;
};
});
}
@Override
public
void
set
(
Boolean
b
)
{
super
.
set
(
b
);
}
}
//--------------------- Infrastructure ---------------------------
static
volatile
int
passed
=
0
,
failed
=
0
;
static
void
pass
()
{
passed
++;}
static
void
fail
()
{
failed
++;
Thread
.
dumpStack
();}
static
void
fail
(
String
msg
)
{
System
.
out
.
println
(
msg
);
fail
();}
static
void
unexpected
(
Throwable
t
)
{
failed
++;
t
.
printStackTrace
();}
static
void
check
(
boolean
cond
)
{
if
(
cond
)
pass
();
else
fail
();}
static
void
equal
(
Object
x
,
Object
y
)
{
if
(
x
==
null
?
y
==
null
:
x
.
equals
(
y
))
pass
();
else
fail
(
x
+
" not equal to "
+
y
);}
public
static
void
main
(
String
[]
args
)
throws
Throwable
{
try
{
realMain
(
args
);}
catch
(
Throwable
t
)
{
unexpected
(
t
);}
System
.
out
.
printf
(
"%nPassed = %d, failed = %d%n%n"
,
passed
,
failed
);
if
(
failed
>
0
)
throw
new
AssertionError
(
"Some tests failed"
);}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录