Pass target and header information to the rs_bindings_from_cc tool during the build

In this CL we add --targets_and_headers flag, currently noop, that contains
following data in JSON format:

[
  {"t": "//foo/bar:baz", "h": ["foo/bar/baz/header1.h", "foo/bar/baz/header2.h"]},
  {"t": "//base:base", "h": ["base/header1.h", "base/header2.h"]},
  ...
]

JSON was chosen for following reasons:

* absl flags don't natively support repeated flags that accumulate result (in
  other words, if one flag is present multiple times on the command line, the
  last one wins unconditionally).
* if we want to emulate repeated flags, we have to encode the format, or
  separators, somehow.[]
  allowed as target name, so we have 2 options:
  1) we either escape special characters, and if we have to go that way, let's
     just admit defeat and use JSON. This is what we do here.
  2) we use uncommon combinations (for example tripple semicolon as line
     separator, and tripple comma as a column separator. We detect these patterns
     and we fail the build on a conflict.
* not currently the case, but there is a potential for performance optimization
  in blaze - we have to generate JSON from a depset, and Blaze could cache
  generated JSON snippets from transitive depsets.

I'm happy to choose 2) (because it only occured to me while writing the CL
description, and the 1) was already implemented :)

This design can also be revisited once/if we move from cc_binary to rust_binary, and using a different flags library than absl.

Actual logic that uses the flag in the tool will come as a followup.

PiperOrigin-RevId: 407826722
1 file changed
tree: 19adbd8aff9be47f54692dcdfde9ce21ca76fc25
  1. rs_bindings_from_cc/
  2. CODE_OF_CONDUCT
  3. CONTRIBUTING
  4. LICENSE
  5. README.md
README.md

Crubit: C++/Rust Bidirectional Interop Tool

Extremely experimental interop tooling for C++ and Rust.

Please don‘t use, this is an experiment and we don’t yet know where will it take us. There will be breaking changes without warning. Unfortunately, we can't take contributions at this point.