2022-10-13 11:29:04 +00:00
|
|
|
|
# 方舟eTS运行时部件<a name="ZH-CN_TOPIC_0000001183610495"></a>
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2022-10-13 11:29:04 +00:00
|
|
|
|
- [方舟eTS运行时部件<a name="ZH-CN_TOPIC_0000001183610495"></a>](#方舟eTS运行时部件)
|
2021-09-11 09:29:08 +00:00
|
|
|
|
- [简介<a name="section190813718209"></a>](#简介)
|
|
|
|
|
- [目录<a name="section161941989596"></a>](#目录)
|
|
|
|
|
- [约束<a name="section119744591305"></a>](#约束)
|
|
|
|
|
- [编译构建<a name="section137768191623"></a>](#编译构建)
|
|
|
|
|
- [接口说明<a name="section175841548124517"></a>](#接口说明)
|
|
|
|
|
- [使用说明<a name="section129654513264"></a>](#使用说明)
|
|
|
|
|
- [相关仓<a name="section1371113476307"></a>](#相关仓)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
|
|
### 简介<a name="section190813718209"></a>
|
|
|
|
|
|
2022-10-13 11:29:04 +00:00
|
|
|
|
方舟eTS运行时是OpenHarmony上默认的ArkTS语言运行时。支持Ecmascript规范定义的标准库和高效container容器库,提供完备的C++交互ArkTS NAPI和各种高性能的垃圾回收器,驱动着万物互联时代的OpenHarmony应用程序。
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2021-09-11 09:29:08 +00:00
|
|
|
|
更多信息请参考:[方舟运行时子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/ARK-Runtime-Subsystem-zh.md)
|
|
|
|
|
|
2022-10-13 11:29:04 +00:00
|
|
|
|
**图1** 方舟eTS运行时部件架构图:
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2022-10-13 11:29:04 +00:00
|
|
|
|
![](/docs/figures/zh-cn_image_ark-ts-arch.png)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
|
|
## 目录<a name="section161941989596"></a>
|
|
|
|
|
|
|
|
|
|
```
|
2022-07-12 03:01:25 +00:00
|
|
|
|
/arkcompiler/ets_runtime
|
2022-10-13 11:29:04 +00:00
|
|
|
|
├─ ecmascript # 方舟ArkTS运行时实现,包括ECMAScript标准库、解释器、内存管理等
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ base # 基础帮助类
|
|
|
|
|
│ ├─ builtins # ECMAScript标准库
|
2022-10-13 11:29:04 +00:00
|
|
|
|
│ ├─ compiler # 编译器
|
2022-01-24 07:25:30 +00:00
|
|
|
|
│ ├─ containers # 非ECMAScript标准容器类库
|
2022-10-13 11:29:04 +00:00
|
|
|
|
│ ├─ debugger # 调试器
|
2022-03-21 06:57:49 +00:00
|
|
|
|
│ ├─ dfx # 内存与性能分析工具
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ ic # 内联缓存模块
|
2022-10-13 11:29:04 +00:00
|
|
|
|
│ ├─ interpreter # 解释器
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ jobs # 微任务队列
|
2022-09-26 06:37:31 +00:00
|
|
|
|
│ ├─ js_api # 非ECMA标准对象模型
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ js_vm # 命令行工具
|
2022-03-21 06:57:49 +00:00
|
|
|
|
│ ├─ jspandafile # abc文件管理模块
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ mem # 内存管理模块
|
2022-03-21 06:57:49 +00:00
|
|
|
|
│ ├─ module # ECMAScript module模块
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ napi # C++接口模块
|
2022-09-26 06:37:31 +00:00
|
|
|
|
│ ├─ quick_fix # 快速修复命令行工具
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ regexp # 正则引擎模块
|
2022-09-26 06:37:31 +00:00
|
|
|
|
│ ├─ require # CommonJS规范module模块
|
|
|
|
|
│ ├─ shared_mm # 共享内存管理模块
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ snapshot # 快照模块
|
2022-03-21 06:57:49 +00:00
|
|
|
|
│ ├─ stubs # runtime桩函数
|
2022-09-26 06:37:31 +00:00
|
|
|
|
│ ├─ taskpool # 任务池
|
2021-09-04 08:06:49 +00:00
|
|
|
|
│ ├─ tests # 单元测试用例
|
2022-09-26 06:37:31 +00:00
|
|
|
|
│ ├─ ts_types # TS类型管理模块
|
|
|
|
|
└─ test # 模块测试用例
|
2021-09-04 08:06:49 +00:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## 约束<a name="section119744591305"></a>
|
|
|
|
|
|
2022-10-13 11:29:04 +00:00
|
|
|
|
* 仅支持运行方舟eTS编译器\(ts2abc或es2abc\)生成的方舟字节码文件
|
2022-11-09 09:56:50 +00:00
|
|
|
|
* 只支持ES2021标准和严格模式(use strict)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
* 不支持通过字符串动态创建函数(比如new Function("console.log(1);"))
|
|
|
|
|
|
|
|
|
|
## 编译构建<a name="section137768191623"></a>
|
|
|
|
|
|
2021-09-11 09:29:08 +00:00
|
|
|
|
```
|
2022-06-10 06:50:14 +00:00
|
|
|
|
$./build.sh --product-name hispark_taurus_standard --build-target ark_js_host_linux_tools_packages
|
2021-09-11 09:29:08 +00:00
|
|
|
|
```
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
|
|
### 接口说明<a name="section175841548124517"></a>
|
|
|
|
|
|
2023-05-09 07:05:35 +00:00
|
|
|
|
NAPI接口说明参考[NAPI部件](https://gitee.com/openharmony/arkui_napi/blob/master/README_zh.md)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
|
|
### 使用说明<a name="section129654513264"></a>
|
|
|
|
|
|
2023-11-01 03:00:44 +00:00
|
|
|
|
ArkTS生成字节码参考[方舟eTS编译器]( https://gitee.com/openharmony/arkcompiler_ets_frontend/blob/master/README_zh.md#%E4%BD%BF%E7%94%A8%E8%AF%B4%E6%98%8E)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2021-09-11 09:29:08 +00:00
|
|
|
|
字节码执行:
|
|
|
|
|
```
|
2022-10-13 08:09:55 +00:00
|
|
|
|
LD_LIBRARY_PATH=out/hispark_taurus/clang_x64/arkcompiler/ets_runtime:out/hispark_taurus/clang_x64/thirdparty/icu:prebuilts/clang/ohos/linux-x86_64/llvm/lib ./out/hispark_taurus/clang_x64/arkcompiler/ets_runtime/ark_js_vm helloworld.abc
|
2022-06-09 07:13:44 +00:00
|
|
|
|
|
2021-09-11 09:29:08 +00:00
|
|
|
|
```
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2023-02-21 03:39:55 +00:00
|
|
|
|
更多使用说明请参考:[方舟运行时使用指南](/docs/README_zh.md)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2021-09-11 09:29:08 +00:00
|
|
|
|
## 相关仓<a name="section1371113476307"></a>
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2022-07-12 03:01:25 +00:00
|
|
|
|
[arkcompiler\_runtime\_core](https://gitee.com/openharmony/arkcompiler_runtime_core)
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2022-07-12 03:01:25 +00:00
|
|
|
|
**[arkcompiler\_ets\_runtime](https://gitee.com/openharmony/arkcompiler_ets_runtime)**
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
2022-08-18 07:15:08 +00:00
|
|
|
|
[arkcompiler\_ets\_frontend](https://gitee.com/openharmony/arkcompiler_ets_frontend)
|