2022-11-11 17:25:40 +08:00
# dmsfwk
2021-06-01 18:56:10 +08:00
2022-11-11 17:25:40 +08:00
## Introduction
2021-06-01 18:56:10 +08:00
2022-11-11 17:25:40 +08:00
The Distributed Ability Manager Service Framework (dmsfwk) component is used for cross-device component management. It allows the local device to access and control remote components, and enables application collaboration in distributed scenarios. Major functions are as follows:
2021-11-24 11:17:51 +08:00
2022-11-11 17:25:40 +08:00
- Remote ability startup: starts an ability on a remote device. Data can be returned when the Page ability ends.
- Ability continuation: continues an ability on a remote device.
- Remote ability binding: binds an ability on a remote device.
- Remote call: obtains the caller interface of a remote ability to call the ability across devices.
2021-11-24 11:17:51 +08:00
2022-11-11 17:25:40 +08:00
## System Architecture
2021-11-24 11:17:51 +08:00
2022-11-11 17:25:40 +08:00
Figure 1 Architecture of dmsfwk
2021-06-01 18:56:10 +08:00
2022-02-24 09:43:39 +08:00
![](figures/dms-architecture.png)
2021-06-01 18:56:10 +08:00
2022-11-11 17:25:40 +08:00
## Directory Structure
2021-06-01 18:56:10 +08:00
2021-11-24 11:17:51 +08:00
```
2022-07-19 15:57:56 +08:00
/foundation/ability
2022-11-11 17:25:40 +08:00
├── dmsfwk # dmsfwk
│ ├── bundle.json # Description and build script of dmsfwk
│ ├── etc # Configuration files
│ ├── interfaces # APIs exposed externally
│ ├── services # Service implementation
│ ├── sa_profile # SA-related configuration files
│ ├── utils # Utils
2021-11-24 11:17:51 +08:00
```
2021-06-02 00:05:54 +08:00
2022-11-11 17:25:40 +08:00
## Repositories Involved
2021-11-24 11:17:51 +08:00
2022-11-11 17:25:40 +08:00
dmsfwk
2022-02-24 09:43:39 +08:00
2022-11-11 17:25:40 +08:00
[**ability\_dmsfwk** ](https://gitee.com/openharmony/ability_dmsfwk )
2021-06-01 18:56:10 +08:00
2022-11-11 17:25:40 +08:00
[ability\_dmsfwk\_lite ](https://gitee.com/openharmony/ability_dmsfwk_lite )