Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
2479e6a1
提交
2479e6a1
authored
16 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
The database now tries to detect if the classloader or virtual machine has almost shut down.
上级
c93e30ee
隐藏空白字符变更
内嵌
并排
正在显示
7 个修改的文件
包含
69 行增加
和
31 行删除
+69
-31
Database.java
h2/src/main/org/h2/engine/Database.java
+9
-0
DatabaseCloser.java
h2/src/main/org/h2/engine/DatabaseCloser.java
+18
-1
JdbcDriverUtils.java
h2/src/main/org/h2/util/JdbcDriverUtils.java
+4
-0
MemoryUtils.java
h2/src/main/org/h2/util/MemoryUtils.java
+11
-0
DataType.java
h2/src/main/org/h2/value/DataType.java
+15
-15
ValueInt.java
h2/src/main/org/h2/value/ValueInt.java
+7
-10
ValueLong.java
h2/src/main/org/h2/value/ValueLong.java
+5
-5
没有找到文件。
h2/src/main/org/h2/engine/Database.java
浏览文件 @
2479e6a1
...
...
@@ -60,6 +60,7 @@ import org.h2.util.ClassUtils;
import
org.h2.util.FileUtils
;
import
org.h2.util.IOUtils
;
import
org.h2.util.IntHashMap
;
import
org.h2.util.MemoryUtils
;
import
org.h2.util.NetUtils
;
import
org.h2.util.ObjectArray
;
import
org.h2.util.SmallLRUCache
;
...
...
@@ -1033,6 +1034,14 @@ public class Database implements DataHandler {
if
(
closing
)
{
return
;
}
if
(
MemoryUtils
.
isShutdown
())
{
try
{
traceSystem
.
getTrace
(
Trace
.
DATABASE
).
error
(
"already shut down"
);
}
catch
(
Exception
e
)
{
// ignore
}
return
;
}
closing
=
true
;
stopServer
();
if
(
userSessions
.
size
()
>
0
)
{
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/engine/DatabaseCloser.java
浏览文件 @
2479e6a1
...
...
@@ -8,6 +8,8 @@ package org.h2.engine;
import
java.lang.ref.WeakReference
;
import
org.h2.message.Trace
;
/**
* This class is responsible to close a database if the application did not
* close a connection. A database closer object only exists if there is no user
...
...
@@ -16,6 +18,7 @@ import java.lang.ref.WeakReference;
public
class
DatabaseCloser
extends
Thread
{
private
final
boolean
shutdownHook
;
private
final
Trace
trace
;
private
volatile
WeakReference
databaseRef
;
private
int
delayInMillis
;
private
boolean
stopImmediately
;
...
...
@@ -24,6 +27,7 @@ public class DatabaseCloser extends Thread {
this
.
databaseRef
=
new
WeakReference
(
db
);
this
.
delayInMillis
=
delayInMillis
;
this
.
shutdownHook
=
shutdownHook
;
trace
=
db
.
getTrace
(
Trace
.
DATABASE
);
}
/**
...
...
@@ -72,7 +76,20 @@ public class DatabaseCloser extends Thread {
}
}
if
(
database
!=
null
)
{
database
.
close
(
shutdownHook
);
try
{
database
.
close
(
shutdownHook
);
}
catch
(
RuntimeException
e
)
{
// this can happen when stopping a web application,
// if loading classes is no longer allowed
// it would throw an IllegalStateException
try
{
trace
.
error
(
"Could not close the database"
,
e
);
// if this was successful, we ignore the exception
// otherwise not
}
catch
(
RuntimeException
e2
)
{
throw
e
;
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/util/JdbcDriverUtils.java
浏览文件 @
2479e6a1
...
...
@@ -74,5 +74,9 @@ public class JdbcDriverUtils {
ClassUtils
.
loadUserClass
(
driver
);
}
}
static
boolean
isShutdown
()
{
return
DRIVERS
==
null
;
}
}
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/util/MemoryUtils.java
浏览文件 @
2479e6a1
...
...
@@ -78,6 +78,17 @@ public class MemoryUtils {
*/
public
static
void
freeReserveMemory
()
{
reserveMemory
=
null
;
}
/**
* Check if the classloader or virtual machine is shut down. In this case
* static references are set to null, which can cause NullPointerExceptions
* and can be confusing because it looks like a bug in the application.
*
* @return true if static references are set to null
*/
public
static
boolean
isShutdown
()
{
return
StringCache
.
isShutdown
()
||
JdbcDriverUtils
.
isShutdown
()
||
Resources
.
isShutdown
();
}
}
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/value/DataType.java
浏览文件 @
2479e6a1
...
...
@@ -49,9 +49,9 @@ public class DataType {
*/
public
static
final
int
TYPE_DATALINK
=
70
;
private
static
ObjectArray
types
=
new
ObjectArray
();
private
static
HashMap
typesByName
=
new
HashMap
();
private
static
DataType
[]
typesByValueType
=
new
DataType
[
Value
.
TYPE_COUNT
];
private
static
final
ObjectArray
TYPES
=
new
ObjectArray
();
private
static
final
HashMap
TYPES_BY_NAME
=
new
HashMap
();
private
static
final
DataType
[]
TYPES_BY_VALUE_TYPE
=
new
DataType
[
Value
.
TYPE_COUNT
];
/**
* The value type of this data type.
...
...
@@ -318,8 +318,8 @@ public class DataType {
new
String
[]{
"RESULT_SET"
},
20
);
for
(
int
i
=
0
;
i
<
typesByValueType
.
length
;
i
++)
{
DataType
dt
=
typesByValueType
[
i
];
for
(
int
i
=
0
;
i
<
TYPES_BY_VALUE_TYPE
.
length
;
i
++)
{
DataType
dt
=
TYPES_BY_VALUE_TYPE
[
i
];
if
(
dt
==
null
)
{
throw
Message
.
getInternalError
(
"unmapped type "
+
i
);
}
...
...
@@ -350,17 +350,17 @@ public class DataType {
dt
.
caseSensitive
=
dataType
.
caseSensitive
;
dt
.
hidden
=
i
>
0
;
dt
.
memory
=
memory
;
for
(
int
j
=
0
;
j
<
types
.
size
();
j
++)
{
DataType
t2
=
(
DataType
)
types
.
get
(
j
);
for
(
int
j
=
0
;
j
<
TYPES
.
size
();
j
++)
{
DataType
t2
=
(
DataType
)
TYPES
.
get
(
j
);
if
(
t2
.
sqlType
==
dt
.
sqlType
)
{
dt
.
sqlTypePos
++;
}
}
typesByName
.
put
(
dt
.
name
,
dt
);
if
(
typesByValueType
[
type
]
==
null
)
{
typesByValueType
[
type
]
=
dt
;
TYPES_BY_NAME
.
put
(
dt
.
name
,
dt
);
if
(
TYPES_BY_VALUE_TYPE
[
type
]
==
null
)
{
TYPES_BY_VALUE_TYPE
[
type
]
=
dt
;
}
types
.
add
(
dt
);
TYPES
.
add
(
dt
);
}
}
...
...
@@ -412,7 +412,7 @@ public class DataType {
* @return the list
*/
public
static
ObjectArray
getTypes
()
{
return
types
;
return
TYPES
;
}
/**
...
...
@@ -639,9 +639,9 @@ public class DataType {
* @return the data type object
*/
public
static
DataType
getDataType
(
int
type
)
{
DataType
dt
=
typesByValueType
[
type
];
DataType
dt
=
TYPES_BY_VALUE_TYPE
[
type
];
if
(
dt
==
null
)
{
dt
=
typesByValueType
[
Value
.
NULL
];
dt
=
TYPES_BY_VALUE_TYPE
[
Value
.
NULL
];
}
return
dt
;
}
...
...
@@ -857,7 +857,7 @@ public class DataType {
* @return the data type object
*/
public
static
DataType
getTypeByName
(
String
s
)
{
return
(
DataType
)
typesByName
.
get
(
s
);
return
(
DataType
)
TYPES_BY_NAME
.
get
(
s
);
}
/**
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/value/ValueInt.java
浏览文件 @
2479e6a1
...
...
@@ -30,20 +30,17 @@ public class ValueInt extends Value {
*/
public
static
final
int
DISPLAY_SIZE
=
11
;
private
static
final
int
STATIC_SIZE
=
1
00
;
private
static
final
int
STATIC_SIZE
=
1
28
;
// must be a power of 2
private
static
final
int
DYNAMIC_SIZE
=
256
;
// TODO check performance of final static
private
static
ValueInt
[]
staticCache
;
private
static
ValueInt
[]
dynamicCache
;
private
static
final
ValueInt
[]
STATIC_CACHE
=
new
ValueInt
[
STATIC_SIZE
];
private
static
final
ValueInt
[]
DYNAMIC_CACHE
=
new
ValueInt
[
DYNAMIC_SIZE
];
private
final
int
value
;
static
{
staticCache
=
new
ValueInt
[
STATIC_SIZE
];
dynamicCache
=
new
ValueInt
[
DYNAMIC_SIZE
];
for
(
int
i
=
0
;
i
<
STATIC_SIZE
;
i
++)
{
staticCache
[
i
]
=
new
ValueInt
(
i
);
STATIC_CACHE
[
i
]
=
new
ValueInt
(
i
);
}
}
...
...
@@ -59,12 +56,12 @@ public class ValueInt extends Value {
*/
public
static
ValueInt
get
(
int
i
)
{
if
(
i
>=
0
&&
i
<
STATIC_SIZE
)
{
return
staticCache
[
i
];
return
STATIC_CACHE
[
i
];
}
ValueInt
v
=
dynamicCache
[
i
&
DYNAMIC_SIZE
-
1
];
ValueInt
v
=
DYNAMIC_CACHE
[
i
&
(
DYNAMIC_SIZE
-
1
)
];
if
(
v
==
null
||
v
.
value
!=
i
)
{
v
=
new
ValueInt
(
i
);
dynamicCache
[
i
&
DYNAMIC_SIZE
-
1
]
=
v
;
DYNAMIC_CACHE
[
i
&
(
DYNAMIC_SIZE
-
1
)
]
=
v
;
}
return
v
;
}
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/value/ValueLong.java
浏览文件 @
2479e6a1
...
...
@@ -31,17 +31,17 @@ public class ValueLong extends Value {
*/
public
static
final
int
DISPLAY_SIZE
=
20
;
private
static
final
int
STATIC_SIZE
=
10
;
private
static
ValueLong
[]
cache
;
private
static
final
int
STATIC_SIZE
=
10
0
;
private
static
final
ValueLong
[]
STATIC_CACHE
;
private
static
final
BigInteger
MIN
=
new
BigInteger
(
""
+
Long
.
MIN_VALUE
);
private
static
final
BigInteger
MAX
=
new
BigInteger
(
""
+
Long
.
MAX_VALUE
);
private
final
long
value
;
static
{
cache
=
new
ValueLong
[
STATIC_SIZE
];
STATIC_CACHE
=
new
ValueLong
[
STATIC_SIZE
];
for
(
int
i
=
0
;
i
<
STATIC_SIZE
;
i
++)
{
cache
[
i
]
=
new
ValueLong
(
i
);
STATIC_CACHE
[
i
]
=
new
ValueLong
(
i
);
}
}
...
...
@@ -188,7 +188,7 @@ public class ValueLong extends Value {
*/
public
static
ValueLong
get
(
long
i
)
{
if
(
i
>=
0
&&
i
<
STATIC_SIZE
)
{
return
cache
[(
int
)
i
];
return
STATIC_CACHE
[(
int
)
i
];
}
return
(
ValueLong
)
Value
.
cache
(
new
ValueLong
(
i
));
}
...
...
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论