-
Notifications
You must be signed in to change notification settings - Fork 440
/
rustfmt.bzl
182 lines (149 loc) · 5.28 KB
/
rustfmt.bzl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
"""A module defining rustfmt rules"""
load(":common.bzl", "rust_common")
load(":utils.bzl", "find_toolchain")
def _find_rustfmtable_srcs(target, aspect_ctx = None):
"""Parse a target for rustfmt formattable sources.
Args:
target (Target): The target the aspect is running on.
aspect_ctx (ctx, optional): The aspect's context object.
Returns:
list: A list of formattable sources (`File`).
"""
if rust_common.crate_info not in target:
return []
# Targets annotated with `norustfmt` will not be formatted
if aspect_ctx and "norustfmt" in aspect_ctx.rule.attr.tags:
return []
crate_info = target[rust_common.crate_info]
# Filter out any generated files
srcs = [src for src in crate_info.srcs.to_list() if src.is_source]
return srcs
def _generate_manifest(edition, srcs, ctx):
# Gather the source paths to non-generated files
src_paths = [src.path for src in srcs]
# Write the rustfmt manifest
manifest = ctx.actions.declare_file(ctx.label.name + ".rustfmt")
ctx.actions.write(
output = manifest,
content = "\n".join(src_paths + [
edition,
]),
)
return manifest
def _perform_check(edition, srcs, ctx):
toolchain = find_toolchain(ctx)
config = ctx.file._config
marker = ctx.actions.declare_file(ctx.label.name + ".rustfmt.ok")
args = ctx.actions.args()
args.add("--touch-file")
args.add(marker)
args.add("--")
args.add(toolchain.rustfmt)
args.add("--config-path")
args.add(config)
args.add("--edition")
args.add(edition)
args.add("--check")
args.add_all(srcs)
ctx.actions.run(
executable = ctx.executable._process_wrapper,
inputs = srcs + [config],
outputs = [marker],
tools = [toolchain.rustfmt],
arguments = [args],
mnemonic = "Rustfmt",
)
return marker
def _rustfmt_aspect_impl(target, ctx):
srcs = _find_rustfmtable_srcs(target, ctx)
# If there are no formattable sources, do nothing.
if not srcs:
return []
# Parse the edition to use for formatting from the target
edition = target[rust_common.crate_info].edition
manifest = _generate_manifest(edition, srcs, ctx)
marker = _perform_check(edition, srcs, ctx)
return [
OutputGroupInfo(
rustfmt_manifest = depset([manifest]),
rustfmt_checks = depset([marker]),
),
]
rustfmt_aspect = aspect(
implementation = _rustfmt_aspect_impl,
doc = """\
This aspect is used to gather information about a crate for use in rustfmt and perform rustfmt checks
Output Groups:
- `rustfmt_manifest`: A manifest used by rustfmt binaries to provide crate specific settings.
- `rustfmt_checks`: Executes `rustfmt --check` on the specified target.
The build setting `@rules_rust//:rustfmt.toml` is used to control the Rustfmt [configuration settings][cs]
used at runtime.
[cs]: https://rust-lang.github.io/rustfmt/
This aspect is executed on any target which provides the `CrateInfo` provider. However
users may tag a target with `norustfmt` to have it skipped. Additionally, generated
source files are also ignored by this aspect.
""",
attrs = {
"_config": attr.label(
doc = "The `rustfmt.toml` file used for formatting",
allow_single_file = True,
default = Label("//:rustfmt.toml"),
),
"_process_wrapper": attr.label(
doc = "A process wrapper for running rustfmt on all platforms",
cfg = "exec",
executable = True,
default = Label("//util/process_wrapper"),
),
},
incompatible_use_toolchain_transition = True,
fragments = ["cpp"],
host_fragments = ["cpp"],
toolchains = [
str(Label("//rust:toolchain")),
],
)
def _rustfmt_test_impl(ctx):
# The executable of a test target must be the output of an action in
# the rule implementation. This file is simply a symlink to the real
# rustfmt test runner.
runner = ctx.actions.declare_file("{}{}".format(
ctx.label.name,
ctx.executable._runner.extension,
))
ctx.actions.symlink(
output = runner,
target_file = ctx.executable._runner,
is_executable = True,
)
manifests = [target[OutputGroupInfo].rustfmt_manifest for target in ctx.attr.targets]
srcs = [depset(_find_rustfmtable_srcs(target)) for target in ctx.attr.targets]
runfiles = ctx.runfiles(
transitive_files = depset(transitive = manifests + srcs),
)
runfiles = runfiles.merge(
ctx.attr._runner[DefaultInfo].default_runfiles,
)
return [DefaultInfo(
files = depset([runner]),
runfiles = runfiles,
executable = runner,
)]
rustfmt_test = rule(
implementation = _rustfmt_test_impl,
doc = "A test rule for performing `rustfmt --check` on a set of targets",
attrs = {
"targets": attr.label_list(
doc = "Rust targets to run `rustfmt --check` on.",
providers = [rust_common.crate_info],
aspects = [rustfmt_aspect],
),
"_runner": attr.label(
doc = "The rustfmt test runner",
cfg = "exec",
executable = True,
default = Label("//tools/rustfmt:rustfmt_test"),
),
},
test = True,
)