Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
96079ea4
提交
96079ea4
authored
10月 14, 2015
作者:
Thomas Mueller Graf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
MVStore tool now supports info for compressed pages
上级
a743a1d7
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
29 行增加
和
8 行删除
+29
-8
MVStoreTool.java
h2/src/main/org/h2/mvstore/MVStoreTool.java
+29
-8
没有找到文件。
h2/src/main/org/h2/mvstore/MVStoreTool.java
浏览文件 @
96079ea4
...
@@ -15,6 +15,9 @@ import java.util.Map;
...
@@ -15,6 +15,9 @@ 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.compress.CompressDeflate
;
import
org.h2.compress.CompressLZF
;
import
org.h2.compress.Compressor
;
import
org.h2.engine.Constants
;
import
org.h2.engine.Constants
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
import
org.h2.mvstore.type.DataType
;
import
org.h2.mvstore.type.DataType
;
...
@@ -149,6 +152,7 @@ public class MVStoreTool {
...
@@ -149,6 +152,7 @@ public class MVStoreTool {
new
TreeMap
<
Integer
,
Integer
>();
new
TreeMap
<
Integer
,
Integer
>();
int
pageSizeSum
=
0
;
int
pageSizeSum
=
0
;
while
(
remaining
>
0
)
{
while
(
remaining
>
0
)
{
int
start
=
p
;
try
{
try
{
chunk
.
position
(
p
);
chunk
.
position
(
p
);
}
catch
(
IllegalArgumentException
e
)
{
}
catch
(
IllegalArgumentException
e
)
{
...
@@ -162,7 +166,7 @@ public class MVStoreTool {
...
@@ -162,7 +166,7 @@ public class MVStoreTool {
int
mapId
=
DataUtils
.
readVarInt
(
chunk
);
int
mapId
=
DataUtils
.
readVarInt
(
chunk
);
int
entries
=
DataUtils
.
readVarInt
(
chunk
);
int
entries
=
DataUtils
.
readVarInt
(
chunk
);
int
type
=
chunk
.
get
();
int
type
=
chunk
.
get
();
boolean
compressed
=
(
type
&
2
)
!=
0
;
boolean
compressed
=
(
type
&
DataUtils
.
PAGE_COMPRESSED
)
!=
0
;
boolean
node
=
(
type
&
1
)
!=
0
;
boolean
node
=
(
type
&
1
)
!=
0
;
if
(
details
)
{
if
(
details
)
{
pw
.
printf
(
pw
.
printf
(
...
@@ -206,12 +210,25 @@ public class MVStoreTool {
...
@@ -206,12 +210,25 @@ public class MVStoreTool {
}
}
String
[]
keys
=
new
String
[
entries
];
String
[]
keys
=
new
String
[
entries
];
if
(
mapId
==
0
&&
details
)
{
if
(
mapId
==
0
&&
details
)
{
if
(!
compressed
)
{
ByteBuffer
data
;
if
(
compressed
)
{
boolean
fast
=
!((
type
&
DataUtils
.
PAGE_COMPRESSED_HIGH
)
==
DataUtils
.
PAGE_COMPRESSED_HIGH
);
Compressor
compressor
=
getCompressor
(
fast
);
int
lenAdd
=
DataUtils
.
readVarInt
(
chunk
);
int
compLen
=
pageSize
+
start
-
chunk
.
position
();
byte
[]
comp
=
DataUtils
.
newBytes
(
compLen
);
chunk
.
get
(
comp
);
int
l
=
compLen
+
lenAdd
;
data
=
ByteBuffer
.
allocate
(
l
);
compressor
.
expand
(
comp
,
0
,
compLen
,
data
.
array
(),
0
,
l
);
}
else
{
data
=
chunk
;
}
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
String
k
=
StringDataType
.
INSTANCE
.
read
(
chunk
);
String
k
=
StringDataType
.
INSTANCE
.
read
(
data
);
keys
[
i
]
=
k
;
keys
[
i
]
=
k
;
}
}
}
if
(
node
)
{
if
(
node
)
{
// meta map node
// meta map node
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
...
@@ -231,11 +248,11 @@ public class MVStoreTool {
...
@@ -231,11 +248,11 @@ public class MVStoreTool {
keys
.
length
>=
entries
?
null
:
keys
[
entries
],
keys
.
length
>=
entries
?
null
:
keys
[
entries
],
DataUtils
.
getPageChunkId
(
cp
),
DataUtils
.
getPageChunkId
(
cp
),
DataUtils
.
getPageOffset
(
cp
));
DataUtils
.
getPageOffset
(
cp
));
}
else
if
(!
compressed
)
{
}
else
{
// meta map leaf
// meta map leaf
String
[]
values
=
new
String
[
entries
];
String
[]
values
=
new
String
[
entries
];
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
String
v
=
StringDataType
.
INSTANCE
.
read
(
chunk
);
String
v
=
StringDataType
.
INSTANCE
.
read
(
data
);
values
[
i
]
=
v
;
values
[
i
]
=
v
;
}
}
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
for
(
int
i
=
0
;
i
<
entries
;
i
++)
{
...
@@ -299,6 +316,10 @@ public class MVStoreTool {
...
@@ -299,6 +316,10 @@ public class MVStoreTool {
pw
.
flush
();
pw
.
flush
();
}
}
private
static
Compressor
getCompressor
(
boolean
fast
)
{
return
fast
?
new
CompressLZF
()
:
new
CompressDeflate
();
}
/**
/**
* Read the summary information of the file and write them to system out.
* Read the summary information of the file and write them to system out.
*
*
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论