This section provides guidelines on creating CLI and GUI tools for Fuchsia.
For information on existing tools, please refer to documentation for those tools.
The Integrator Development Kit (IDK) will contain:
The tool binary itself.
A document in //docs/development/idk/documentation describing the contract of this tool and how to connect it to the target system. The target audience of this document is people writing integration scripts rather than being an end-user-friendly “how-to” (debugger example).
The ffx target list
command abstracts device listing and selection across all SDK variants. With the right tool design, the extent of integration required should be to run ffx target list
to get the address and pass the address to the tool with other environment-specific flags. In the case of the debugger the tool-specific code would:
Connect to a shell (this should be a primitive provided by the environment-specific SDK) on the target and run the debug_agent
.
Run zxdb with the address provided by ffx target list
, passing any local settings files and symbol paths on the command-line.
Tools should allow all environment parameters to be passed in via command-line arguments. Examples include the location of settings files and symbol locations. This allows different SDKs to be hermetic.
Tools should be written to make writing environment-specific scripts as simple as possible. For example, the debugger should automatically retry connections (fxbug.dev/5931) so the current behavior of waiting for the port to be open in the launch scripts can be removed.
Tool authors are responsible for: