commit | 579b0f60f798ad89c1b7ffb8a6389a3311b313f4 | [log] [tgz] |
---|---|---|
author | Steven Moreland <smoreland@google.com> | Thu Oct 25 13:40:47 2018 -0700 |
committer | Steven Moreland <smoreland@google.com> | Thu Oct 25 13:47:56 2018 -0700 |
tree | 22f1e76bedb068f5b0a18d8daa37c80dfc6a13ec | |
parent | 9b37ed1d66c8a1ce15042177a9e261843037ee60 [diff] |
safe_union: fix up default initialization. This error was introduced when hidl_no_init was removed. Before, Objecct hidl_o only got declared if a default Java initializer was defined for this type. Now, this field is declared, and then the default java value is set in the constructor. This also means that primitive values must be manually initialized (or they result in a NullPointerException). This is intentional, and we do it for the same reason the Java wrapper classes don't have a default value (so we don't initialize an extra object to a useless value). In the future, we're still able to change this (it isn't part of any ABI). One optimization to be made here is that we can add an extra field to the safe union like "long hidl_o_primitive" which stores the value of the fields if it is a primitive to avoid an object creation. This would also mean at that point that primitives won't require an additional object instantiation. Bug: N/A Test: hidl_test, hidl_test_java, manually inspect safe_union output. Change-Id: I2317f7b72819de5132944ecc9c723203123fc55d
Full documentation can be found here: https://source.android.com/devices/architecture/hidl/
hidl-gen is a compiler for the HIDL (HAL Interface Design Language) which generates C++ and Java endpoints for RPC mechanisms. The main userspace libraries which this compiler uses can be found at system/libhidl.
m hidl-gen
Note that options for hidl-gen expected to be invoked by the build system are marked with 'internal' in the help menu.
hidl-gen -h hidl-gen -o output -L c++-impl -r android.hardware:hardware/interfaces -r android.hidl:system/libhidl/transport android.hardware.nfc@1.0
Some defaults for package roots are also provided
hidl-gen -o output -L c++-impl android.hardware.nfc@1.0 hidl-gen -o output -L vts android.hardware.nfc@1.0 hidl-gen -L hash android.hardware.nfc@1.0
Example command for vendor project
hidl-gen -L c++-impl -r vendor.foo:vendor/foo/interfaces vendor.foo.nfc@1.0
See update-makefiles-helper.sh and update-all-google-makefiles.sh for examples of how to generate HIDL makefiles (using the -Landroidbp option).
This is a helper tool to convert C headers to valid .hal files.
m c2hal && c2hal -h
This tool generates html documentation for hal interfaces.
m hidl-doc && hidl-doc -h