Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
ab73da1e
提交
ab73da1e
authored
2月 24, 2017
作者:
Thomas Mueller Graf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
This field is reset only for the dummy object, so it's OK
上级
d348eca9
显示空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
8 行增加
和
8 行删除
+8
-8
FilePathMem.java
h2/src/main/org/h2/store/fs/FilePathMem.java
+8
-8
没有找到文件。
h2/src/main/org/h2/store/fs/FilePathMem.java
浏览文件 @
ab73da1e
...
@@ -436,7 +436,7 @@ class FileMemData {
...
@@ -436,7 +436,7 @@ class FileMemData {
private
final
int
id
;
private
final
int
id
;
private
final
boolean
compress
;
private
final
boolean
compress
;
private
long
length
;
private
long
length
;
private
AtomicReference
<
byte
[]>[]
buffers
;
private
AtomicReference
<
byte
[]>[]
data
;
private
long
lastModified
;
private
long
lastModified
;
private
boolean
isReadOnly
;
private
boolean
isReadOnly
;
private
boolean
isLockedExclusive
;
private
boolean
isLockedExclusive
;
...
@@ -454,7 +454,7 @@ class FileMemData {
...
@@ -454,7 +454,7 @@ class FileMemData {
this
.
name
=
name
;
this
.
name
=
name
;
this
.
id
=
name
.
hashCode
();
this
.
id
=
name
.
hashCode
();
this
.
compress
=
compress
;
this
.
compress
=
compress
;
this
.
buffers
=
new
AtomicReference
[
0
];
this
.
data
=
new
AtomicReference
[
0
];
lastModified
=
System
.
currentTimeMillis
();
lastModified
=
System
.
currentTimeMillis
();
}
}
...
@@ -465,7 +465,7 @@ class FileMemData {
...
@@ -465,7 +465,7 @@ class FileMemData {
* @return the byte array, or null
* @return the byte array, or null
*/
*/
byte
[]
getPage
(
int
page
)
{
byte
[]
getPage
(
int
page
)
{
AtomicReference
<
byte
[]>[]
b
=
buffers
;
AtomicReference
<
byte
[]>[]
b
=
data
;
if
(
page
>=
b
.
length
)
{
if
(
page
>=
b
.
length
)
{
return
null
;
return
null
;
}
}
...
@@ -482,7 +482,7 @@ class FileMemData {
...
@@ -482,7 +482,7 @@ class FileMemData {
* doesn't match
* doesn't match
*/
*/
void
setPage
(
int
page
,
byte
[]
oldData
,
byte
[]
newData
,
boolean
force
)
{
void
setPage
(
int
page
,
byte
[]
oldData
,
byte
[]
newData
,
boolean
force
)
{
AtomicReference
<
byte
[]>[]
b
=
buffers
;
AtomicReference
<
byte
[]>[]
b
=
data
;
if
(
page
>=
b
.
length
)
{
if
(
page
>=
b
.
length
)
{
return
;
return
;
}
}
...
@@ -687,12 +687,12 @@ class FileMemData {
...
@@ -687,12 +687,12 @@ class FileMemData {
length
=
len
;
length
=
len
;
len
=
MathUtils
.
roundUpLong
(
len
,
BLOCK_SIZE
);
len
=
MathUtils
.
roundUpLong
(
len
,
BLOCK_SIZE
);
int
blocks
=
(
int
)
(
len
>>>
BLOCK_SIZE_SHIFT
);
int
blocks
=
(
int
)
(
len
>>>
BLOCK_SIZE_SHIFT
);
if
(
blocks
!=
buffers
.
length
)
{
if
(
blocks
!=
data
.
length
)
{
AtomicReference
<
byte
[]>[]
n
=
Arrays
.
copyOf
(
buffers
,
blocks
);
AtomicReference
<
byte
[]>[]
n
=
Arrays
.
copyOf
(
data
,
blocks
);
for
(
int
i
=
buffers
.
length
;
i
<
blocks
;
i
++)
{
for
(
int
i
=
data
.
length
;
i
<
blocks
;
i
++)
{
n
[
i
]
=
new
AtomicReference
<
byte
[]>(
COMPRESSED_EMPTY_BLOCK
);
n
[
i
]
=
new
AtomicReference
<
byte
[]>(
COMPRESSED_EMPTY_BLOCK
);
}
}
buffers
=
n
;
data
=
n
;
}
}
}
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论