Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
 blocks
(function() {
function addCopyButtons() {
document.querySelectorAll('pre code').forEach(function(codeBlock) {
if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
codeBlock.parentElement.setAttribute('data-copy-added', 'true');
var btn = document.createElement('button');
btn.textContent = 'Copy';
btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
btn.onmouseover = function() { this.style.opacity = '1'; };
btn.onmouseout = function() { this.style.opacity = '0.7'; };
btn.onclick = function() {
navigator.clipboard.writeText(codeBlock.textContent).then(function() {
btn.textContent = 'Copied!';
setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
});
};
codeBlock.parentElement.style.position = 'relative';
codeBlock.parentElement.appendChild(btn);
});
}
addCopyButtons();
// Re-run on dynamic content
var observer = new MutationObserver(addCopyButtons);
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)
, 'i'); if (__m === '*' || __re.test(location.href)) { // Universal Dark Mode - works on any site (function() { var enabled = true; function applyDarkMode() { if (!enabled) return; // Create style element if it doesn't exist var style = document.getElementById('universal-dark-mode-style'); if (!style) { style = document.createElement('style'); style.id = 'universal-dark-mode-style'; document.head.appendChild(style); } // Dark mode CSS - inverts colors but preserves images/video style.textContent = ' /* Invert everything except media */ html { filter: invert(1) hue-rotate(180deg) !important; background: #1a1a2e !important; } /* Restore images, videos, iframes, canvas */ img, video, iframe, canvas, svg, picture, [style*="background-image"] { filter: invert(1) hue-rotate(180deg) !important; } /* Preserve specific elements that should not be inverted */ .no-dark-mode, .no-dark-mode *, [data-theme="light"], [data-theme="light"], .ace_editor, .ace_editor *, .CodeMirror, .CodeMirror *, .monaco-editor, .monaco-editor *, .markdown-body pre, .markdown-body pre *, .highlight, .highlight *, pre code, pre code * { filter: none !important; } /* Fix common UI elements */ .modal, .popup, .dropdown-menu, .tooltip, .popover { filter: invert(1) hue-rotate(180deg) !important; background: #2d2d44 !important; border-color: #444 !important; } /* Scrollbars */ ::-webkit-scrollbar { background: #1a1a2e !important; } ::-webkit-scrollbar-thumb { background: #444 !important; } ::-webkit-scrollbar-thumb:hover { background: #555 !important; } /* Selection */ ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; } ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; } '; } function removeDarkMode() { var style = document.getElementById('universal-dark-mode-style'); if (style) style.remove(); } // Toggle with Alt+Shift+D document.addEventListener('keydown', function(e) { if (e.altKey && e.shiftKey && e.key === 'D') { e.preventDefault(); enabled = !enabled; if (enabled) { applyDarkMode(); console.log('[Universal Dark Mode] Enabled'); } else { removeDarkMode(); console.log('[Universal Dark Mode] Disabled'); } } }); // Apply on load applyDarkMode(); // Re-apply on dynamic content var observer = new MutationObserver(function(mutations) { if (enabled && !document.getElementById('universal-dark-mode-style')) { applyDarkMode(); } }); observer.observe(document.head, { childList: true }); console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle'); })(); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })(); fix: correctly obtain relative path required for the venv created by `--bootstrap_impl=script` by chowder · Pull Request #2439 · bazel-contrib/rules_python · GitHub
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 58 additions & 11 deletions python/private/py_executable_bazel.bzl
Original file line numberDiff line numberDiff line change
Expand Up@@ -323,7 +323,7 @@ def _create_executable(

def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
python_binary = _runfiles_root_path(ctx, venv.interpreter.short_path)
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path

# The location of this file doesn't really matter. It's added to
# the zip file as the top-level __main__.py file and not included
Expand All@@ -344,6 +344,37 @@ def _create_zip_main(ctx, *, stage2_bootstrap, runtime_details, venv):
)
return output

def relative_path(from_, to):
"""Compute a relative path from one path to another.

Args:
from_: {type}`str` the starting directory. Note that it should be
a directory because relative-symlinks are relative to the
directory the symlink resides in.
to: {type}`str` the path that `from_` wants to point to

Returns:
{type}`str` a relative path
"""
from_parts = from_.split("/")
to_parts = to.split("/")

# Strip common leading parts from both paths
n = min(len(from_parts), len(to_parts))
for _ in range(n):
if from_parts[0] == to_parts[0]:
from_parts.pop(0)
to_parts.pop(0)
else:
break

# Impossible to compute a relative path without knowing what ".." is
if from_parts and from_parts[0] == "..":
fail("cannot compute relative path from '%s' to '%s'", from_, to)

parts = ([".."] * len(from_parts)) + to_parts
return paths.join(*parts)

# Create a venv the executable can use.
# For venv details and the venv startup process, see:
# * https://docs.python.org/3/library/venv.html
Expand All@@ -368,9 +399,15 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):
# in runfiles is always a symlink. An RBE implementation, for example,
# may choose to write what symlink() points to instead.
interpreter = ctx.actions.declare_symlink("{}/bin/{}".format(venv, py_exe_basename))
interpreter_actual_path = runtime.interpreter.short_path
parent = "/".join([".."] * (interpreter_actual_path.count("/") + 1))
rel_path = parent + "/" + interpreter_actual_path

interpreter_actual_path = _runfiles_root_path(ctx, runtime.interpreter.short_path)
rel_path = relative_path(
# dirname is necessary because a relative symlink is relative to
# the directory the symlink resides within.
from_ = paths.dirname(_runfiles_root_path(ctx, interpreter.short_path)),
to = interpreter_actual_path,
)

ctx.actions.symlink(output = interpreter, target_path = rel_path)
else:
py_exe_basename = paths.basename(runtime.interpreter_path)
Expand DownExpand Up@@ -412,7 +449,7 @@ def _create_venv(ctx, output_prefix, imports, runtime_details):

return struct(
interpreter = interpreter,
# Runfiles-relative path or absolute path
# Runfiles root relative path or absolute path
interpreter_actual_path = interpreter_actual_path,
files_without_interpreter = [pyvenv_cfg, pth, site_init],
)
Expand DownExpand Up@@ -462,12 +499,22 @@ def _create_stage2_bootstrap(
)
return output

def _runfiles_root_path(ctx, path):
# The ../ comes from short_path for files in other repos.
if path.startswith("../"):
return path[3:]
def _runfiles_root_path(ctx, short_path):
"""Compute a runfiles-root relative path from `File.short_path`

Args:
ctx: current target ctx
short_path: str, a main-repo relative path from `File.short_path`

Returns:
{type}`str`, a runflies-root relative path
"""

# The ../ comes from short_path is for files in other repos.
if short_path.startswith("../"):
return short_path[3:]
else:
return "{}/{}".format(ctx.workspace_name, path)
return "{}/{}".format(ctx.workspace_name, short_path)

def _create_stage1_bootstrap(
ctx,
Expand All@@ -487,7 +534,7 @@ def _create_stage1_bootstrap(
python_binary_path = runtime_details.executable_interpreter_path

if is_for_zip and venv:
python_binary_actual = _runfiles_root_path(ctx, venv.interpreter_actual_path)
python_binary_actual = venv.interpreter_actual_path
else:
python_binary_actual = ""

Expand Down
1 change: 1 addition & 0 deletions python/private/stage1_bootstrap_template.sh
Original file line numberDiff line numberDiff line change
Expand Up@@ -135,6 +135,7 @@ fi
if [[ ! -x "$python_exe" ]]; then
if [[ ! -e "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not found: $python_exe"
ls -l $python_exe >&2
exit 1
elif [[ ! -x "$python_exe" ]]; then
echo >&2 "ERROR: Python interpreter not executable: $python_exe"
Expand Down
3 changes: 3 additions & 0 deletions tests/bootstrap_impls/BUILD.bazel
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,6 +14,7 @@

load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test", "sh_py_run_test")
load(":venv_relative_path_tests.bzl", "relative_path_test_suite")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
Expand DownExpand Up@@ -87,3 +88,5 @@ sh_py_run_test(
sh_src = "sys_executable_inherits_sys_path_test.sh",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)

relative_path_test_suite(name = "relative_path_tests")
15 changes: 15 additions & 0 deletions tests/bootstrap_impls/a/b/c/BUILD.bazel
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
load("//python/private:util.bzl", "IS_BAZEL_7_OR_HIGHER") # buildifier: disable=bzl-visibility
load("//tests/support:sh_py_run_test.bzl", "py_reconfig_test")

_SUPPORTS_BOOTSTRAP_SCRIPT = select({
"@platforms//os:windows": ["@platforms//:incompatible"],
"//conditions:default": [],
}) if IS_BAZEL_7_OR_HIGHER else ["@platforms//:incompatible"]

py_reconfig_test(
name = "nested_dir_test",
srcs = ["nested_dir_test.py"],
bootstrap_impl = "script",
main = "nested_dir_test.py",
target_compatible_with = _SUPPORTS_BOOTSTRAP_SCRIPT,
)
24 changes: 24 additions & 0 deletions tests/bootstrap_impls/a/b/c/nested_dir_test.py
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.
"""Test that the binary being a different directory depth than the underlying interpreter works."""

import unittest


class RunsTest(unittest.TestCase):
def test_runs(self):
pass


unittest.main()
90 changes: 90 additions & 0 deletions tests/bootstrap_impls/venv_relative_path_tests.bzl
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
# Copyright 2023 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# 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.

"Unit tests for relative_path computation"

load("@rules_testing//lib:test_suite.bzl", "test_suite")
load("//python/private:py_executable_bazel.bzl", "relative_path") # buildifier: disable=bzl-visibility

_tests = []

def _relative_path_test(env):
# Basic test cases

env.expect.that_str(
relative_path(
from_ = "a/b",
to = "c/d",
),
).equals("../../c/d")

env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/d",
),
).equals("../../d")
env.expect.that_str(
relative_path(
from_ = "a/b/c",
to = "a/b/c/d/e",
),
).equals("d/e")

# Real examples

# external py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses external python runtime
env.expect.that_str(
relative_path(
from_ = "_main/test/version_default.venv/bin",
to = "rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../rules_python~~python~python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# external py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "other_repo~/python/private/_py_console_script_gen_py.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../../../_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

# internal py_binary uses internal python runtime
env.expect.that_str(
relative_path(
from_ = "_main/scratch/main.venv/bin",
to = "_main/python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
),
).equals(
"../../../python/python_3_9_x86_64-unknown-linux-gnu/bin/python3",
)

_tests.append(_relative_path_test)

def relative_path_test_suite(*, name):
test_suite(name = name, basic_tests = _tests)