Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
fc7c05cd
提交
fc7c05cd
authored
4月 24, 2012
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
DatabaseEventListener now calls setProgress whenever a statement starts and ends.
上级
a01a0a1e
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
8 行增加
和
19 行删除
+8
-19
Command.java
h2/src/main/org/h2/command/Command.java
+3
-9
CommandContainer.java
h2/src/main/org/h2/command/CommandContainer.java
+5
-4
Database.java
h2/src/main/org/h2/engine/Database.java
+0
-6
没有找到文件。
h2/src/main/org/h2/command/Command.java
浏览文件 @
fc7c05cd
...
@@ -8,8 +8,6 @@ package org.h2.command;
...
@@ -8,8 +8,6 @@ package org.h2.command;
import
java.sql.SQLException
;
import
java.sql.SQLException
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
org.h2.api.DatabaseEventListener
;
import
org.h2.constant.ErrorCode
;
import
org.h2.constant.ErrorCode
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Database
;
import
org.h2.engine.Database
;
...
@@ -125,12 +123,8 @@ public abstract class Command implements CommandInterface {
...
@@ -125,12 +123,8 @@ public abstract class Command implements CommandInterface {
}
}
}
}
void
publishStart
()
{
void
setProgress
(
int
state
)
{
session
.
getDatabase
().
publishEvent
(
DatabaseEventListener
.
STATE_STATEMENT_START
,
sql
);
session
.
getDatabase
().
setProgress
(
state
,
sql
,
0
,
0
);
}
void
publishEnd
()
{
session
.
getDatabase
().
publishEvent
(
DatabaseEventListener
.
STATE_STATEMENT_END
,
sql
);
}
}
/**
/**
...
@@ -160,7 +154,7 @@ public abstract class Command implements CommandInterface {
...
@@ -160,7 +154,7 @@ public abstract class Command implements CommandInterface {
}
}
}
}
}
}
if
(
trace
.
isInfoEnabled
())
{
if
(
trace
.
isInfoEnabled
()
&&
startTime
>
0
)
{
long
time
=
System
.
currentTimeMillis
()
-
startTime
;
long
time
=
System
.
currentTimeMillis
()
-
startTime
;
if
(
time
>
Constants
.
SLOW_QUERY_LIMIT_MS
)
{
if
(
time
>
Constants
.
SLOW_QUERY_LIMIT_MS
)
{
trace
.
info
(
"slow query: {0} ms"
,
time
);
trace
.
info
(
"slow query: {0} ms"
,
time
);
...
...
h2/src/main/org/h2/command/CommandContainer.java
浏览文件 @
fc7c05cd
...
@@ -7,6 +7,7 @@
...
@@ -7,6 +7,7 @@
package
org
.
h2
.
command
;
package
org
.
h2
.
command
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
org.h2.api.DatabaseEventListener
;
import
org.h2.expression.Parameter
;
import
org.h2.expression.Parameter
;
import
org.h2.expression.ParameterInterface
;
import
org.h2.expression.ParameterInterface
;
import
org.h2.result.ResultInterface
;
import
org.h2.result.ResultInterface
;
...
@@ -67,24 +68,24 @@ class CommandContainer extends Command {
...
@@ -67,24 +68,24 @@ class CommandContainer extends Command {
public
int
update
()
{
public
int
update
()
{
recompileIfRequired
();
recompileIfRequired
();
publishStart
(
);
setProgress
(
DatabaseEventListener
.
STATE_STATEMENT_START
);
start
();
start
();
session
.
setLastIdentity
(
ValueNull
.
INSTANCE
);
session
.
setLastIdentity
(
ValueNull
.
INSTANCE
);
prepared
.
checkParameters
();
prepared
.
checkParameters
();
int
updateCount
=
prepared
.
update
();
int
updateCount
=
prepared
.
update
();
prepared
.
trace
(
startTime
,
updateCount
);
prepared
.
trace
(
startTime
,
updateCount
);
publishEnd
(
);
setProgress
(
DatabaseEventListener
.
STATE_STATEMENT_END
);
return
updateCount
;
return
updateCount
;
}
}
public
ResultInterface
query
(
int
maxrows
)
{
public
ResultInterface
query
(
int
maxrows
)
{
recompileIfRequired
();
recompileIfRequired
();
publishStart
(
);
setProgress
(
DatabaseEventListener
.
STATE_STATEMENT_START
);
start
();
start
();
prepared
.
checkParameters
();
prepared
.
checkParameters
();
ResultInterface
result
=
prepared
.
query
(
maxrows
);
ResultInterface
result
=
prepared
.
query
(
maxrows
);
prepared
.
trace
(
startTime
,
result
.
getRowCount
());
prepared
.
trace
(
startTime
,
result
.
getRowCount
());
publishEnd
(
);
setProgress
(
DatabaseEventListener
.
STATE_STATEMENT_END
);
return
result
;
return
result
;
}
}
...
...
h2/src/main/org/h2/engine/Database.java
浏览文件 @
fc7c05cd
...
@@ -1809,7 +1809,6 @@ public class Database implements DataHandler {
...
@@ -1809,7 +1809,6 @@ public class Database implements DataHandler {
* @param x the current position
* @param x the current position
* @param max the highest value
* @param max the highest value
*/
*/
public
void
setProgress
(
int
state
,
String
name
,
int
x
,
int
max
)
{
public
void
setProgress
(
int
state
,
String
name
,
int
x
,
int
max
)
{
if
(
eventListener
!=
null
)
{
if
(
eventListener
!=
null
)
{
try
{
try
{
...
@@ -2406,9 +2405,4 @@ public class Database implements DataHandler {
...
@@ -2406,9 +2405,4 @@ public class Database implements DataHandler {
throw
DbException
.
throwInternalError
();
throw
DbException
.
throwInternalError
();
}
}
public
void
publishEvent
(
int
state
,
String
sql
)
{
if
(
eventListener
!=
null
)
{
eventListener
.
setProgress
(
state
,
sql
,
0
,
-
1
);
}
}
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论