Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
e539889c
提交
e539889c
authored
12月 22, 2016
作者:
Noel Grandin
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
improve naming in FileNioMemData
上级
9b7dc1d0
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
18 行增加
和
20 行删除
+18
-20
FilePathNioMem.java
h2/src/main/org/h2/store/fs/FilePathNioMem.java
+18
-20
没有找到文件。
h2/src/main/org/h2/store/fs/FilePathNioMem.java
浏览文件 @
e539889c
...
@@ -17,7 +17,6 @@ import java.util.LinkedHashMap;
...
@@ -17,7 +17,6 @@ import java.util.LinkedHashMap;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
java.util.TreeMap
;
import
java.util.TreeMap
;
import
org.h2.api.ErrorCode
;
import
org.h2.api.ErrorCode
;
import
org.h2.compress.CompressLZF
;
import
org.h2.compress.CompressLZF
;
import
org.h2.message.DbException
;
import
org.h2.message.DbException
;
...
@@ -404,11 +403,11 @@ class FileNioMemData {
...
@@ -404,11 +403,11 @@ class FileNioMemData {
private
static
final
byte
[]
BUFFER
=
new
byte
[
BLOCK_SIZE
*
2
];
private
static
final
byte
[]
BUFFER
=
new
byte
[
BLOCK_SIZE
*
2
];
private
static
final
ByteBuffer
COMPRESSED_EMPTY_BLOCK
;
private
static
final
ByteBuffer
COMPRESSED_EMPTY_BLOCK
;
private
static
final
Cache
<
CompressItem
,
CompressItem
>
COMPRESS_LATER
=
private
static
final
C
ompressLaterC
ache
<
CompressItem
,
CompressItem
>
COMPRESS_LATER
=
new
Cache
<
CompressItem
,
CompressItem
>(
CACHE_SIZE
);
new
C
ompressLaterC
ache
<
CompressItem
,
CompressItem
>(
CACHE_SIZE
);
private
String
name
;
private
String
name
;
private
final
int
id
;
private
final
int
nameHashCode
;
private
final
boolean
compress
;
private
final
boolean
compress
;
private
long
length
;
private
long
length
;
private
ByteBuffer
[]
data
;
private
ByteBuffer
[]
data
;
...
@@ -426,16 +425,12 @@ class FileNioMemData {
...
@@ -426,16 +425,12 @@ class FileNioMemData {
FileNioMemData
(
String
name
,
boolean
compress
)
{
FileNioMemData
(
String
name
,
boolean
compress
)
{
this
.
name
=
name
;
this
.
name
=
name
;
this
.
id
=
name
.
hashCode
();
this
.
nameHashCode
=
name
.
hashCode
();
this
.
compress
=
compress
;
this
.
compress
=
compress
;
data
=
new
ByteBuffer
[
0
];
data
=
new
ByteBuffer
[
0
];
lastModified
=
System
.
currentTimeMillis
();
lastModified
=
System
.
currentTimeMillis
();
}
}
int
getId
()
{
return
id
;
}
/**
/**
* Lock the file in exclusive mode if possible.
* Lock the file in exclusive mode if possible.
*
*
...
@@ -476,12 +471,12 @@ class FileNioMemData {
...
@@ -476,12 +471,12 @@ class FileNioMemData {
/**
/**
* This small cache compresses the data if an element leaves the cache.
* This small cache compresses the data if an element leaves the cache.
*/
*/
static
class
Cache
<
K
,
V
>
extends
LinkedHashMap
<
K
,
V
>
{
static
class
C
ompressLaterC
ache
<
K
,
V
>
extends
LinkedHashMap
<
K
,
V
>
{
private
static
final
long
serialVersionUID
=
1L
;
private
static
final
long
serialVersionUID
=
1L
;
private
final
int
size
;
private
final
int
size
;
Cache
(
int
size
)
{
C
ompressLaterC
ache
(
int
size
)
{
super
(
size
,
(
float
)
0.75
,
true
);
super
(
size
,
(
float
)
0.75
,
true
);
this
.
size
=
size
;
this
.
size
=
size
;
}
}
...
@@ -505,16 +500,21 @@ class FileNioMemData {
...
@@ -505,16 +500,21 @@ class FileNioMemData {
/**
/**
* The file data.
* The file data.
*/
*/
FileNioMemData
data
;
public
final
FileNioMemData
data
;
/**
/**
* The page to compress.
* The page to compress.
*/
*/
int
page
;
public
final
int
page
;
public
CompressItem
(
FileNioMemData
data
,
int
page
)
{
this
.
data
=
data
;
this
.
page
=
page
;
}
@Override
@Override
public
int
hashCode
()
{
public
int
hashCode
()
{
return
page
^
data
.
getId
()
;
return
page
^
data
.
nameHashCode
;
}
}
@Override
@Override
...
@@ -528,10 +528,8 @@ class FileNioMemData {
...
@@ -528,10 +528,8 @@ class FileNioMemData {
}
}
private
void
compressLater
(
int
page
)
{
private
void
addToCompressLaterCache
(
int
page
)
{
CompressItem
c
=
new
CompressItem
();
CompressItem
c
=
new
CompressItem
(
this
,
page
);
c
.
data
=
this
;
c
.
page
=
page
;
synchronized
(
LZF
)
{
synchronized
(
LZF
)
{
COMPRESS_LATER
.
put
(
c
,
c
);
COMPRESS_LATER
.
put
(
c
,
c
);
}
}
...
@@ -615,7 +613,7 @@ class FileNioMemData {
...
@@ -615,7 +613,7 @@ class FileNioMemData {
d
.
put
(
i
,
(
byte
)
0
);
d
.
put
(
i
,
(
byte
)
0
);
}
}
if
(
compress
)
{
if
(
compress
)
{
compressLater
(
lastPage
);
addToCompressLaterCache
(
lastPage
);
}
}
}
}
}
}
...
@@ -677,7 +675,7 @@ class FileNioMemData {
...
@@ -677,7 +675,7 @@ class FileNioMemData {
b
.
position
(
oldPosition
);
b
.
position
(
oldPosition
);
}
}
if
(
compress
)
{
if
(
compress
)
{
compressLater
(
page
);
addToCompressLaterCache
(
page
);
}
}
off
+=
l
;
off
+=
l
;
pos
+=
l
;
pos
+=
l
;
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论