Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
8bef9bc8
提交
8bef9bc8
authored
3月 09, 2018
作者:
Evgenij Ryazanov
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Do not pass HashMap to SequenceMap.init()
上级
c72a244c
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
12 行增加
和
26 行删除
+12
-26
MVMap.java
h2/src/main/org/h2/mvstore/MVMap.java
+6
-9
MVStore.java
h2/src/main/org/h2/mvstore/MVStore.java
+4
-14
SequenceMap.java
h2/src/test/org/h2/test/store/SequenceMap.java
+2
-3
没有找到文件。
h2/src/main/org/h2/mvstore/MVMap.java
浏览文件 @
8bef9bc8
...
...
@@ -8,7 +8,6 @@ package org.h2.mvstore;
import
java.util.AbstractList
;
import
java.util.AbstractMap
;
import
java.util.AbstractSet
;
import
java.util.HashMap
;
import
java.util.Iterator
;
import
java.util.List
;
import
java.util.Map
;
...
...
@@ -96,12 +95,13 @@ public class MVMap<K, V> extends AbstractMap<K, V>
* Open this map with the given store and configuration.
*
* @param store the store
* @param config the configuration
* @param id map id
* @param createVersion version in which this map was created
*/
protected
void
init
(
MVStore
store
,
HashMap
<
String
,
Object
>
config
)
{
protected
void
init
(
MVStore
store
,
int
id
,
long
createVersion
)
{
this
.
store
=
store
;
this
.
id
=
DataUtils
.
readHexInt
(
config
,
"id"
,
0
)
;
this
.
createVersion
=
DataUtils
.
readHexLong
(
config
,
"createVersion"
,
0
)
;
this
.
id
=
id
;
this
.
createVersion
=
createVersion
;
this
.
writeVersion
=
store
.
getCurrentVersion
();
this
.
root
=
Page
.
createEmpty
(
this
,
-
1
);
}
...
...
@@ -1112,10 +1112,7 @@ public class MVMap<K, V> extends AbstractMap<K, V>
MVMap
<
K
,
V
>
openReadOnly
()
{
MVMap
<
K
,
V
>
m
=
new
MVMap
<>(
keyType
,
valueType
);
m
.
readOnly
=
true
;
HashMap
<
String
,
Object
>
config
=
new
HashMap
<>();
config
.
put
(
"id"
,
id
);
config
.
put
(
"createVersion"
,
createVersion
);
m
.
init
(
store
,
config
);
m
.
init
(
store
,
id
,
createVersion
);
m
.
root
=
root
;
return
m
;
}
...
...
h2/src/main/org/h2/mvstore/MVStore.java
浏览文件 @
8bef9bc8
...
...
@@ -336,10 +336,7 @@ public final class MVStore {
(
UncaughtExceptionHandler
)
config
.
get
(
"backgroundExceptionHandler"
);
meta
=
new
MVMap
<>(
StringDataType
.
INSTANCE
,
StringDataType
.
INSTANCE
);
HashMap
<
String
,
Object
>
c
=
new
HashMap
<>();
c
.
put
(
"id"
,
0
);
c
.
put
(
"createVersion"
,
currentVersion
);
meta
.
init
(
this
,
c
);
meta
.
init
(
this
,
0
,
currentVersion
);
if
(
this
.
fileStore
!=
null
)
{
retentionTime
=
this
.
fileStore
.
getDefaultRetentionTime
();
int
kb
=
DataUtils
.
getConfigParam
(
config
,
"autoCommitBufferSize"
,
1024
);
...
...
@@ -445,35 +442,28 @@ public final class MVStore {
* @param builder the map builder
* @return the map
*/
@SuppressWarnings
({
"unchecked"
,
"rawtypes"
})
public
synchronized
<
M
extends
MVMap
<
K
,
V
>,
K
,
V
>
M
openMap
(
String
name
,
MVMap
.
MapBuilder
<
M
,
K
,
V
>
builder
)
{
checkOpen
();
String
x
=
meta
.
get
(
"name."
+
name
);
int
id
;
long
root
;
HashMap
<
String
,
Object
>
c
;
M
map
;
if
(
x
!=
null
)
{
id
=
DataUtils
.
parseHexInt
(
x
);
@SuppressWarnings
(
"unchecked"
)
M
old
=
(
M
)
maps
.
get
(
id
);
if
(
old
!=
null
)
{
return
old
;
}
map
=
builder
.
create
();
String
config
=
meta
.
get
(
MVMap
.
getMapKey
(
id
));
// Cast from HashMap<String, String> to HashMap<String, Object> is safe
c
=
(
HashMap
)
DataUtils
.
parseMap
(
config
);
c
.
put
(
"id"
,
id
);
map
.
init
(
this
,
c
);
map
.
init
(
this
,
id
,
DataUtils
.
readHexLong
(
DataUtils
.
parseMap
(
config
),
"createVersion"
,
0
));
root
=
getRootPos
(
meta
,
id
);
}
else
{
c
=
new
HashMap
<>();
id
=
++
lastMapId
;
c
.
put
(
"id"
,
id
);
c
.
put
(
"createVersion"
,
currentVersion
);
map
=
builder
.
create
();
map
.
init
(
this
,
c
);
map
.
init
(
this
,
id
,
currentVersion
);
markMetaChanged
();
x
=
Integer
.
toHexString
(
id
);
meta
.
put
(
MVMap
.
getMapKey
(
id
),
map
.
asString
(
name
));
...
...
h2/src/test/org/h2/test/store/SequenceMap.java
浏览文件 @
8bef9bc8
...
...
@@ -6,7 +6,6 @@
package
org
.
h2
.
test
.
store
;
import
java.util.AbstractSet
;
import
java.util.HashMap
;
import
java.util.Iterator
;
import
java.util.Set
;
import
org.h2.mvstore.MVMap
;
...
...
@@ -32,8 +31,8 @@ public class SequenceMap extends MVMap<Long, Long> {
}
@Override
public
void
init
(
MVStore
store
,
HashMap
<
String
,
Object
>
config
)
{
super
.
init
(
store
,
config
);
public
void
init
(
MVStore
store
,
int
id
,
long
createVersion
)
{
super
.
init
(
store
,
id
,
createVersion
);
}
@Override
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论