Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
46f4961f
提交
46f4961f
authored
11月 28, 2013
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix the write buffer
上级
696b949a
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
17 行增加
和
10 行删除
+17
-10
WriteBuffer.java
h2/src/main/org/h2/mvstore/WriteBuffer.java
+9
-10
TestDataUtils.java
h2/src/test/org/h2/test/store/TestDataUtils.java
+8
-0
没有找到文件。
h2/src/main/org/h2/mvstore/WriteBuffer.java
浏览文件 @
46f4961f
...
...
@@ -13,14 +13,14 @@ import java.nio.ByteBuffer;
*/
public
class
WriteBuffer
{
private
static
final
int
MAX_REUSE_
LIMIT
=
4
*
1024
*
1024
;
private
static
final
int
MAX_REUSE_
CAPACITY
=
4
*
1024
*
1024
;
/**
* The m
aximum byte
to grow a buffer at a time.
* The m
inimum number of bytes
to grow a buffer at a time.
*/
private
static
final
int
M
AX
_GROW
=
1024
*
1024
;
private
static
final
int
M
IN
_GROW
=
1024
*
1024
;
private
ByteBuffer
reuse
=
ByteBuffer
.
allocate
(
512
*
1024
);
private
ByteBuffer
reuse
=
ByteBuffer
.
allocate
(
MIN_GROW
);
private
ByteBuffer
buff
=
reuse
;
...
...
@@ -273,7 +273,7 @@ public class WriteBuffer {
* @return this
*/
public
WriteBuffer
clear
()
{
if
(
buff
.
limit
()
>
MAX_REUSE_
LIMIT
)
{
if
(
buff
.
limit
()
>
MAX_REUSE_
CAPACITY
)
{
buff
=
reuse
;
}
else
if
(
buff
!=
reuse
)
{
reuse
=
buff
;
...
...
@@ -300,13 +300,12 @@ public class WriteBuffer {
private
void
grow
(
int
len
)
{
ByteBuffer
temp
=
buff
;
len
=
temp
.
remaining
()
+
len
;
int
capacity
=
temp
.
capacity
();
len
=
Math
.
max
(
len
,
Math
.
min
(
capacity
+
MAX_GROW
,
capacity
*
2
));
buff
=
ByteBuffer
.
allocate
(
len
);
int
needed
=
len
-
temp
.
remaining
();
int
newCapacity
=
temp
.
capacity
()
+
Math
.
max
(
needed
,
MIN_GROW
);
buff
=
ByteBuffer
.
allocate
(
newCapacity
);
temp
.
flip
();
buff
.
put
(
temp
);
if
(
len
<=
MAX_REUSE_LIMIT
)
{
if
(
newCapacity
<=
MAX_REUSE_CAPACITY
)
{
reuse
=
buff
;
}
}
...
...
h2/src/test/org/h2/test/store/TestDataUtils.java
浏览文件 @
46f4961f
...
...
@@ -13,6 +13,7 @@ import java.util.HashMap;
import
java.util.Random
;
import
org.h2.mvstore.DataUtils
;
import
org.h2.mvstore.WriteBuffer
;
import
org.h2.test.TestBase
;
/**
...
...
@@ -31,6 +32,7 @@ public class TestDataUtils extends TestBase {
@Override
public
void
test
()
{
testWriteBuffer
();
testEncodeLength
();
testFletcher
();
testMap
();
...
...
@@ -40,6 +42,12 @@ public class TestDataUtils extends TestBase {
testCheckValue
();
testPagePos
();
}
private
static
void
testWriteBuffer
()
{
WriteBuffer
buff
=
new
WriteBuffer
();
buff
.
put
(
new
byte
[
1500000
]);
buff
.
put
(
new
byte
[
1900000
]);
}
private
void
testFletcher
()
{
byte
[]
data
=
new
byte
[
10000
];
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论