Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
298fe280
D
Docs
项目概览
OpenHarmony
/
Docs
大约 1 年 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
298fe280
编写于
10月 17, 2022
作者:
J
jiangyuan0000
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
hidebug napi接口优化
Signed-off-by:
N
jiangyuan0000
<
jiangyuan29@huawei.com
>
上级
287971b2
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
136 addition
and
11 deletion
+136
-11
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
+116
-11
zh-cn/application-dev/reference/errorcodes/errorcode-hiviewdfx-hidebug.md
...n-dev/reference/errorcodes/errorcode-hiviewdfx-hidebug.md
+20
-0
未找到文件。
zh-cn/application-dev/reference/apis/js-apis-hidebug.md
浏览文件 @
298fe280
...
...
@@ -162,10 +162,12 @@ getCpuUsage(): number
let
cpuUsage
=
hidebug
.
getCpuUsage
();
```
## hidebug.startProfiling
## hidebug.startProfiling
<sup>(deprecated)</sup>
startProfiling(filename : string) : void
> **说明:** 从 API Version 9 开始废弃,建议使用[hidebug.startJsCpuProfiling](#hidebugstartjscpuprofiling9)替代。
启动虚拟机Profiling方法跟踪,
`startProfiling()`
方法的调用需要与
`stopProfiling()`
方法的调用一一对应,先开启后关闭,严禁使用
`start->start->stop`
,
`start->stop->stop`
,
`start->start->stop->stop`
等类似的顺序调用。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
...
...
@@ -188,10 +190,12 @@ hidebug.stopProfiling();
## hidebug.stopProfiling
## hidebug.stopProfiling
<sup>(deprecated)</sup>
stopProfiling() : void
> **说明:** 从 API Version 9 开始废弃,建议使用[hidebug.stopJsCpuProfiling](#hidebugstopjscpuprofiling9)替代。
停止虚拟机Profiling方法跟踪,
`stopProfiling()`
方法的调用需要与
`startProfiling()`
方法的调用一一对应,先开启后关闭,严禁使用
`start->start->stop`
,
`start->stop->stop`
,
`start->start->stop->stop`
等类似的顺序调用。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
...
...
@@ -206,10 +210,12 @@ hidebug.startProfiling("cpuprofiler-20220216");
hidebug
.
stopProfiling
();
```
## hidebug.dumpHeapData
## hidebug.dumpHeapData
<sup>(deprecated)</sup>
dumpHeapData(filename : string) : void
> **说明:** 从 API Version 9 开始废弃,建议使用[hidebug.dumpJsHeapData](#hidebugdumpjsheapdata9)替代。
虚拟机堆导出。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
...
...
@@ -228,11 +234,11 @@ hidebug.dumpHeapData("heap-20220216");
## hidebug.getServiceDump<sup>9+<sup>
getServiceDump(serviceid : number
) : string
getServiceDump(serviceid : number
, fd : number, args : Array
<string>
) : void
获取系统服务信息。
此接口为系统接口,三方应用不可用。
**需要权限**
: ohos.permission.DUMP
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
...
...
@@ -241,16 +247,115 @@ getServiceDump(serviceid : number) : string
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| serviceid | number | 是 | 基于该用户输入的service id获取系统服务信息。|
| fd | number | 是 | 文件描述符,该接口会往该fd中写入数据。|
| args | Array
<string>
| 是 | 系统服务的Dump接口所对应的参数列表。|
**返回值:**
| 类型 | 说明 |
| ------ | -------------------------- |
| string | 返回dump的service信息文件的绝对路径。 |
**示例:**
```
js
import
fileio
from
'
@ohos.fileio
'
import
hidebug
from
'
@ohos.hidebug
'
import
featureAbility
from
'
@ohos.ability.featureAbility
'
let
context
=
featureAbility
.
getContext
();
context
.
getFilesDir
().
then
((
data
)
=>
{
var
path
=
data
+
"
/serviceInfo.txt
"
console
.
info
(
"
output path:
"
+
path
)
let
fd
=
fileio
.
openSync
(
path
,
0o102
,
0o666
)
var
serviceId
=
10
var
args
=
new
Array
(
"
allInfo
"
)
try
{
hidebug
.
getServiceDump
(
serviceId
,
fd
,
args
)
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
}
fileio
.
closeSync
(
fd
);
})
```
## hidebug.startJsCpuProfiling<sup>9+</sup>
startJsCpuProfiling(filename : string) : void
启动虚拟机Profiling方法跟踪,
`startJsCpuProfiling()`
方法的调用需要与
`stopJsCpuProfiling()`
方法的调用一一对应,先开启后关闭,严禁使用
`start->start->stop`
,
`start->stop->stop`
,
`start->start->stop->stop`
等类似的顺序调用。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| filename | string | 是 | 用户自定义的profiling文件名,根据传入的
`filename`
,将在应用的
`files`
目录生成
`filename.json`
文件。 |
**示例:**
```
js
import
hidebug
from
'
@ohos.hidebug
'
try
{
hidebug
.
startJsCpuProfiling
(
"
cpu_profiling
"
);
...
hidebug
.
stopJsCpuProfiling
();
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
}
```
## hidebug.stopJsCpuProfiling<sup>9+</sup>
stopJsCpuProfiling() : void
停止虚拟机Profiling方法跟踪,
`startJsCpuProfiling()`
方法的调用需要与
`stopJsCpuProfiling()`
方法的调用一一对应,先开启后关闭,严禁使用
`start->start->stop`
,
`start->stop->stop`
,
`start->start->stop->stop`
等类似的顺序调用。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| filename | string | 是 | 用户自定义的profiling文件名,根据传入的
`filename`
,将在应用的
`files`
目录生成
`filename.json`
文件。 |
**示例:**
```
js
import
hidebug
from
'
@ohos.hidebug
'
try
{
hidebug
.
startJsCpuProfiling
(
"
cpu_profiling
"
);
...
hidebug
.
stopJsCpuProfiling
();
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
}
```
## hidebug.dumpJsHeapData<sup>9+</sup>
dumpJsHeapData(filename : string) : void
虚拟机堆导出。
**系统能力:**
SystemCapability.HiviewDFX.HiProfiler.HiDebug
**参数:**
| 参数名 | 类型 | 必填 | 说明 |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| filename | string | 是 | 用户自定义的虚拟机堆文件名,根据传入的
`filename`
,将在应用的
`files`
目录生成
`filename.heapsnapshot`
文件。 |
**示例:**
```
js
let
serviceId
=
10
;
let
pathName
=
hidebug
.
getServiceDump
(
serviceId
);
import
hidebug
from
'
@ohos.hidebug
'
try
{
hidebug
.
dumpJsHeapData
(
"
heapData
"
);
}
catch
(
error
)
{
console
.
info
(
error
.
code
)
console
.
info
(
error
.
message
)
}
```
\ No newline at end of file
zh-cn/application-dev/reference/errorcodes/errorcode-hiviewdfx-hidebug.md
0 → 100644
浏览文件 @
298fe280
# Hidebug错误码
## 11400101 系统服务获取失败
**错误信息**
ServiceId is invalid, systemAbility is not exist.
**错误描述**
当前serviceId未查询到对应的系统服务。
**可能原因**
当前serviceId未查询到对应的系统服务。
**处理步骤**
传入正确的系统服务id。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录