Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
1f48b7b4
提交
1f48b7b4
authored
16 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Sometimes a StackOverflow occurred when checking for deadlock.
上级
b3b45da6
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
33 行增加
和
22 行删除
+33
-22
Table.java
h2/src/main/org/h2/table/Table.java
+13
-8
TableData.java
h2/src/main/org/h2/table/TableData.java
+14
-8
TestDeadlock.java
h2/src/test/org/h2/test/db/TestDeadlock.java
+6
-6
没有找到文件。
h2/src/main/org/h2/table/Table.java
浏览文件 @
1f48b7b4
...
...
@@ -885,16 +885,21 @@ public abstract class Table extends SchemaObjectBase {
/**
* Check if a deadlock occurred. This method is called recursively. There is
* a circle if the session to be tested has already being visited (i.e., it
* is one of the 'clash sessions'). In this case the method must return an
* empty object array. Once a deadlock has been detected, the methods must
* add the session to the list.
* a circle if the session to be tested has already being visited. If this
* session is part of the circle (if it is the clash session), the method
* must return an empty object array. Once a deadlock has been detected, the
* methods must add the session to the list. If this session is not part of
* the circle, or if no deadlock is detected, this method returns null.
*
* @param session the session to be tested for
* @param clash set with sessions already visited, and null when starting verification
* @return an object array with the sessions involved in the deadlock
*/
public
ObjectArray
checkDeadlock
(
Session
session
,
Set
clash
)
{
* @param clash set with sessions already visited, and null when starting
* verification
* @param visited set with sessions already visited, and null when starting
* verification
* @return an object array with the sessions involved in the deadlock, or
* null
*/
public
ObjectArray
checkDeadlock
(
Session
session
,
Session
clash
,
Set
visited
)
{
return
null
;
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/table/TableData.java
浏览文件 @
1f48b7b4
...
...
@@ -423,7 +423,7 @@ public class TableData extends Table implements RecordReader {
}
session
.
setWaitForLock
(
this
);
if
(
checkDeadlock
)
{
ObjectArray
sessions
=
checkDeadlock
(
session
,
null
);
ObjectArray
sessions
=
checkDeadlock
(
session
,
null
,
null
);
if
(
sessions
!=
null
)
{
throw
Message
.
getSQLException
(
ErrorCode
.
DEADLOCK_1
,
getDeadlockDetails
(
sessions
));
}
...
...
@@ -488,17 +488,23 @@ public class TableData extends Table implements RecordReader {
return
buff
.
toString
();
}
public
ObjectArray
checkDeadlock
(
Session
session
,
Se
t
clash
)
{
public
ObjectArray
checkDeadlock
(
Session
session
,
Se
ssion
clash
,
Set
visited
)
{
// only one deadlock check at any given time
synchronized
(
TableData
.
class
)
{
if
(
clash
==
null
)
{
// verification is started
clash
=
new
HashSet
();
}
else
if
(
clash
.
contains
(
session
))
{
// we found a circle
clash
=
session
;
visited
=
new
HashSet
();
}
else
if
(
clash
==
session
)
{
// we found a circle where this session is involved
return
new
ObjectArray
();
}
else
if
(
visited
.
contains
(
session
))
{
// we have already checked this session.
// there is a circle, but the sessions in the circle need to
// find it out themselves
return
null
;
}
clash
.
add
(
session
);
visited
.
add
(
session
);
ObjectArray
error
=
null
;
for
(
Iterator
it
=
lockShared
.
iterator
();
it
.
hasNext
();)
{
Session
s
=
(
Session
)
it
.
next
();
...
...
@@ -508,7 +514,7 @@ public class TableData extends Table implements RecordReader {
}
Table
t
=
s
.
getWaitForLock
();
if
(
t
!=
null
)
{
error
=
t
.
checkDeadlock
(
s
,
clash
);
error
=
t
.
checkDeadlock
(
s
,
clash
,
visited
);
if
(
error
!=
null
)
{
error
.
add
(
session
);
break
;
...
...
@@ -518,7 +524,7 @@ public class TableData extends Table implements RecordReader {
if
(
error
==
null
&&
lockExclusive
!=
null
)
{
Table
t
=
lockExclusive
.
getWaitForLock
();
if
(
t
!=
null
)
{
error
=
t
.
checkDeadlock
(
lockExclusive
,
clash
);
error
=
t
.
checkDeadlock
(
lockExclusive
,
clash
,
visited
);
if
(
error
!=
null
)
{
error
.
add
(
session
);
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/db/TestDeadlock.java
浏览文件 @
1f48b7b4
...
...
@@ -181,7 +181,7 @@ public class TestDeadlock extends TestBase {
}
t2
.
join
();
t3
.
join
();
checkDeadlock
(
1
);
checkDeadlock
();
c1
.
commit
();
c2
.
commit
();
c3
.
commit
();
...
...
@@ -226,7 +226,7 @@ public class TestDeadlock extends TestBase {
}
t2
.
join
();
t3
.
join
();
checkDeadlock
(
2
);
checkDeadlock
();
c1
.
commit
();
c2
.
commit
();
c3
.
commit
();
...
...
@@ -260,7 +260,7 @@ public class TestDeadlock extends TestBase {
catchDeadlock
(
e
);
}
t1
.
join
();
checkDeadlock
(
1
);
checkDeadlock
();
c1
.
commit
();
c2
.
commit
();
c1
.
createStatement
().
execute
(
"DROP TABLE TEST"
);
...
...
@@ -289,19 +289,19 @@ public class TestDeadlock extends TestBase {
catchDeadlock
(
e
);
}
t1
.
join
();
checkDeadlock
(
1
);
checkDeadlock
();
c1
.
commit
();
c2
.
commit
();
c1
.
createStatement
().
execute
(
"DROP TABLE T1, T2"
);
end
();
}
private
void
checkDeadlock
(
int
max
)
throws
SQLException
{
private
void
checkDeadlock
()
throws
SQLException
{
assertTrue
(
lastException
!=
null
);
assertKnownException
(
lastException
);
assertEquals
(
ErrorCode
.
DEADLOCK_1
,
lastException
.
getErrorCode
());
SQLException
e2
=
lastException
.
getNextException
();
if
(
e2
!=
null
&&
max
==
1
)
{
if
(
e2
!=
null
)
{
// we have two exception, but there should only be one
SQLException
e3
=
new
SQLException
(
"Expected one exception, got multiple"
);
e3
.
initCause
(
e2
);
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论