Files
bundlemanager_bundle_framew…/frameworks/bundle_lite
shilei 215dc441bf modify hilog domian
Signed-off-by: shilei <shilei91@huawei.com>
Change-Id: Id7737ae1faebfc0b96ad4729b59190ad8e26451f
2022-08-04 17:39:21 +08:00
..
2022-07-21 22:18:08 +08:00
2022-08-04 17:39:21 +08:00
2022-07-24 16:53:07 +08:00
2021-03-11 18:48:34 +08:00
2021-03-11 18:48:34 +08:00

Introduction

The implementation files of the corresponding .h files are provided at here and a tool bm can be utilized by developers to install, uninstall application or query some information of the specified application.

Directions

.
├── BUILD.gn
├── include
│   ├── ability_info_utils.h                # to provide some function to set the elements of AbilityInfo.
│   ├── bundle_callback.h                   # to provide monitor mechanism of install states for other module in the system.
│   ├── bundle_callback_utils.h             # to define some data structs to obtain the specified information return from the BMS `Bunndle Manager Servcice`.
│   ├── bundle_info_utils.h                 # to provide some functions to set the elements of BundleInfo.
│   ├── bundle_self_callback.h              # to provide the callback mechanism of install function and uninstall function.
│   ├── convert_utils.h                     # to provide some functions to transform AbilityInfo and BundleInfo to string, and then to transport by ipc.
│   └── module_info_utils.h                 # to provide some function to set the elements of ModuleInfo.
├── README.md
└── src
    ├── ability_info.cpp
    ├── ability_info_utils.cpp
    ├── bundle_callback.cpp
    ├── bundle_callback_utils.cpp
    ├── bundle_info.cpp
    ├── bundle_info_utils.cpp
    ├── bundle_manager.cpp
    ├── bundle_self_callback.cpp
    ├── convert_utils.cpp
    ├── element_name.cpp
    ├── event_handler.cpp
    ├── module_info.cpp
    ├── module_info_utils.cpp
    └── token_generate.cpp