Snap for 11790536 from 3ba9ca07468ea89eca946f4b2f6af2a5880cf607 to sdk-release

Change-Id: I52e0ef361353f435165e51adb19d38646be56d84
tree: af1a36dfc53ee689433628c5bde653adf116ad91
  1. aconfig/
  2. apex_car_framework/
  3. car-admin-ui-lib/
  4. car-builtin-lib/
  5. car-evs-helper-lib/
  6. car-helper-lib/
  7. car-lib/
  8. car-lib-module/
  9. car-maps-placeholder/
  10. car-test-lib/
  11. car-usb-handler/
  12. car_product/
  13. cpp/
  14. data/
  15. experimental/
  16. FrameworkPackageStubs/
  17. lib/
  18. obd2-lib/
  19. packages/
  20. prebuilts/
  21. procfs-inspector/
  22. service/
  23. service-builtin/
  24. tests/
  25. tools/
  26. vehicle-hal-support-lib/
  27. .clang-format
  28. .gitignore
  29. Android.mk
  30. CleanSpec.mk
  31. CPPLINT.cfg
  32. OWNERS
  33. OWNERS_networking
  34. PREUPLOAD.cfg
  35. README.md
  36. TEST_MAPPING
README.md

AAOS

Source code for Android Automotive OS.

Structure

car_product/           - AAOS product
car-builtin-lib/       - A helper library for CarService to access hidden
                         framework APIs
car-lib/               - Car API
car-lib-module/        - Car API module
cpp/                   - Native services
experimental/          - Experimental Car API and services
packages/              - Apps and services for cars
service/               - Car service module
service-builint        - Platform builtin component that runs CarService module
tests/                 - Tests and sample apps
tools/                 - Helper scripts

C++

Native (C++) code format is required to be compatible with .clang-format file. The formatter is already integrated to repo tool. To run manually, use:

git clang-format --style=file --extension='h,cpp,cc' HEAD~

Note that clang-format is not desirable for Android java files. Therefore the command line above is limited to specific extensions.

Debugging CarService

Dumpsys and car shell can be useful when debugging CarService integration issues.

dumpsys

adb shell dumpsys car_service # to dump all car service information
adb shell dumpsys car_service --services [service name] # to dump a specific service information
adb shell dumpsys car_service --list # get list of available services

Dumpsys for CarService includes the following (more information is availble in dumpsys, below are just highlights):

  • Enabled features
  • Current power policy and list of registered power policies
  • Power state of componens of power policy
  • Silent mode status
  • Garage mode status
  • I/O stats
  • List of available vehicle properties

car shell

adb shell cmd car_service

CarService supports commands via car shell:
(list is not complete, run adb shell cmd car_service -h for more details)

  • Injection of vhal events
  • Toggling garage mode on/off
  • Toggling of suspend/hibernation/resume
  • Injection of input events
  • User managemnet/switching
  • Power policy control/manipulation

Helpful command for Garage mode

Start Garage mode

adb shell cmd car_service garage-mode on

Finish Garage mode

adb shell cmd car_service garage-mode on

Get Garage mode status

adb shell cmd car_service garage-mode query

Change Garage mode max duration (only eng and debug builds)

adb shell setprop android.car.garagemodeduration <seconds>