Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
9340744a
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看板
提交
9340744a
编写于
2月 18, 2013
作者:
D
dingxmin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
6429204: (se) Concurrent Selector.register and SelectionKey.interestOps can ignore interestOps
Reviewed-by: alanb
上级
18ca83bf
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
164 addition
and
9 deletion
+164
-9
src/windows/classes/sun/nio/ch/WindowsSelectorImpl.java
src/windows/classes/sun/nio/ch/WindowsSelectorImpl.java
+16
-9
test/java/nio/channels/Selector/RacyDeregister.java
test/java/nio/channels/Selector/RacyDeregister.java
+148
-0
未找到文件。
src/windows/classes/sun/nio/ch/WindowsSelectorImpl.java
浏览文件 @
9340744a
/*
* Copyright (c) 2002, 201
2
, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2002, 201
3
, 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
...
...
@@ -35,6 +35,7 @@ import java.nio.channels.ClosedSelectorException;
import
java.nio.channels.Pipe
;
import
java.nio.channels.SelectableChannel
;
import
java.io.IOException
;
import
java.nio.channels.CancelledKeyException
;
import
java.util.List
;
import
java.util.ArrayList
;
import
java.util.HashMap
;
...
...
@@ -561,17 +562,19 @@ final class WindowsSelectorImpl extends SelectorImpl {
protected
void
implDereg
(
SelectionKeyImpl
ski
)
throws
IOException
{
int
i
=
ski
.
getIndex
();
assert
(
i
>=
0
);
if
(
i
!=
totalChannels
-
1
)
{
// Copy end one over it
SelectionKeyImpl
endChannel
=
channelArray
[
totalChannels
-
1
];
channelArray
[
i
]
=
endChannel
;
endChannel
.
setIndex
(
i
);
pollWrapper
.
replaceEntry
(
pollWrapper
,
totalChannels
-
1
,
synchronized
(
closeLock
)
{
if
(
i
!=
totalChannels
-
1
)
{
// Copy end one over it
SelectionKeyImpl
endChannel
=
channelArray
[
totalChannels
-
1
];
channelArray
[
i
]
=
endChannel
;
endChannel
.
setIndex
(
i
);
pollWrapper
.
replaceEntry
(
pollWrapper
,
totalChannels
-
1
,
pollWrapper
,
i
);
}
ski
.
setIndex
(-
1
);
}
channelArray
[
totalChannels
-
1
]
=
null
;
totalChannels
--;
ski
.
setIndex
(-
1
);
if
(
totalChannels
!=
1
&&
totalChannels
%
MAX_SELECTABLE_FDS
==
1
)
{
totalChannels
--;
threadsCount
--;
// The last thread has become redundant.
...
...
@@ -589,7 +592,11 @@ final class WindowsSelectorImpl extends SelectorImpl {
synchronized
(
closeLock
)
{
if
(
pollWrapper
==
null
)
throw
new
ClosedSelectorException
();
pollWrapper
.
putEventOps
(
sk
.
getIndex
(),
ops
);
// make sure this sk has not been removed yet
int
index
=
sk
.
getIndex
();
if
(
index
==
-
1
)
throw
new
CancelledKeyException
();
pollWrapper
.
putEventOps
(
index
,
ops
);
}
}
...
...
test/java/nio/channels/Selector/RacyDeregister.java
0 → 100644
浏览文件 @
9340744a
/*
* 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.
*/
/*
* Portions Copyright (c) 2012 IBM Corporation
*/
import
java.net.InetAddress
;
import
java.net.InetSocketAddress
;
import
java.nio.channels.SelectionKey
;
import
java.nio.channels.Selector
;
import
java.nio.channels.ServerSocketChannel
;
import
java.nio.channels.SocketChannel
;
/*
* @test
* @bug 6429204
* @summary SelectionKey.interestOps does not update interest set on Windows.
* @author Frank Ding
*/
public
class
RacyDeregister
{
static
boolean
notified
;
static
final
Object
selectorLock
=
new
Object
();
static
final
Object
notifyLock
=
new
Object
();
/**
* null: not terminated
* true: passed
* false: failed
*/
static
volatile
Boolean
succTermination
=
null
;
public
static
void
main
(
String
[]
args
)
throws
Exception
{
InetAddress
addr
=
InetAddress
.
getByName
(
null
);
ServerSocketChannel
sc
=
ServerSocketChannel
.
open
();
sc
.
socket
().
bind
(
new
InetSocketAddress
(
addr
,
0
));
SocketChannel
.
open
(
new
InetSocketAddress
(
addr
,
sc
.
socket
().
getLocalPort
()));
SocketChannel
accepted
=
sc
.
accept
();
accepted
.
configureBlocking
(
false
);
SocketChannel
.
open
(
new
InetSocketAddress
(
addr
,
sc
.
socket
().
getLocalPort
()));
SocketChannel
accepted2
=
sc
.
accept
();
accepted2
.
configureBlocking
(
false
);
final
Selector
sel
=
Selector
.
open
();
SelectionKey
key2
=
accepted2
.
register
(
sel
,
SelectionKey
.
OP_READ
);
final
SelectionKey
[]
key
=
new
SelectionKey
[]{
accepted
.
register
(
sel
,
SelectionKey
.
OP_READ
)};
// thread that will be changing key[0].interestOps to OP_READ | OP_WRITE
new
Thread
()
{
public
void
run
()
{
try
{
for
(
int
k
=
0
;
k
<
15
;
k
++)
{
for
(
int
i
=
0
;
i
<
10000
;
i
++)
{
synchronized
(
notifyLock
)
{
synchronized
(
selectorLock
)
{
sel
.
wakeup
();
key
[
0
].
interestOps
(
SelectionKey
.
OP_READ
|
SelectionKey
.
OP_WRITE
);
}
notified
=
false
;
long
beginTime
=
System
.
currentTimeMillis
();
while
(
true
)
{
notifyLock
.
wait
(
5000
);
if
(
notified
)
{
break
;
}
long
endTime
=
System
.
currentTimeMillis
();
if
(
endTime
-
beginTime
>
5000
)
{
succTermination
=
false
;
// wake up main thread doing select()
sel
.
wakeup
();
return
;
}
}
}
}
}
succTermination
=
true
;
// wake up main thread doing select()
sel
.
wakeup
();
}
catch
(
Exception
e
)
{
System
.
out
.
println
(
e
);
succTermination
=
true
;
// wake up main thread doing select()
sel
.
wakeup
();
}
}
}.
start
();
// main thread will be doing registering/deregistering with the sel
while
(
true
)
{
sel
.
select
();
if
(
Boolean
.
TRUE
.
equals
(
succTermination
))
{
System
.
out
.
println
(
"Test passed"
);
sel
.
close
();
sc
.
close
();
break
;
}
else
if
(
Boolean
.
FALSE
.
equals
(
succTermination
))
{
System
.
out
.
println
(
"Failed to pass the test"
);
sel
.
close
();
sc
.
close
();
throw
new
RuntimeException
(
"Failed to pass the test"
);
}
synchronized
(
selectorLock
)
{
}
if
(
sel
.
selectedKeys
().
contains
(
key
[
0
])
&&
key
[
0
].
isWritable
())
{
synchronized
(
notifyLock
)
{
notified
=
true
;
notifyLock
.
notify
();
key
[
0
].
cancel
();
sel
.
selectNow
();
key2
=
accepted2
.
register
(
sel
,
SelectionKey
.
OP_READ
);
key
[
0
]
=
accepted
.
register
(
sel
,
SelectionKey
.
OP_READ
);
}
}
key2
.
cancel
();
sel
.
selectedKeys
().
clear
();
}
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录