Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
5301473f
提交
5301473f
authored
10 年前
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MVStore: new utility to compress a store. (Work in progress.)
上级
e20b12b4
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
204 行增加
和
10 行删除
+204
-10
MVMap.java
h2/src/main/org/h2/mvstore/MVMap.java
+17
-9
MVStoreTool.java
h2/src/main/org/h2/mvstore/MVStoreTool.java
+110
-1
TestMVStoreTool.java
h2/src/test/org/h2/test/store/TestMVStoreTool.java
+77
-0
没有找到文件。
h2/src/main/org/h2/mvstore/MVMap.java
浏览文件 @
5301473f
...
@@ -1029,6 +1029,12 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1029,6 +1029,12 @@ public class MVMap<K, V> extends AbstractMap<K, V>
throw
DataUtils
.
newConcurrentModificationException
(
throw
DataUtils
.
newConcurrentModificationException
(
getName
());
getName
());
}
}
;
// TODO work in progress
if
(
oldRoots
.
size
()
-
list
.
size
()
>
1
)
{
// System.out.println("reduced! from " + oldRoots.size() + " to " + list.size() +" " + getClass());
}
oldRoots
=
list
;
oldRoots
=
list
;
}
}
...
@@ -1292,21 +1298,23 @@ public class MVMap<K, V> extends AbstractMap<K, V>
...
@@ -1292,21 +1298,23 @@ public class MVMap<K, V> extends AbstractMap<K, V>
this
.
writeVersion
=
writeVersion
;
this
.
writeVersion
=
writeVersion
;
}
}
public
void
copyFrom
(
MVMap
<
K
,
V
>
sourceMap
)
{
void
copyFrom
(
MVMap
<
K
,
V
>
sourceMap
)
{
;
// TODO work in progress
;
// TODO work in progress
Page
sourceRoot
=
sourceMap
.
root
;
root
=
copy
(
sourceMap
.
root
,
null
);
root
=
Page
.
create
(
this
,
writeVersion
,
sourceRoot
);
root
=
copy
(
root
,
sourceRoot
);
}
}
private
Page
copy
(
Page
target
,
Page
source
)
{
private
Page
copy
(
Page
source
,
CursorPos
parent
)
{
target
=
copyOnWrite
(
target
,
writeVersion
);
Page
target
=
Page
.
create
(
this
,
writeVersion
,
source
);
for
(
CursorPos
p
=
parent
;
p
!=
null
;
p
=
p
.
parent
)
{
p
.
page
.
setChild
(
p
.
index
,
target
);
}
if
(!
target
.
isLeaf
())
{
if
(!
target
.
isLeaf
())
{
CursorPos
pos
=
new
CursorPos
(
target
,
0
,
parent
);
target
=
copyOnWrite
(
target
,
writeVersion
);
for
(
int
i
=
0
;
i
<
target
.
getChildPageCount
();
i
++)
{
for
(
int
i
=
0
;
i
<
target
.
getChildPageCount
();
i
++)
{
Page
sourceChild
=
source
.
getChildPage
(
i
);
Page
sourceChild
=
source
.
getChildPage
(
i
);
Page
targetChild
=
Page
.
create
(
this
,
writeVersion
,
sourceChild
);
pos
.
index
=
i
;
targetChild
=
copy
(
targetChild
,
sourceChild
);
copy
(
sourceChild
,
pos
);
target
.
setChild
(
i
,
targetChild
);
}
}
}
}
return
target
;
return
target
;
...
...
This diff is collapsed.
Click to expand it.
h2/src/main/org/h2/mvstore/MVStoreTool.java
浏览文件 @
5301473f
...
@@ -15,6 +15,7 @@ import java.util.Map;
...
@@ -15,6 +15,7 @@ import java.util.Map;
import
java.util.Map.Entry
;
import
java.util.Map.Entry
;
import
java.util.TreeMap
;
import
java.util.TreeMap
;
import
org.h2.mvstore.type.DataType
;
import
org.h2.mvstore.type.StringDataType
;
import
org.h2.mvstore.type.StringDataType
;
import
org.h2.store.fs.FilePath
;
import
org.h2.store.fs.FilePath
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.store.fs.FileUtils
;
...
@@ -79,7 +80,8 @@ public class MVStoreTool {
...
@@ -79,7 +80,8 @@ public class MVStoreTool {
pw
.
println
(
"File not found: "
+
fileName
);
pw
.
println
(
"File not found: "
+
fileName
);
return
;
return
;
}
}
pw
.
printf
(
"File %s, length %d\n"
,
fileName
,
FileUtils
.
size
(
fileName
));
long
size
=
FileUtils
.
size
(
fileName
);
pw
.
printf
(
"File %s, %d bytes, %d MB\n"
,
fileName
,
size
,
size
/
1024
/
1024
);
FileChannel
file
=
null
;
FileChannel
file
=
null
;
int
blockSize
=
MVStore
.
BLOCK_SIZE
;
int
blockSize
=
MVStore
.
BLOCK_SIZE
;
try
{
try
{
...
@@ -214,6 +216,7 @@ public class MVStoreTool {
...
@@ -214,6 +216,7 @@ public class MVStoreTool {
Chunk
.
FOOTER_LENGTH
,
DataUtils
.
LATIN
).
trim
());
Chunk
.
FOOTER_LENGTH
,
DataUtils
.
LATIN
).
trim
());
}
}
pw
.
printf
(
"%n%0"
+
len
+
"x eof%n"
,
fileSize
);
pw
.
printf
(
"%n%0"
+
len
+
"x eof%n"
,
fileSize
);
pw
.
printf
(
"\n"
);
}
catch
(
IOException
e
)
{
}
catch
(
IOException
e
)
{
pw
.
println
(
"ERROR: "
+
e
);
pw
.
println
(
"ERROR: "
+
e
);
e
.
printStackTrace
(
pw
);
e
.
printStackTrace
(
pw
);
...
@@ -278,6 +281,7 @@ public class MVStoreTool {
...
@@ -278,6 +281,7 @@ public class MVStoreTool {
c
.
len
c
.
len
);
);
}
}
pw
.
printf
(
"\n"
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
pw
.
println
(
"ERROR: "
+
e
);
pw
.
println
(
"ERROR: "
+
e
);
e
.
printStackTrace
(
pw
);
e
.
printStackTrace
(
pw
);
...
@@ -292,4 +296,109 @@ public class MVStoreTool {
...
@@ -292,4 +296,109 @@ public class MVStoreTool {
return
x
.
substring
(
0
,
19
);
return
x
.
substring
(
0
,
19
);
}
}
/**
* Compress the store by creating a new file and copying the live pages there.
*
* @param fileName the file name
*/
public
static
void
compress
(
String
fileName
)
{
compress
(
fileName
,
fileName
+
".new"
);
FileUtils
.
moveTo
(
fileName
,
fileName
+
".old"
);
FileUtils
.
moveTo
(
fileName
,
fileName
);
FileUtils
.
delete
(
fileName
+
".old"
);
}
/**
* Copy all live pages from the source store to the target store.
*
* @param sourceFileName the name of the source store
* @param targetFileName the name of the target store
*/
public
static
void
compress
(
String
sourceFileName
,
String
targetFileName
)
{
MVStore
source
=
new
MVStore
.
Builder
().
fileName
(
sourceFileName
).
readOnly
().
open
();
FileUtils
.
delete
(
targetFileName
);
MVStore
target
=
new
MVStore
.
Builder
().
fileName
(
targetFileName
).
open
();
MVMap
<
String
,
String
>
sourceMeta
=
source
.
getMetaMap
();
MVMap
<
String
,
String
>
targetMeta
=
target
.
getMetaMap
();
for
(
Entry
<
String
,
String
>
m
:
sourceMeta
.
entrySet
())
{
String
key
=
m
.
getKey
();
if
(
key
.
startsWith
(
"chunk."
))
{
// ignore
}
else
if
(
key
.
startsWith
(
"map."
))
{
// ignore
}
else
if
(
key
.
startsWith
(
"name."
))
{
// ignore
}
else
if
(
key
.
startsWith
(
"root."
))
{
// ignore
}
else
{
targetMeta
.
put
(
key
,
m
.
getValue
());
}
}
for
(
String
mapName
:
source
.
getMapNames
())
{
MVMap
.
Builder
<
Object
,
Object
>
mp
=
new
MVMap
.
Builder
<
Object
,
Object
>().
keyType
(
new
GenericDataType
()).
valueType
(
new
GenericDataType
());
MVMap
<
Object
,
Object
>
sourceMap
=
source
.
openMap
(
mapName
,
mp
);
MVMap
<
Object
,
Object
>
targetMap
=
target
.
openMap
(
mapName
,
mp
);
targetMap
.
copyFrom
(
sourceMap
);
target
.
commit
();
}
target
.
close
();
source
.
close
();
}
/**
* A data type that can read any data that is persisted, and converts it to
* a byte array.
*/
static
class
GenericDataType
implements
DataType
{
@Override
public
int
compare
(
Object
a
,
Object
b
)
{
throw
DataUtils
.
newUnsupportedOperationException
(
"Can not compare"
);
}
@Override
public
int
getMemory
(
Object
obj
)
{
return
obj
==
null
?
0
:
((
byte
[])
obj
).
length
;
}
@Override
public
void
write
(
WriteBuffer
buff
,
Object
obj
)
{
if
(
obj
!=
null
)
{
buff
.
put
((
byte
[])
obj
);
}
}
@Override
public
void
write
(
WriteBuffer
buff
,
Object
[]
obj
,
int
len
,
boolean
key
)
{
for
(
Object
o
:
obj
)
{
write
(
buff
,
o
);
}
}
@Override
public
Object
read
(
ByteBuffer
buff
)
{
int
len
=
buff
.
remaining
();
if
(
len
==
0
)
{
return
null
;
}
byte
[]
data
=
new
byte
[
len
];
buff
.
get
(
data
);
return
data
;
}
@Override
public
void
read
(
ByteBuffer
buff
,
Object
[]
obj
,
int
len
,
boolean
key
)
{
for
(
int
i
=
0
;
i
<
obj
.
length
;
i
++)
{
obj
[
i
]
=
read
(
buff
);
}
}
}
}
}
This diff is collapsed.
Click to expand it.
h2/src/test/org/h2/test/store/TestMVStoreTool.java
0 → 100644
浏览文件 @
5301473f
/*
* Copyright 2004-2014 H2 Group. Multiple-Licensed under the MPL 2.0,
* and the EPL 1.0 (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
test
.
store
;
import
java.util.Map.Entry
;
import
org.h2.mvstore.MVMap
;
import
org.h2.mvstore.MVStore
;
import
org.h2.mvstore.MVStoreTool
;
import
org.h2.store.fs.FileUtils
;
import
org.h2.test.TestBase
;
/**
* Tests the MVStoreTool class.
*/
public
class
TestMVStoreTool
extends
TestBase
{
/**
* Run just this test.
*
* @param a ignored
*/
public
static
void
main
(
String
...
a
)
throws
Exception
{
TestBase
test
=
TestBase
.
createCaller
().
init
();
test
.
config
.
traceTest
=
true
;
test
.
config
.
big
=
true
;
test
.
test
();
}
@Override
public
void
test
()
throws
Exception
{
testCompress
();
}
private
void
testCompress
()
{
String
fileName
=
getBaseDir
()
+
"/testCompress.h3"
;
FileUtils
.
delete
(
fileName
);
// store with a very small page size, to make sure
// there are many leaf pages
MVStore
s
=
new
MVStore
.
Builder
().
pageSplitSize
(
100
).
fileName
(
fileName
).
autoCommitDisabled
().
open
();
MVMap
<
Integer
,
Integer
>
map
=
s
.
openMap
(
"data"
);
for
(
int
i
=
0
;
i
<
10
;
i
++)
{
map
.
put
(
i
,
i
*
10
);
if
(
i
%
3
==
0
)
{
s
.
commit
();
}
}
s
.
close
();
MVStoreTool
.
dump
(
fileName
);
MVStoreTool
.
dump
(
fileName
+
".new"
);
MVStoreTool
.
compress
(
fileName
,
fileName
+
".new"
);
MVStore
s1
=
new
MVStore
.
Builder
().
fileName
(
fileName
).
readOnly
().
open
();
MVStore
s2
=
new
MVStore
.
Builder
().
fileName
(
fileName
+
".new"
).
readOnly
().
open
();
assertEquals
(
s1
,
s2
);
}
private
void
assertEquals
(
MVStore
a
,
MVStore
b
)
{
assertEquals
(
a
.
getMapNames
().
size
(),
b
.
getMapNames
().
size
());
for
(
String
mapName
:
a
.
getMapNames
())
{
MVMap
<?,
?>
ma
=
a
.
openMap
(
mapName
);
MVMap
<?,
?>
mb
=
a
.
openMap
(
mapName
);
assertEquals
(
ma
.
sizeAsLong
(),
mb
.
sizeAsLong
());
for
(
Entry
<?,
?>
e
:
ma
.
entrySet
())
{
Object
x
=
mb
.
get
(
e
.
getKey
());
assertEquals
(
e
.
getValue
().
toString
(),
x
.
toString
());
}
}
}
}
This diff is collapsed.
Click to expand it.
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论