Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
3791fdca
提交
3791fdca
authored
12月 12, 2012
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MVStore: improved robustness
上级
fabc1c3a
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
41 行增加
和
9 行删除
+41
-9
MVMap.java
h2/src/main/org/h2/mvstore/MVMap.java
+3
-2
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+35
-4
MVStoreTool.java
h2/src/main/org/h2/mvstore/MVStoreTool.java
+3
-3
没有找到文件。
h2/src/main/org/h2/mvstore/MVMap.java
浏览文件 @
3791fdca
...
...
@@ -476,6 +476,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
* Remove all entries, and close the map.
*/
public
void
removeMap
()
{
checkOpen
();
if
(
this
!=
store
.
getMetaMap
())
{
checkWrite
();
root
.
removeAllRecursive
();
...
...
@@ -779,11 +780,11 @@ public class MVMap<K, V> extends AbstractMap<K, V>
*
* @return the name
*/
String
getName
()
{
public
String
getName
()
{
return
name
;
}
MVStore
getStore
()
{
public
MVStore
getStore
()
{
return
store
;
}
...
...
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
3791fdca
...
...
@@ -78,8 +78,8 @@ TODO:
- auto-save temporary data if it uses too much memory,
-- but revert it on startup if needed.
- map and chunk metadata: do not store default values
- support maps without values (
non-unique indexes),
-
and maps without keys (counted b-tree
)
- support maps without values (
just existence of the key)
-
support maps without keys (counted b-tree features
)
- use a small object cache (StringCache)
- dump values
- support Object[] and similar serialization by default
...
...
@@ -95,6 +95,11 @@ TODO:
- close the file on out of memory or disk write error (out of disk space or so)
- implement a shareded map (in one store, multiple stores)
-- to support concurrent updates and writes, and very large maps
- implement an off-heap file system
- optimize API for Java 7 (diamond operator)
- use new MVStore.Builder().open();
- see Google Guice: Generic Type
- JAXB (java xml binding) new TypeReference<String, String>(){}
*/
...
...
@@ -155,7 +160,7 @@ public class MVStore {
private
ByteBuffer
writeBuffer
;
private
final
boolean
readOnly
;
private
boolean
readOnly
;
private
int
lastMapId
;
...
...
@@ -177,6 +182,8 @@ public class MVStore {
private
long
creationTime
;
private
int
retentionTime
=
45
;
private
boolean
closed
;
MVStore
(
HashMap
<
String
,
Object
>
config
)
{
this
.
config
=
config
;
this
.
fileName
=
(
String
)
config
.
get
(
"fileName"
);
...
...
@@ -257,6 +264,7 @@ public class MVStore {
* @return the map
*/
public
<
K
,
V
>
MVMap
<
K
,
V
>
openMap
(
String
name
,
Class
<
K
>
keyClass
,
Class
<
V
>
valueClass
)
{
checkOpen
();
DataType
keyType
=
getDataType
(
keyClass
);
DataType
valueType
=
getDataType
(
valueClass
);
MVMap
<
K
,
V
>
m
=
new
MVMap
<
K
,
V
>(
keyType
,
valueType
);
...
...
@@ -276,6 +284,7 @@ public class MVStore {
*/
@SuppressWarnings
(
"unchecked"
)
public
<
T
extends
MVMap
<
K
,
V
>,
K
,
V
>
T
openMap
(
String
name
,
T
template
)
{
checkOpen
();
MVMap
<
K
,
V
>
m
=
(
MVMap
<
K
,
V
>)
maps
.
get
(
name
);
if
(
m
!=
null
)
{
return
(
T
)
m
;
...
...
@@ -319,6 +328,7 @@ public class MVStore {
* @return the metadata map
*/
public
MVMap
<
String
,
String
>
getMetaMap
()
{
checkOpen
();
return
meta
;
}
...
...
@@ -351,6 +361,8 @@ public class MVStore {
*/
void
removeMap
(
String
name
)
{
MVMap
<?,
?>
map
=
maps
.
remove
(
name
);
meta
.
remove
(
"map."
+
name
);
meta
.
remove
(
"root."
+
map
.
getId
());
mapsChanged
.
remove
(
map
.
getId
());
}
...
...
@@ -387,7 +399,11 @@ public class MVStore {
FileUtils
.
createDirectories
(
FileUtils
.
getParent
(
fileName
));
try
{
log
(
"file open"
);
file
=
FilePathCache
.
wrap
(
FilePath
.
get
(
fileName
).
open
(
"rw"
));
FilePath
f
=
FilePath
.
get
(
fileName
);
if
(
f
.
exists
()
&&
!
f
.
canWrite
())
{
readOnly
=
true
;
}
file
=
FilePathCache
.
wrap
(
f
.
open
(
readOnly
?
"r"
:
"rw"
));
if
(
readOnly
)
{
fileLock
=
file
.
tryLock
(
0
,
Long
.
MAX_VALUE
,
true
);
if
(
fileLock
==
null
)
{
...
...
@@ -527,6 +543,7 @@ public class MVStore {
* Close the file. Uncommitted changes are ignored, and all open maps are closed.
*/
public
void
close
()
{
closed
=
true
;
if
(
file
!=
null
)
{
try
{
shrinkFileIfPossible
(
0
);
...
...
@@ -579,6 +596,7 @@ public class MVStore {
* @return the new version (incremented if there were changes)
*/
public
long
store
()
{
checkOpen
();
if
(!
hasUnsavedChanges
())
{
return
currentVersion
;
}
...
...
@@ -729,6 +747,7 @@ public class MVStore {
}
private
void
applyFreedChunks
()
{
// TODO support concurrent operations
for
(
HashMap
<
Integer
,
Chunk
>
freed
:
freedChunks
.
values
())
{
for
(
Chunk
f
:
freed
.
values
())
{
Chunk
c
=
chunks
.
get
(
f
.
id
);
...
...
@@ -815,6 +834,7 @@ public class MVStore {
* @return if there are any changes
*/
public
boolean
hasUnsavedChanges
()
{
checkOpen
();
if
(
mapsChanged
.
size
()
==
0
)
{
return
false
;
}
...
...
@@ -843,6 +863,7 @@ public class MVStore {
* @return if anything was written
*/
public
boolean
compact
(
int
fillRate
)
{
checkOpen
();
if
(
chunks
.
size
()
==
0
)
{
// avoid division by 0
return
false
;
...
...
@@ -1189,6 +1210,7 @@ public class MVStore {
* @return the store version
*/
public
int
getStoreVersion
()
{
checkOpen
();
String
x
=
meta
.
get
(
"setting.storeVersion"
);
return
x
==
null
?
0
:
Integer
.
parseInt
(
x
);
}
...
...
@@ -1199,6 +1221,7 @@ public class MVStore {
* @param version the new store version
*/
public
void
setStoreVersion
(
int
version
)
{
checkOpen
();
meta
.
put
(
"setting.storeVersion"
,
Integer
.
toString
(
version
));
}
...
...
@@ -1211,6 +1234,7 @@ public class MVStore {
* @param version the version to revert to
*/
public
void
rollbackTo
(
long
version
)
{
checkOpen
();
if
(!
isKnownVersion
(
version
))
{
throw
DataUtils
.
illegalArgumentException
(
"Unknown version: "
+
version
);
}
...
...
@@ -1329,9 +1353,16 @@ public class MVStore {
* @return the file, or null
*/
public
FileChannel
getFile
()
{
checkOpen
();
return
file
;
}
private
void
checkOpen
()
{
if
(
closed
)
{
throw
DataUtils
.
illegalStateException
(
"This store is closed"
);
}
}
public
String
toString
()
{
return
DataUtils
.
appendMap
(
new
StringBuilder
(),
config
).
toString
();
}
...
...
h2/src/main/org/h2/mvstore/MVStoreTool.java
浏览文件 @
3791fdca
...
...
@@ -29,7 +29,7 @@ public class MVStoreTool {
*
* @param args the command line arguments
*/
public
static
void
main
(
String
...
args
)
throws
IOException
{
public
static
void
main
(
String
...
args
)
{
for
(
int
i
=
0
;
i
<
args
.
length
;
i
++)
{
if
(
"-dump"
.
equals
(
args
[
i
]))
{
String
fileName
=
args
[++
i
];
...
...
@@ -45,7 +45,7 @@ public class MVStoreTool {
* @param fileName the name of the file
* @param writer the print writer
*/
public
static
void
dump
(
String
fileName
,
Writer
writer
)
throws
IOException
{
public
static
void
dump
(
String
fileName
,
Writer
writer
)
{
PrintWriter
pw
=
new
PrintWriter
(
writer
,
true
);
if
(!
FileUtils
.
exists
(
fileName
))
{
pw
.
println
(
"File not found: "
+
fileName
);
...
...
@@ -112,7 +112,7 @@ public class MVStoreTool {
}
}
catch
(
IOException
e
)
{
pw
.
println
(
"ERROR: "
+
e
);
throw
e
;
e
.
printStackTrace
(
pw
)
;
}
finally
{
if
(
file
!=
null
)
{
try
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论