Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
为 GitLab 提交贡献
登录/注册
切换导航
H
h2database
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分枝图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
分枝图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
Administrator
h2database
Commits
7751fa2e
提交
7751fa2e
authored
7月 25, 2010
作者:
Thomas Mueller
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Profiling: the jar file can now be installed as an agent using java -javaagent:h2*.jar
上级
c3bf3a26
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
86 行增加
和
0 行删除
+86
-0
MANIFEST.MF
h2/src/main/META-INF/MANIFEST.MF
+1
-0
MemoryFootprint.java
h2/src/test/org/h2/test/utils/MemoryFootprint.java
+85
-0
没有找到文件。
h2/src/main/META-INF/MANIFEST.MF
浏览文件 @
7751fa2e
...
@@ -13,3 +13,4 @@ Bundle-Vendor: H2 Group
...
@@ -13,3 +13,4 @@ Bundle-Vendor: H2 Group
Bundle-Version: ${version}
Bundle-Version: ${version}
DynamicImport-Package: *
DynamicImport-Package: *
Export-Package: org.h2,org.h2.api,org.h2.fulltext,org.h2.jdbcx,org.h2.tools,org.h2.util
Export-Package: org.h2,org.h2.api,org.h2.fulltext,org.h2.jdbcx,org.h2.tools,org.h2.util
Premain-Class: org.h2.util.Profiler
h2/src/test/org/h2/test/utils/MemoryFootprint.java
0 → 100644
浏览文件 @
7751fa2e
/*
* Copyright 2004-2010 H2 Group. Multiple-Licensed under the H2 License,
* Version 1.0, and under the Eclipse Public License, Version 1.0
* (http://h2database.com/html/license.html).
* Initial Developer: H2 Group
*/
package
org
.
h2
.
test
.
utils
;
import
java.io.IOException
;
import
java.lang.instrument.Instrumentation
;
import
java.math.BigDecimal
;
import
java.math.BigInteger
;
import
org.h2.engine.Constants
;
import
org.h2.result.Row
;
import
org.h2.store.Data
;
import
org.h2.util.Profiler
;
import
org.h2.value.Value
;
/**
* Calculate the memory footprint of various objects.
*/
public
class
MemoryFootprint
{
/**
* Run just this test.
*
* @param a ignored
*/
public
static
void
main
(
String
...
a
)
throws
IOException
{
// System.getProperties().store(System.out, "");
print
(
"Object"
,
new
Object
());
print
(
"Timestamp"
,
new
java
.
sql
.
Timestamp
(
0
));
print
(
"Date"
,
new
java
.
sql
.
Date
(
0
));
print
(
"Time"
,
new
java
.
sql
.
Time
(
0
));
print
(
"BigDecimal"
,
new
BigDecimal
(
"0"
));
print
(
"BigInteger"
,
new
BigInteger
(
"0"
));
print
(
"String"
,
new
String
(
"Hello"
));
print
(
"Data"
,
Data
.
create
(
null
,
10
));
print
(
"Row"
,
new
Row
(
new
Value
[
0
],
0
));
System
.
out
.
println
();
for
(
int
i
=
1
;
i
<
128
;
i
+=
i
)
{
System
.
out
.
println
(
getArraySize
(
1
,
i
)
+
" bytes per p1[]"
);
print
(
"boolean["
+
i
+
"]"
,
new
boolean
[
i
]);
System
.
out
.
println
(
getArraySize
(
2
,
i
)
+
" bytes per p2[]"
);
print
(
"char["
+
i
+
"]"
,
new
char
[
i
]);
print
(
"short["
+
i
+
"]"
,
new
short
[
i
]);
System
.
out
.
println
(
getArraySize
(
4
,
i
)
+
" bytes per p4[]"
);
print
(
"int["
+
i
+
"]"
,
new
int
[
i
]);
print
(
"float["
+
i
+
"]"
,
new
float
[
i
]);
System
.
out
.
println
(
getArraySize
(
8
,
i
)
+
" bytes per p8[]"
);
print
(
"long["
+
i
+
"]"
,
new
long
[
i
]);
print
(
"double["
+
i
+
"]"
,
new
double
[
i
]);
System
.
out
.
println
(
getArraySize
(
Constants
.
MEMORY_POINTER
,
i
)
+
" bytes per obj[]"
);
print
(
"Object["
+
i
+
"]"
,
new
Object
[
i
]);
System
.
out
.
println
();
}
}
private
static
int
getArraySize
(
int
type
,
int
length
)
{
return
((
Constants
.
MEMORY_OBJECT
+
length
*
type
)
+
7
)
/
8
*
8
;
}
private
static
void
print
(
String
type
,
Object
o
)
{
System
.
out
.
println
(
getObjectSize
(
o
)
+
" bytes per "
+
type
);
}
/**
* Get the number of bytes required for the given object.
* This method only works if the agent is set.
*
* @param o the object
* @return the number of bytes required
*/
public
static
long
getObjectSize
(
Object
o
)
{
Instrumentation
inst
=
Profiler
.
getInstrumentation
();
return
inst
==
null
?
0
:
inst
.
getObjectSize
(
o
);
}
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论