2021-12-09 00:47:45 +00:00
<!-- Generated with Stardoc: http://skydoc.bazel.build -->
Public API for jq
2022-06-10 20:05:19 +00:00
< a id = "jq" > < / a >
2021-12-09 00:47:45 +00:00
## jq
< pre >
2024-02-27 01:43:56 +00:00
jq(< a href = "#jq-name" > name< / a > , < a href = "#jq-srcs" > srcs< / a > , < a href = "#jq-filter" > filter< / a > , < a href = "#jq-filter_file" > filter_file< / a > , < a href = "#jq-args" > args< / a > , < a href = "#jq-out" > out< / a > , < a href = "#jq-data" > data< / a > , < a href = "#jq-expand_args" > expand_args< / a > , < a href = "#jq-kwargs" > kwargs< / a > )
2021-12-09 00:47:45 +00:00
< / pre >
Invoke jq with a filter on a set of json input files.
For jq documentation, see https://stedolan.github.io/jq/.
2021-12-16 00:02:28 +00:00
Usage examples:
```starlark
2022-02-04 20:13:10 +00:00
load("@aspect_bazel_lib//lib:jq.bzl", "jq")
2023-04-19 13:45:24 +00:00
# Create a new file bazel-out/.../no_srcs.json
jq(
name = "no_srcs",
srcs = [],
filter = ".name = "Alice"",
)
# Remove fields from package.json.
# Writes to bazel-out/.../package.json which means you must refer to this as ":no_dev_deps"
# since Bazel doesn't allow a label for the output file that collides with the input file.
2021-12-16 00:02:28 +00:00
jq(
name = "no_dev_deps",
srcs = ["package.json"],
filter = "del(.devDependencies)",
)
2023-04-19 13:45:24 +00:00
# Merge bar.json on top of foo.json, producing foobar.json
2021-12-16 00:02:28 +00:00
jq(
name = "merged",
srcs = ["foo.json", "bar.json"],
filter = ".[0] * .[1]",
args = ["--slurp"],
out = "foobar.json",
)
# Long filters can be split over several lines with comments
jq(
name = "complex",
srcs = ["a.json", "b.json"],
filter = """
.[0] as $a
# Take select fields from b.json
| (.[1] | {foo, bar, tags}) as $b
# Merge b onto a
| ($a * $b)
# Combine 'tags' array from both
| .tags = ($a.tags + $b.tags)
# Add new field
+ {\"aspect_is_cool\": true}
""",
args = ["--slurp"],
)
2021-12-20 20:47:39 +00:00
# Load filter from a file
jq(
name = "merged",
srcs = ["foo.json", "bar.json"],
filter_file = "filter.txt",
args = ["--slurp"],
out = "foobar.json",
)
2022-06-17 16:46:11 +00:00
# Convert genquery output to json
genquery(
name = "deps",
expression = "deps(//some:target)",
scope = ["//some:target"],
)
jq(
name = "deps_json",
srcs = [":deps"],
args = [
"--raw-input",
"--slurp",
],
2023-11-15 23:07:03 +00:00
filter = "{ deps: split("\n") | map(select(. | length > 0)) }",
2022-06-17 16:46:11 +00:00
)
2022-08-22 17:59:38 +00:00
# With --stamp, causes properties to be replaced by version control info.
jq(
name = "stamped",
srcs = ["package.json"],
filter = "|".join([
# Don't directly reference $STAMP as it's only set when stamping
# This 'as' syntax results in $stamp being null in unstamped builds.
"$ARGS.named.STAMP as $stamp",
# Provide a default using the "alternative operator" in case $stamp is null.
2023-11-15 23:07:03 +00:00
".version = ($stamp[0].BUILD_EMBED_LABEL // "< unstamped> ")",
2022-08-22 17:59:38 +00:00
]),
)
2021-12-16 00:02:28 +00:00
```
2023-07-26 20:10:41 +00:00
You could also use it directly from a `genrule` by referencing the toolchain, and the `JQ_BIN`
"Make variable" it exposes:
```
genrule(
name = "case_genrule",
srcs = ["a.json"],
outs = ["genrule_output.json"],
2023-11-15 23:07:03 +00:00
cmd = "$(JQ_BIN) '.' $(location a.json) > $@",
2023-07-26 20:10:41 +00:00
toolchains = ["@jq_toolchains//:resolved_toolchain"],
)
```
2021-12-09 00:47:45 +00:00
**PARAMETERS**
| Name | Description | Default Value |
| :------------- | :------------- | :------------- |
| < a id = "jq-name" > < / a > name | Name of the rule | none |
2023-04-19 13:45:24 +00:00
| < a id = "jq-srcs" > < / a > srcs | List of input files. May be empty. | none |
2022-08-22 17:59:38 +00:00
| < a id = "jq-filter" ></ a > filter | Filter expression (https://stedolan.github.io/jq/manual/#Basicfilters). Subject to stamp variable replacements, see [Stamping ](./stamping.md ). When stamping is enabled, a variable named "STAMP" will be available in the filter.< br >< br > Be careful to write the filter so that it handles unstamped builds, as in the example above. | < code > None</ code > |
2021-12-20 20:47:39 +00:00
| < a id = "jq-filter_file" > < / a > filter_file | File containing filter expression (alternative to < code > filter< / code > ) | < code > None< / code > |
| < a id = "jq-args" > < / a > args | Additional args to pass to jq | < code > []< / code > |
2021-12-09 00:47:45 +00:00
| < a id = "jq-out" > < / a > out | Name of the output json file; defaults to the rule name plus ".json" | < code > None< / code > |
2024-02-27 01:43:56 +00:00
| < a id = "jq-data" > < / a > data | List of additional files. May be empty. | < code > []< / code > |
| < a id = "jq-expand_args" > < / a > expand_args | Run bazel's location-expansion on the args. | < code > False< / code > |
2021-12-20 20:47:39 +00:00
| < a id = "jq-kwargs" > < / a > kwargs | Other common named parameters such as < code > tags< / code > or < code > visibility< / code > | none |
2021-12-09 00:47:45 +00:00