重要事項:本教學課程適用於 符號巨集,這是 Bazel 8 中推出的新巨集系統。如果您需要支援較舊的 Bazel 版本,請改為編寫舊版巨集;請參閱「建立舊版巨集」。
假設您需要在建構作業中執行工具。舉例來說,您可能想產生或預先處理來源檔案,或壓縮二進位檔。在本教學課程中,您將建立可調整圖片大小的符號化宏。
巨集適合用於簡單的工作。如果您想執行更複雜的操作,例如新增程式語言支援,建議您建立規則。規則可讓您享有更大的控制權和彈性。
如要建立可調整圖片大小的巨集,最簡單的方法就是使用 genrule
:
genrule(
name = "logo_miniature",
srcs = ["logo.png"],
outs = ["small_logo.png"],
cmd = "convert $< -resize 100x100 $@",
)
cc_binary(
name = "my_app",
srcs = ["my_app.cc"],
data = [":logo_miniature"],
)
如果您需要調整更多圖片的大小,建議您重複使用這段程式碼。為此,請在另一個 .bzl
檔案中定義實作函式和巨集宣告,然後呼叫 miniature.bzl
檔案:
# Implementation function
def _miniature_impl(name, visibility, src, size, **kwargs):
native.genrule(
name = name,
visibility = visibility,
srcs = [src],
outs = [name + "_small_" + src.name],
cmd = "convert $< -resize " + size + " $@",
**kwargs,
)
# Macro declaration
miniature = macro(
doc = """Create a miniature of the src image.
The generated file name will be prefixed with `name + "_small_"`.
""",
implementation = _miniature_impl,
# Inherit most of genrule's attributes (such as tags and testonly)
inherit_attrs = native.genrule,
attrs = {
"src": attr.label(
doc = "Image file",
allow_single_file = True,
# Non-configurable because our genrule's output filename is
# suffixed with src's name. (We want to suffix the output file with
# srcs's name because some tools that operate on image files expect
# the files to have the right file extension.)
configurable = False,
),
"size": attr.string(
doc = "Output size in WxH format",
default = "100x100",
),
# Do not allow callers of miniature() to set srcs, cmd, or outs -
# _miniature_impl overrides their values when calling native.genrule()
"srcs": None,
"cmd": None,
"outs": None,
},
)
以下是幾點說明:
符號巨集實作函式必須包含
name
和visibility
參數。應用於巨集的主要目標。如要記錄符號式巨集的行為,請為
macro()
及其屬性使用doc
參數。如要呼叫
genrule
或任何其他原生規則,請使用native.
。使用
**kwargs
將額外繼承的引數轉送至底層genrule
(運作方式與 Python 相同)。這項功能可讓使用者設定tags
或testonly
等標準屬性。
接著,請使用 BUILD
檔案中的巨集:
load("//path/to:miniature.bzl", "miniature")
miniature(
name = "logo_miniature",
src = "image.png",
)
cc_binary(
name = "my_app",
srcs = ["my_app.cc"],
data = [":logo_miniature"],
)