summaryrefslogtreecommitdiff
path: root/pkg/path.bzl
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/path.bzl')
-rw-r--r--pkg/path.bzl26
1 files changed, 16 insertions, 10 deletions
diff --git a/pkg/path.bzl b/pkg/path.bzl
index c933ccd..f384398 100644
--- a/pkg/path.bzl
+++ b/pkg/path.bzl
@@ -11,8 +11,10 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
-"""Helper functions that don't depend on Skylark, so can be unit tested."""
+"""Helper functions that don't depend on Starlark, so can be unit tested."""
+# buildifier: disable=function-docstring-args
+# buildifier: disable=function-docstring-return
def safe_short_path(file_):
"""Like `File.short_path` but safe for use with files from external repositories.
"""
@@ -27,9 +29,10 @@ def safe_short_path(file_):
# Beginning with `file_.path`, remove optional `F.root.path`.
working_path = file_.path
if not file_.is_source:
- working_path = working_path[len(file_.root.path)+1:]
+ working_path = working_path[len(file_.root.path) + 1:]
return working_path
+# buildifier: disable=function-docstring-args,function-docstring-return
def _short_path_dirname(path):
"""Returns the directory's name of the short path of an artifact."""
sp = safe_short_path(path)
@@ -39,6 +42,8 @@ def _short_path_dirname(path):
return ""
return sp[:last_pkg]
+# buildifier: disable=function-docstring-args
+# buildifier: disable=function-docstring-return
def dest_path(f, strip_prefix, data_path_without_prefix = ""):
"""Returns the short path of f, stripped of strip_prefix."""
f_short_path = safe_short_path(f)
@@ -56,32 +61,33 @@ def dest_path(f, strip_prefix, data_path_without_prefix = ""):
# Avoid stripping prefix if final directory is incomplete
if prefix_last_dir not in f_short_path.split("/"):
- strip_prefix = data_path_without_prefix
+ strip_prefix = data_path_without_prefix
return f_short_path[len(strip_prefix):]
return f_short_path
-def compute_data_path(ctx, data_path):
+def compute_data_path(label, data_path):
"""Compute the relative data path prefix from the data_path attribute.
Args:
- ctx: rule implementation ctx.
- data_path: path to a file, relative to the package of the rule ctx.
+ label: target label
+ data_path: path to a file, relative to the package of the label.
+ Returns:
+ str
"""
- build_dir = ctx.label.package
if data_path:
# Strip ./ from the beginning if specified.
# There is no way to handle .// correctly (no function that would make
- # that possible and Skylark is not turing complete) so just consider it
+ # that possible and Starlark is not turing complete) so just consider it
# as an absolute path.
if len(data_path) >= 2 and data_path[0:2] == "./":
data_path = data_path[2:]
if not data_path or data_path == ".": # Relative to current package
- return build_dir
+ return label.package
elif data_path[0] == "/": # Absolute path
return data_path[1:]
else: # Relative to a sub-directory
- tmp_short_path_dirname = build_dir
+ tmp_short_path_dirname = label.package
if tmp_short_path_dirname:
return tmp_short_path_dirname + "/" + data_path
return data_path