tree: e85ffe430e63c3c76646730e4f767b390842fbae [path history] [tgz]
  1. hub/
  2. integration_tests/
  3. meta/
  4. allow_list.cc
  5. allow_list.h
  6. allow_list_unittest.cc
  7. appmgr.cc
  8. appmgr.h
  9. BUILD.gn
  10. cache_control.cc
  11. cache_control.h
  12. component_container.h
  13. component_controller_impl.cc
  14. component_controller_impl.h
  15. component_controller_unittest.cc
  16. component_event_provider_impl.cc
  17. component_event_provider_impl.h
  18. component_event_provider_unittest.cc
  19. debug_info_retriever.cc
  20. debug_info_retriever.h
  21. dynamic_library_loader.cc
  22. dynamic_library_loader.h
  23. environment_controller_impl.cc
  24. environment_controller_impl.h
  25. job_provider_impl.cc
  26. job_provider_impl.h
  27. log_connector_impl.cc
  28. log_connector_impl.h
  29. log_connector_impl_unittest.cc
  30. main.cc
  31. namespace.cc
  32. namespace.h
  33. namespace_builder.cc
  34. namespace_builder.h
  35. namespace_builder_unittest.cc
  36. namespace_unittest.cc
  37. OWNERS
  38. policy_checker.cc
  39. policy_checker.h
  40. policy_checker_unittest.cc
  41. README.md
  42. realm.cc
  43. realm.h
  44. runner_holder.cc
  45. runner_holder.h
  46. scheme_map.cc
  47. scheme_map.config
  48. scheme_map.h
  49. scheme_map_unittest.cc
  50. service_provider_dir_impl.cc
  51. service_provider_dir_impl.h
  52. service_provider_dir_unittest.cc
  53. storage_watchdog.cc
  54. storage_watchdog.h
  55. storage_watchdog_unittest.cc
  56. system_objects_directory.cc
  57. system_objects_directory.h
  58. test_file.txt
  59. util.cc
  60. util.h
  61. util_unittest.cc
src/sys/appmgr/README.md

appmgr

Reviewed on: 2019-07-22

Appmgr is responsible for launching v1 components and managing the namespaces in which those components run. It is the first process started in the fuchsia job by devmgr.

See:

Building

This project is typically included in Fuchsia builds by default, but it can be added to a build by adding --with //src/sys/appmgr to the fx set invocation.

Running

Appmgr is run on all non-bringup Fuchsia builds. It can be interacted with via the fuchsia.sys FIDL apis.

Testing

Unit tests for appmgr are available in the appmgr_unittests package.

$ fx run-test appmgr_unittests

Integration tests are available in the following packages, and each can be run with fx run-test.

  • appmgr_integration_tests
  • build_info_tests
  • components_binary_tests
  • has_deprecated_shell
  • has_isolated_cache_storage
  • has_isolated_persistent_storage
  • has_isolated_temp
  • has_shell_commands
  • has_system_temp
  • inspect_integration_tests
  • inspect_vmo_integration_tests
  • isolated_persistent_storage
  • multiple_components
  • no_isolated_temp
  • no_persistent_storage
  • no_services
  • no_shell_commands
  • no_shell
  • no_system_temp
  • some_services
  • uses_system_deprecated_data

Source layout

The entrypoint is located in main.cc, with the majority of the implementation living in top-level .cc and .h files, with the exception of the hub implementation which is in hub/. Unit tests are located in _unittest.cc files.

Integration tests are in the integration_tests/ directory.