tree: 13b69624d6c4e2cfc1e31fcd7326df1da7758103 [path history] [tgz]
  1. src/
  2. BUILD.gn
  3. README.md
src/diagnostics/launcher/README.md

launcher

launcher is a system to combine several programs into a single binary, to save memory and disk space. Each program can be written in its own directory and run independently.

The Fuchsia operating system will maintain one VMO containing the launcher binary image, and will serve that VMO to each package which uses one of the programs that were combined to make the launcher binary.

Building

This project should be automatically included in builds by including any project that uses it.

Using

To convert a program to use launcher, you will build a library instead of a binary; include the library in the launcher binary; link to the launcher binary from the component that used to use your program's binary; and adjust your .cml files slightly.

In your program's directory:

  1. Rename its main.rs to lib.rs
  2. From lib.rs export your argh command-line arg struct, for example pub struct CommandLine. (If you don't use command line args, add an empty struct with #[derive(FromArgs, Debug, PartialEq)].)
    1. Make sure to derive PartialEq on your arg struct.
    2. Annotate your struct with #[argh(subcommand, name = "your-choice")].
    3. Add pub const PROGRAM_NAME: &str = "your-choice";
  3. Also from lib.rs, export the main funtion with this signature: pub async fn main(args: CommandLine) -> Result<(), Error>
    1. Remove the #[fasync::run_singlethreaded] or similar lines.
    2. Remove syslog initialization; Launcher does that.
  4. In BUILD.gn, import("//build/rust/rustc_library.gni"), change rustc_bin to rustc_lib, and replace main.rs with lib.rs in sources.
  5. In the .cmx for unit tests, change _bin_test to _lib_test.

In //src/diagnostics/launcher:

  1. Add your library to deps in BUILD.gn
  2. Add your CommandLine struct to the ChildArgs enum in main.rs
  3. Add your program's PROGRAM_NAME to the first match in main()
  4. Call your library's main from the second match in main()

To invoke a program that has been integrated in launcher:

  1. Make the component depend on "//src/diagnostics/launcher:bin" instead of the original binary.
  2. In the .cml use program -> binary -> “bin/launcher”.
  3. Add the appropriate command line argument (your-choice in this example) to the .cml file as the first args item.

Testing

launcher will be integration-tested by every program that uses it. No unit tests are currently contemplated.