Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
35367e22
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看板
提交
35367e22
编写于
11月 26, 2013
作者:
M
malenkov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8028054: com.sun.beans.finder.MethodFinder has unsynchronized access to a static Map
Reviewed-by: alexsch, serb
上级
21d2c743
变更
8
展开全部
显示空白变更内容
内联
并排
Showing
8 changed file
with
965 addition
and
18 deletion
+965
-18
src/share/classes/com/sun/beans/finder/ConstructorFinder.java
...share/classes/com/sun/beans/finder/ConstructorFinder.java
+19
-8
src/share/classes/com/sun/beans/finder/MethodFinder.java
src/share/classes/com/sun/beans/finder/MethodFinder.java
+19
-10
src/share/classes/com/sun/beans/finder/Signature.java
src/share/classes/com/sun/beans/finder/Signature.java
+12
-0
src/share/classes/com/sun/beans/finder/SignatureException.java
...hare/classes/com/sun/beans/finder/SignatureException.java
+41
-0
src/share/classes/com/sun/beans/util/Cache.java
src/share/classes/com/sun/beans/util/Cache.java
+613
-0
test/java/beans/XMLDecoder/8028054/Task.java
test/java/beans/XMLDecoder/8028054/Task.java
+99
-0
test/java/beans/XMLDecoder/8028054/TestConstructorFinder.java
.../java/beans/XMLDecoder/8028054/TestConstructorFinder.java
+81
-0
test/java/beans/XMLDecoder/8028054/TestMethodFinder.java
test/java/beans/XMLDecoder/8028054/TestMethodFinder.java
+81
-0
未找到文件。
src/share/classes/com/sun/beans/finder/ConstructorFinder.java
浏览文件 @
35367e22
...
...
@@ -24,11 +24,12 @@
*/
package
com.sun.beans.finder
;
import
com.sun.beans.
Weak
Cache
;
import
com.sun.beans.
util.
Cache
;
import
java.lang.reflect.Constructor
;
import
java.lang.reflect.Modifier
;
import
static
com
.
sun
.
beans
.
util
.
Cache
.
Kind
.
SOFT
;
import
static
sun
.
reflect
.
misc
.
ReflectUtil
.
isPackageAccessible
;
/**
...
...
@@ -41,7 +42,18 @@ import static sun.reflect.misc.ReflectUtil.isPackageAccessible;
* @author Sergey A. Malenkov
*/
public
final
class
ConstructorFinder
extends
AbstractFinder
<
Constructor
<?>>
{
private
static
final
WeakCache
<
Signature
,
Constructor
<?>>
CACHE
=
new
WeakCache
<
Signature
,
Constructor
<?>>();
private
static
final
Cache
<
Signature
,
Constructor
<?>>
CACHE
=
new
Cache
<
Signature
,
Constructor
<?>>(
SOFT
,
SOFT
)
{
@Override
public
Constructor
create
(
Signature
signature
)
{
try
{
ConstructorFinder
finder
=
new
ConstructorFinder
(
signature
.
getArgs
());
return
finder
.
find
(
signature
.
getType
().
getConstructors
());
}
catch
(
Exception
exception
)
{
throw
new
SignatureException
(
exception
);
}
}
};
/**
* Finds public constructor
...
...
@@ -69,13 +81,12 @@ public final class ConstructorFinder extends AbstractFinder<Constructor<?>> {
PrimitiveWrapperMap
.
replacePrimitivesWithWrappers
(
args
);
Signature
signature
=
new
Signature
(
type
,
args
);
Constructor
<?>
constructor
=
CACHE
.
get
(
signature
);
if
(
constructor
!=
null
)
{
return
constructor
;
try
{
return
CACHE
.
get
(
signature
);
}
catch
(
SignatureException
exception
)
{
throw
exception
.
toNoSuchMethodException
(
"Constructor is not found"
);
}
constructor
=
new
ConstructorFinder
(
args
).
find
(
type
.
getConstructors
());
CACHE
.
put
(
signature
,
constructor
);
return
constructor
;
}
/**
...
...
src/share/classes/com/sun/beans/finder/MethodFinder.java
浏览文件 @
35367e22
...
...
@@ -25,7 +25,7 @@
package
com.sun.beans.finder
;
import
com.sun.beans.TypeResolver
;
import
com.sun.beans.
Weak
Cache
;
import
com.sun.beans.
util.
Cache
;
import
java.lang.reflect.Method
;
import
java.lang.reflect.Modifier
;
...
...
@@ -33,6 +33,7 @@ import java.lang.reflect.ParameterizedType;
import
java.lang.reflect.Type
;
import
java.util.Arrays
;
import
static
com
.
sun
.
beans
.
util
.
Cache
.
Kind
.
SOFT
;
import
static
sun
.
reflect
.
misc
.
ReflectUtil
.
isPackageAccessible
;
/**
...
...
@@ -45,7 +46,18 @@ import static sun.reflect.misc.ReflectUtil.isPackageAccessible;
* @author Sergey A. Malenkov
*/
public
final
class
MethodFinder
extends
AbstractFinder
<
Method
>
{
private
static
final
WeakCache
<
Signature
,
Method
>
CACHE
=
new
WeakCache
<
Signature
,
Method
>();
private
static
final
Cache
<
Signature
,
Method
>
CACHE
=
new
Cache
<
Signature
,
Method
>(
SOFT
,
SOFT
)
{
@Override
public
Method
create
(
Signature
signature
)
{
try
{
MethodFinder
finder
=
new
MethodFinder
(
signature
.
getName
(),
signature
.
getArgs
());
return
findAccessibleMethod
(
finder
.
find
(
signature
.
getType
().
getMethods
()));
}
catch
(
Exception
exception
)
{
throw
new
SignatureException
(
exception
);
}
}
};
/**
* Finds public method (static or non-static)
...
...
@@ -65,16 +77,13 @@ public final class MethodFinder extends AbstractFinder<Method> {
PrimitiveWrapperMap
.
replacePrimitivesWithWrappers
(
args
);
Signature
signature
=
new
Signature
(
type
,
name
,
args
);
try
{
Method
method
=
CACHE
.
get
(
signature
);
boolean
cached
=
method
!=
null
;
if
(
cached
&&
isPackageAccessible
(
method
.
getDeclaringClass
()))
{
return
method
;
return
(
method
==
null
)
||
isPackageAccessible
(
method
.
getDeclaringClass
())
?
method
:
CACHE
.
create
(
signature
);
}
method
=
findAccessibleMethod
(
new
MethodFinder
(
name
,
args
).
find
(
type
.
getMethods
()));
if
(!
cached
)
{
CACHE
.
put
(
signature
,
method
);
catch
(
SignatureException
exception
)
{
throw
exception
.
toNoSuchMethodException
(
"Method '"
+
name
+
"' is not found"
);
}
return
method
;
}
/**
...
...
src/share/classes/com/sun/beans/finder/Signature.java
浏览文件 @
35367e22
...
...
@@ -62,6 +62,18 @@ final class Signature {
this
.
args
=
args
;
}
Class
<?>
getType
()
{
return
this
.
type
;
}
String
getName
()
{
return
this
.
name
;
}
Class
<?>[]
getArgs
()
{
return
this
.
args
;
}
/**
* Indicates whether some other object is "equal to" this one.
*
...
...
src/share/classes/com/sun/beans/finder/SignatureException.java
0 → 100644
浏览文件 @
35367e22
/*
* Copyright (c) 2013, 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. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* 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.
*/
package
com.sun.beans.finder
;
final
class
SignatureException
extends
RuntimeException
{
SignatureException
(
Throwable
cause
)
{
super
(
cause
);
}
NoSuchMethodException
toNoSuchMethodException
(
String
message
)
{
Throwable
throwable
=
getCause
();
if
(
throwable
instanceof
NoSuchMethodException
)
{
return
(
NoSuchMethodException
)
throwable
;
}
NoSuchMethodException
exception
=
new
NoSuchMethodException
(
message
);
exception
.
initCause
(
throwable
);
return
exception
;
}
}
src/share/classes/com/sun/beans/util/Cache.java
0 → 100644
浏览文件 @
35367e22
此差异已折叠。
点击以展开。
test/java/beans/XMLDecoder/8028054/Task.java
0 → 100644
浏览文件 @
35367e22
/*
* Copyright (c) 2013, 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.
*/
import
java.util.ArrayList
;
import
java.util.Enumeration
;
import
java.util.List
;
import
java.util.jar.JarEntry
;
import
java.util.jar.JarFile
;
import
java.util.regex.Matcher
;
import
java.util.regex.Pattern
;
abstract
class
Task
<
T
>
implements
Runnable
{
private
transient
boolean
working
=
true
;
private
final
List
<
T
>
methods
;
private
final
Thread
thread
;
Task
(
List
<
T
>
methods
)
{
this
.
methods
=
methods
;
this
.
thread
=
new
Thread
(
this
);
this
.
thread
.
start
();
}
boolean
isAlive
()
{
return
this
.
thread
.
isAlive
();
}
boolean
isWorking
()
{
boolean
working
=
this
.
working
&&
this
.
thread
.
isAlive
();
this
.
working
=
false
;
return
working
;
}
@Override
public
void
run
()
{
long
time
=
-
System
.
currentTimeMillis
();
for
(
T
method
:
this
.
methods
)
{
this
.
working
=
true
;
try
{
for
(
int
i
=
0
;
i
<
100
;
i
++)
{
process
(
method
);
}
}
catch
(
NoSuchMethodException
ignore
)
{
}
}
time
+=
System
.
currentTimeMillis
();
print
(
"thread done in "
+
time
/
1000
+
" seconds"
);
}
protected
abstract
void
process
(
T
method
)
throws
NoSuchMethodException
;
static
synchronized
void
print
(
Object
message
)
{
System
.
out
.
println
(
message
);
System
.
out
.
flush
();
}
static
List
<
Class
<?>>
getClasses
(
int
count
)
throws
Exception
{
String
resource
=
ClassLoader
.
getSystemClassLoader
().
getResource
(
"java/lang/Object.class"
).
toString
();
Pattern
pattern
=
Pattern
.
compile
(
"jar:file:(.*)!.*"
);
Matcher
matcher
=
pattern
.
matcher
(
resource
);
matcher
.
matches
();
resource
=
matcher
.
group
(
1
);
List
<
Class
<?>>
classes
=
new
ArrayList
<>();
try
(
JarFile
jarFile
=
new
JarFile
(
resource
))
{
Enumeration
<
JarEntry
>
entries
=
jarFile
.
entries
();
while
(
entries
.
hasMoreElements
())
{
String
name
=
entries
.
nextElement
().
getName
();
if
(
name
.
startsWith
(
"java"
)
&&
name
.
endsWith
(
".class"
))
{
classes
.
add
(
Class
.
forName
(
name
.
substring
(
0
,
name
.
indexOf
(
"."
)).
replace
(
'/'
,
'.'
)));
if
(
count
==
classes
.
size
())
{
break
;
}
}
}
}
return
classes
;
}
}
test/java/beans/XMLDecoder/8028054/TestConstructorFinder.java
0 → 100644
浏览文件 @
35367e22
/*
* Copyright (c) 2013, 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.
*/
import
com.sun.beans.finder.ConstructorFinder
;
import
java.lang.reflect.Constructor
;
import
java.util.ArrayList
;
import
java.util.Collections
;
import
java.util.List
;
/*
* @test
* @bug 8028054
* @summary Tests that cached constructors have synchronized access
* @author Sergey Malenkov
* @compile -XDignore.symbol.file TestConstructorFinder.java
* @run main TestConstructorFinder
*/
public
class
TestConstructorFinder
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
List
<
Class
<?>>
classes
=
Task
.
getClasses
(
Integer
.
MAX_VALUE
);
List
<
Constructor
>
constructors
=
new
ArrayList
<>();
for
(
Class
<?>
type
:
classes
)
{
Collections
.
addAll
(
constructors
,
type
.
getConstructors
());
}
Task
.
print
(
"found "
+
constructors
.
size
()
+
" constructors in "
+
classes
.
size
()
+
" classes"
);
List
<
Task
>
tasks
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
tasks
.
add
(
new
Task
<
Constructor
>(
constructors
)
{
@Override
protected
void
process
(
Constructor
constructor
)
throws
NoSuchMethodException
{
ConstructorFinder
.
findConstructor
(
constructor
.
getDeclaringClass
(),
constructor
.
getParameterTypes
());
}
});
}
int
alarm
=
0
;
while
(
true
)
{
int
alive
=
0
;
int
working
=
0
;
for
(
Task
task
:
tasks
)
{
if
(
task
.
isWorking
())
{
working
++;
alive
++;
}
else
if
(
task
.
isAlive
())
{
alive
++;
}
}
if
(
alive
==
0
)
{
break
;
}
Task
.
print
(
working
+
" out of "
+
alive
+
" threads are working"
);
if
((
working
==
0
)
&&
(++
alarm
==
10
))
{
Task
.
print
(
"DEADLOCK DETECTED"
);
System
.
exit
(
100
);
}
Thread
.
sleep
(
1000
);
}
}
}
test/java/beans/XMLDecoder/8028054/TestMethodFinder.java
0 → 100644
浏览文件 @
35367e22
/*
* Copyright (c) 2013, 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.
*/
import
com.sun.beans.finder.MethodFinder
;
import
java.lang.reflect.Method
;
import
java.util.ArrayList
;
import
java.util.Collections
;
import
java.util.List
;
/*
* @test
* @bug 8028054
* @summary Tests that cached methods have synchronized access
* @author Sergey Malenkov
* @compile -XDignore.symbol.file TestMethodFinder.java
* @run main TestMethodFinder
*/
public
class
TestMethodFinder
{
public
static
void
main
(
String
[]
args
)
throws
Exception
{
List
<
Class
<?>>
classes
=
Task
.
getClasses
(
4000
);
List
<
Method
>
methods
=
new
ArrayList
<>();
for
(
Class
<?>
type
:
classes
)
{
Collections
.
addAll
(
methods
,
type
.
getMethods
());
}
Task
.
print
(
"found "
+
methods
.
size
()
+
" methods in "
+
classes
.
size
()
+
" classes"
);
List
<
Task
>
tasks
=
new
ArrayList
<>();
for
(
int
i
=
0
;
i
<
50
;
i
++)
{
tasks
.
add
(
new
Task
<
Method
>(
methods
)
{
@Override
protected
void
process
(
Method
method
)
throws
NoSuchMethodException
{
MethodFinder
.
findMethod
(
method
.
getDeclaringClass
(),
method
.
getName
(),
method
.
getParameterTypes
());
}
});
}
int
alarm
=
0
;
while
(
true
)
{
int
alive
=
0
;
int
working
=
0
;
for
(
Task
task
:
tasks
)
{
if
(
task
.
isWorking
())
{
working
++;
alive
++;
}
else
if
(
task
.
isAlive
())
{
alive
++;
}
}
if
(
alive
==
0
)
{
break
;
}
Task
.
print
(
working
+
" out of "
+
alive
+
" threads are working"
);
if
((
working
==
0
)
&&
(++
alarm
==
10
))
{
Task
.
print
(
"DEADLOCK DETECTED"
);
System
.
exit
(
100
);
}
Thread
.
sleep
(
1000
);
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录