• Home
Name
Date
Size
#Lines
LOC

..--

scripts/12-May-2024-5132

src/12-May-2024-2,2321,855

test/testCase/12-May-2024-4730

README_zh.mdD12-May-20244 KiB11879

package.jsonD12-May-2024757 3231

tsconfig.jsonD12-May-202416.9 KiB624624

webpack.config.jsD12-May-20242.3 KiB6847

README_zh.md

1# 工具使用说明
2
3## 使用方式
4
5### 使用工具源码扫描
6
71. [下载应用API解析工具源码](https://gitee.com/openharmony/interface_sdk-js/tree/master/build-tools/collect_application_api)
8
92. 在package.json同级目录下执行npm install安装依赖
10
113. 在package.json同级目录下运行工具:
12
13   扫描单个应用,例:
14
15   ```
16   node .\src\entry\main.js --app 工程根目录 --sdk sdk根目录/9/ets  --output 报告的输出路径 --format excel
17   ```
18
19   扫描多个应用,例:
20
21   ```
22   node .\src\entry\main.js --appDir --sdkRoot sdk根目录 --output 报告的输出路径 --format excel
23   ```
24
25### 使用工具包扫描
26
271. [下载应用API解析工具源码](https://gitee.com/openharmony/interface_sdk-js/tree/master/build-tools/collect_application_api)
282. 在package.json同级目录下执行npm install安装依赖
293. 使用:npm run build进行打包,打包成功后,会生成dist文件夹,文件夹下的apiCollector压缩包即为打包后的工具
30
31#### 工具包结构
32
33```
34apiCollector-x.x.x.zip
35|- libs // ES库
36|- api-collector.js // 执行脚本
37```
38
39查看工具命令行参数,**api-collector.js 需要指定路径,以下例子命令行默认在解压目录下执行**
40
41```shell
42node api-collector.js -h
43```
44
45```shell
46Usage: api-collector [options]
47
48collect api from app's source code.
49
50Options:
51  -V, --version          output the version number
52  --app <string>         app root directory
53  --appDir <string>      a path that contains multiple applications
54  --sdk <string>         sdk path, need to specify the ets directory, e.g sdk-root/version/ets
55  --sdkRoot <string>     sdk root path
56  --output <string>      the path to output the report
57  --format <json,excel>  format of the output report
58  --scanTest             scan ohosTest
59  --debug                output debug logs
60  --noRepeat             apiInfos is not repeat
61  -h, --help             display help for command
62```
63
64工具输出 app_api.xlsx 或者 collectedApi.json,具体格式和路径取决于 --format, --output 参数
65
66#### 扫描单个应用
67
68```shell
69node api-collector.js --app 工程根目录 --sdk sdk根目录/9/ets  --output 报告的输出路径 --format excel
70```
71
72上述命令的行为:
73
741. 解析 local.properties 获取 sdk 根目录
752. 解析 build-profile.json5 获取 sdk 版本
763. 拼接完整 sdk 路径,指向到 sdk 目录下的 ets 目录
774. 扫描 build-profile.json5 中 modules 下的代码目录
78
79上述命令执行时可能存在 local.properties 文件不存在,导致 sdk 根目录无法获取,此时需要使用 --sdkRoot 指定 sdk 根目录
80
81```shell
82node api-collector.js --app 工程根目录 --sdkRoot sdk根目录
83```
84
85上述命令执行时还可能存在 build-profile.json5 文件找不到,或者无法解析到 sdk 的版本号,此时需要 --sdk 指定 sdk 目录中 ets 目录的路径
86
87```shell
88node api-collector.js --app 工程根目录 --sdk sdk根目录/9/ets
89```
90
91#### 扫描目录下的多个应用
92
93```shell
94node .\src\entry\main.js --appDir --sdkRoot sdk根目录 --output 报告的输出路径 --format excel
95```
96
97上述命令的行为:
98
991. 搜集目录下所有工程路径
1002. 遍历所有工程路径,按单个应用的方式进行扫描
101
102因此,上述命令也可能会遇到 sdk 路径无法识别的问题, 可以通过 --sdkRoot 指定 sdk 根目录
103
104```shell
105node api-collector.js --appDir 文件夹路径 --sdkRoot sdk根目录
106```
107
108扫描多个应用不支持 --sdk 参数,因为 --sdk 参数限定了 sdk 的版本号,而每个应用的版本号并不一致。批量扫描应用时,sdk 的版本号统一从 build-profile.json5 中 compileSdkVersion 字段获取,若 build-profile.json5 文件不存在或 compileSdkVersion 没有,则跳过此工程。
109
110## 指令参数
111
112--output 指定扫描报告的输出路径,不指定则默认输出在应用工程根目录
113
114--format 指定扫描报告的格式, 支持 excel, json,默认为 excel 表格
115
116--scanTest 扫描 ohosTest 目录下的代码
117
118--debug 打开debug日志