Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
0d27b71d
提交
0d27b71d
authored
7月 30, 2016
作者:
Thomas Mueller Graf
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Remove unused code
上级
b0264ee3
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
3 行增加
和
49 行删除
+3
-49
DataUtils.java
h2/src/main/org/h2/mvstore/DataUtils.java
+2
-36
WriteBuffer.java
h2/src/main/org/h2/mvstore/WriteBuffer.java
+1
-13
没有找到文件。
h2/src/main/org/h2/mvstore/DataUtils.java
浏览文件 @
0d27b71d
...
...
@@ -171,11 +171,6 @@ public class DataUtils {
*/
private
static
final
byte
[]
EMPTY_BYTES
=
{};
/**
* The maximum byte to grow a buffer at a time.
*/
private
static
final
int
MAX_GROW
=
16
*
1024
*
1024
;
/**
* Get the length of the variable size int.
*
...
...
@@ -300,14 +295,12 @@ public class DataUtils {
/**
* Write characters from a string (without the length).
*
* @param buff the target buffer
* @param buff the target buffer
(must be large enough)
* @param s the string
* @param len the number of characters
* @return the byte buffer
*/
public
static
ByteBuffer
writeStringData
(
ByteBuffer
buff
,
public
static
void
writeStringData
(
ByteBuffer
buff
,
String
s
,
int
len
)
{
buff
=
DataUtils
.
ensureCapacity
(
buff
,
3
*
len
);
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
int
c
=
s
.
charAt
(
i
);
if
(
c
<
0x80
)
{
...
...
@@ -321,7 +314,6 @@ public class DataUtils {
buff
.
put
((
byte
)
(
c
&
0x3f
));
}
}
return
buff
;
}
/**
...
...
@@ -860,32 +852,6 @@ public class DataUtils {
}
}
/**
* Ensure the byte buffer has the given capacity, plus 1 KB. If not, a new,
* larger byte buffer is created and the data is copied.
*
* @param buff the byte buffer
* @param len the minimum remaining capacity
* @return the byte buffer (possibly a new one)
*/
public
static
ByteBuffer
ensureCapacity
(
ByteBuffer
buff
,
int
len
)
{
len
+=
1024
;
if
(
buff
.
remaining
()
>
len
)
{
return
buff
;
}
return
grow
(
buff
,
len
);
}
private
static
ByteBuffer
grow
(
ByteBuffer
buff
,
int
len
)
{
len
=
buff
.
remaining
()
+
len
;
int
capacity
=
buff
.
capacity
();
len
=
Math
.
max
(
len
,
Math
.
min
(
capacity
+
MAX_GROW
,
capacity
*
2
));
ByteBuffer
temp
=
ByteBuffer
.
allocate
(
len
);
buff
.
flip
();
temp
.
put
(
buff
);
return
temp
;
}
/**
* Read a hex long value from a map.
*
...
...
h2/src/main/org/h2/mvstore/WriteBuffer.java
浏览文件 @
0d27b71d
...
...
@@ -73,19 +73,7 @@ public class WriteBuffer {
*/
public
WriteBuffer
putStringData
(
String
s
,
int
len
)
{
ByteBuffer
b
=
ensureCapacity
(
3
*
len
);
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
int
c
=
s
.
charAt
(
i
);
if
(
c
<
0x80
)
{
b
.
put
((
byte
)
c
);
}
else
if
(
c
>=
0x800
)
{
b
.
put
((
byte
)
(
0xe0
|
(
c
>>
12
)));
b
.
put
((
byte
)
(((
c
>>
6
)
&
0x3f
)));
b
.
put
((
byte
)
(
c
&
0x3f
));
}
else
{
b
.
put
((
byte
)
(
0xc0
|
(
c
>>
6
)));
b
.
put
((
byte
)
(
c
&
0x3f
));
}
}
DataUtils
.
writeStringData
(
b
,
s
,
len
);
return
this
;
}
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论