2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-28 21:33:48 +00:00
bazel-lib/lib/private/copy_directory.bzl

243 lines
8.8 KiB
Python
Raw Normal View History

2022-04-04 00:52:03 +00:00
"""Implementation of copy_directory macro and underlying rules.
This rule copies a directory to another location using Bash (on Linux/macOS) or
cmd.exe (on Windows).
"""
load(":copy_common.bzl", _COPY_EXECUTION_REQUIREMENTS = "COPY_EXECUTION_REQUIREMENTS", _progress_path = "progress_path")
load(":platform_utils.bzl", _platform_utils = "platform_utils")
2022-04-04 00:52:03 +00:00
def _copy_cmd(ctx, src, dst):
2022-04-04 00:52:03 +00:00
# Most Windows binaries built with MSVC use a certain argument quoting
# scheme. Bazel uses that scheme too to quote arguments. However,
# cmd.exe uses different semantics, so Bazel's quoting is wrong here.
# To fix that we write the command to a .bat file so no command line
# quoting or escaping is required.
# Put a hash of the file name into the name of the generated batch file to
# make it unique within the package, so that users can define multiple copy_file's.
bat = ctx.actions.declare_file("%s-%s-cmd.bat" % (ctx.label.name, hash(src.path)))
2022-04-04 00:52:03 +00:00
# Flags are documented at
# https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy
# NB: robocopy return non-zero exit codes on success so we must exit 0 after calling it
cmd_tmpl = "@robocopy \"{src}\" \"{dst}\" /E >NUL & @exit 0"
mnemonic = "CopyDirectory"
progress_message = "Copying directory %s" % _progress_path(src)
2022-04-04 00:52:03 +00:00
ctx.actions.write(
output = bat,
# Do not use lib/shell.bzl's shell.quote() method, because that uses
# Bash quoting syntax, which is different from cmd.exe's syntax.
content = cmd_tmpl.format(
src = src.path.replace("/", "\\"),
2022-04-04 00:52:03 +00:00
dst = dst.path.replace("/", "\\"),
),
is_executable = True,
)
ctx.actions.run(
inputs = [src],
2022-04-04 00:52:03 +00:00
tools = [bat],
outputs = [dst],
executable = "cmd.exe",
arguments = ["/C", bat.path.replace("/", "\\")],
mnemonic = mnemonic,
progress_message = progress_message,
use_default_shell_env = True,
execution_requirements = _COPY_EXECUTION_REQUIREMENTS,
2022-04-04 00:52:03 +00:00
)
def _copy_bash(ctx, src, dst):
cmd = "rm -Rf \"$2\" && cp -fR \"$1/\" \"$2\""
2022-04-04 00:52:03 +00:00
mnemonic = "CopyDirectory"
progress_message = "Copying directory %s" % _progress_path(src)
2022-04-04 00:52:03 +00:00
ctx.actions.run_shell(
tools = [src],
2022-04-04 00:52:03 +00:00
outputs = [dst],
command = cmd,
arguments = [src.path, dst.path],
2022-04-04 00:52:03 +00:00
mnemonic = mnemonic,
progress_message = progress_message,
use_default_shell_env = True,
execution_requirements = _COPY_EXECUTION_REQUIREMENTS,
2022-04-04 00:52:03 +00:00
)
# TODO(2.0): remove the legacy copy_directory_action helper
def copy_directory_action(ctx, src, dst, is_windows = None):
"""Legacy factory function that creates an action to copy a directory from src to dst.
For improved analysis and runtime performance, it is recommended the switch
to `copy_directory_bin_action` which takes a tool binary, typically the
`@aspect_bazel_lib//tools/copy_to_directory` `go_binary` either built from
source or provided by a toolchain and creates hard links instead of performing full
file copies.
This helper is used by copy_directory. It is exposed as a public API so it can be used within
other rule implementations.
Args:
ctx: The rule context.
src: The directory to make a copy of. Can be a source directory or TreeArtifact.
dst: The directory to copy to. Must be a TreeArtifact.
is_windows: Deprecated and unused
"""
# TODO(2.0): remove deprecated & unused is_windows parameter
if not src.is_source and not dst.is_directory:
fail("src must be a source directory or TreeArtifact")
if dst.is_source or not dst.is_directory:
fail("dst must be a TreeArtifact")
# Because copy actions have "local" execution requirements, we can safely assume
# the execution is the same as the host platform and generate different actions for Windows
# and non-Windows host platforms
is_windows = _platform_utils.host_platform_is_windows()
if is_windows:
_copy_cmd(ctx, src, dst)
2022-04-04 00:52:03 +00:00
else:
_copy_bash(ctx, src, dst)
2023-01-14 23:51:01 +00:00
def copy_directory_bin_action(
ctx,
src,
dst,
copy_directory_bin,
hardlink = "auto",
verbose = False):
"""Factory function that creates an action to copy a directory from src to dst using a tool binary.
The tool binary will typically be the `@aspect_bazel_lib//tools/copy_directory` `go_binary`
either built from source or provided by a toolchain.
This helper is used by the copy_directory rule. It is exposed as a public API so it can be used
within other rule implementations.
Args:
ctx: The rule context.
src: The source directory to copy.
dst: The directory to copy to. Must be a TreeArtifact.
copy_directory_bin: Copy to directory tool binary.
hardlink: Controls when to use hardlinks to files instead of making copies.
2023-01-14 23:51:01 +00:00
See copy_directory rule documentation for more details.
verbose: If true, prints out verbose logs to stdout
"""
args = [
src.path,
dst.path,
]
if verbose:
args.append("--verbose")
if hardlink == "on":
args.append("--hardlink")
elif hardlink == "auto" and not src.is_source:
args.append("--hardlink")
ctx.actions.run(
inputs = [src],
outputs = [dst],
executable = copy_directory_bin,
arguments = args,
mnemonic = "CopyDirectory",
progress_message = "Copying directory %s" % _progress_path(src),
2023-01-14 23:51:01 +00:00
execution_requirements = _COPY_EXECUTION_REQUIREMENTS,
)
def _copy_directory_impl(ctx):
copy_directory_bin = ctx.toolchains["@aspect_bazel_lib//lib:copy_directory_toolchain_type"].copy_directory_info.bin
dst = ctx.actions.declare_directory(ctx.attr.out)
2022-04-04 00:52:03 +00:00
copy_directory_bin_action(
ctx,
src = ctx.file.src,
dst = dst,
# copy_directory_bin = ctx.executable._tool, # use for development
copy_directory_bin = copy_directory_bin,
hardlink = ctx.attr.hardlink,
verbose = ctx.attr.verbose,
)
2022-04-04 00:52:03 +00:00
return [
DefaultInfo(
files = depset([dst]),
runfiles = ctx.runfiles([dst]),
),
]
2022-04-04 00:52:03 +00:00
_copy_directory = rule(
implementation = _copy_directory_impl,
provides = [DefaultInfo],
attrs = {
"src": attr.label(mandatory = True, allow_single_file = True),
# Cannot declare out as an output here, because there's no API for declaring
# TreeArtifact outputs.
"out": attr.string(mandatory = True),
"hardlink": attr.string(
values = ["auto", "off", "on"],
default = "auto",
),
"verbose": attr.bool(),
# use '_tool' attribute for development only; do not commit with this attribute active since it
# propagates a dependency on rules_go which would be breaking for users
# "_tool": attr.label(
# executable = True,
# cfg = "exec",
# default = "//tools/copy_directory",
# ),
2022-04-04 00:52:03 +00:00
},
toolchains = ["@aspect_bazel_lib//lib:copy_directory_toolchain_type"],
2022-04-04 00:52:03 +00:00
)
def copy_directory(
name,
src,
out,
hardlink = "auto",
**kwargs):
2022-04-04 00:52:03 +00:00
"""Copies a directory to another location.
This rule uses a Bash command on Linux/macOS/non-Windows, and a cmd.exe command on Windows (no Bash is required).
If using this rule with source directories, it is recommended that you use the
`--host_jvm_args=-DBAZEL_TRACK_SOURCE_DIRECTORIES=1` startup option so that changes
to files within source directories are detected. See
https://github.com/bazelbuild/bazel/commit/c64421bc35214f0414e4f4226cc953e8c55fa0d2
for more context.
Args:
name: Name of the rule.
src: The directory to make a copy of. Can be a source directory or TreeArtifact.
2022-04-04 00:52:03 +00:00
out: Path of the output directory, relative to this package.
hardlink: Controls when to use hardlinks to files instead of making copies.
Creating hardlinks is much faster than making copies of files with the caveat that
hardlinks share file permissions with their source.
Since Bazel removes write permissions on files in the output tree after an action completes,
hardlinks to source files within source directories is not recommended since write
permissions will be inadvertently removed from sources files.
- "auto": hardlinks are used if src is a tree artifact already in the output tree
- "off": files are always copied
- "on": hardlinks are always used (not recommended)
2022-04-04 00:52:03 +00:00
**kwargs: further keyword arguments, e.g. `visibility`
"""
_copy_directory(
name = name,
src = src,
out = out,
hardlink = hardlink,
2022-04-04 00:52:03 +00:00
**kwargs
)