Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bzlmod: stardoc is broken by repo mappings #14140

Closed
Tracked by #138 ...
meteorcloudy opened this issue Oct 20, 2021 · 12 comments
Closed
Tracked by #138 ...

Bzlmod: stardoc is broken by repo mappings #14140

meteorcloudy opened this issue Oct 20, 2021 · 12 comments
Assignees
Labels
area-Bzlmod Bzlmod-specific PRs, issues, and feature requests P2 We'll consider working on this in future. (Assignee optional) team-ExternalDeps External dependency handling, remote repositiories, WORKSPACE file. type: bug
Projects

Comments

@meteorcloudy
Copy link
Member

When Bzlmod is enabled, building stardoc for a bzl_library which has external dependencies will fail.

This is discovered in bazelbuild/bazel-central-registry#18, and the build failure can be found here.

The root cause is that when Bzlmod is enabled, the canonical repo name for bazel_skylib is bazel_skylib.1.0.3, which now contains the version number. In the normal bazel build, we have repo mappings to make sure BUILD/bzl files can still access the targets under the repository with @bazel_skylib. However, when stardoc is parsing a label, it's not doing any repo mapping to locate the canonical repo name. Which led to:

Stardoc documentation generation failed: File external/io_bazel_stardoc.0.5.0/stardoc/stardoc.bzl imported '@bazel_skylib//:bzl_library.bzl', yet external/bazel_skylib/bzl_library.bzl was not found, even at roots [., external/__main__].

Note that this is also an issue if you use the repo mapping feature in WORKSPACE file, but it's not widely used so no one has hit this problem before. Since we are embracing the repo mapping feature in Bzlmod to avoid conflicts and provide strict deps, we have to solve this problem.

Related #13316

@meteorcloudy meteorcloudy added type: bug P2 We'll consider working on this in future. (Assignee optional) team-ExternalDeps External dependency handling, remote repositiories, WORKSPACE file. labels Oct 20, 2021
@meteorcloudy meteorcloudy added this to To Do in bzlmod v1 via automation Oct 20, 2021
@gregestren gregestren added the team-OSS Issues for the Bazel OSS team: installation, release processBazel packaging, website label Nov 18, 2021
@philwo philwo removed the team-OSS Issues for the Bazel OSS team: installation, release processBazel packaging, website label Nov 29, 2021
@keith
Copy link
Member

keith commented Jan 24, 2022

Ah, I also filed bazelbuild/stardoc#117 about this

@Wyverald Wyverald added the area-Bzlmod Bzlmod-specific PRs, issues, and feature requests label Jan 24, 2022
@Wyverald
Copy link
Member

Is there a runfiles library for Java? I think @fmeum also had a rules_runfiles or something. (Sorry I've never really looked into runfiles) That's probably the best way to resolve this.

@fmeum
Copy link
Collaborator

fmeum commented Jan 24, 2022

Is there a runfiles library for Java? I think @fmeum also had a rules_runfiles or something. (Sorry I've never really looked into runfiles) That's probably the best way to resolve this.

The runfiles library at @bazel_tools//tools/java/runfiles (and my ruleset based on it) solves the somewhat orthogonal problem of getting the runtime path on disk of a runfile given its logical path under external, i.e. internal_repo_name/path/to/pkg/file. But if I understand the current issue correctly, the problem is that Stardoc is not repo mappings aware?

@Wyverald
Copy link
Member

Yeah Stardoc needs to convert a label into a runfile path (runtime path of a runfile?) and that's not so simple with repo mappings.

@Wyverald
Copy link
Member

Update: We're considering solving this in a similar fashion to #15029, by outputting a file containing all repo mappings and having that file available to binaries at runtime. It's still to be decided where this file should live.

@aiuto
Copy link
Contributor

aiuto commented Oct 18, 2022

cc: @aiuto

@comius
Copy link
Contributor

comius commented Nov 4, 2022

Yeah Stardoc needs to convert a label into a runfile path (runtime path of a runfile?) and that's not so simple with repo mappings.

It's slightly worse. It needs to convert it to execpath. There are no runfiles (because render is packed separately than input .bzl files), and no repo_mapping because of this.

@fmeum
Copy link
Collaborator

fmeum commented Nov 4, 2022

@comius I formated an alternative idea in https://github.com/bazelbuild/proposals/blob/main/designs/2022-07-21-locating-runfiles-with-bzlmod.md#4-make-stardoc-compatible-with-repository-mappings, do you think that could work? @tetromino is working on a rewrite of some parts of stardoc that would allow it to request bzl files from Skyframe (if I understood him correctly), which should also solve this issue.

@comius
Copy link
Contributor

comius commented Nov 5, 2022

Yes, that works. I was thinking of a slight alternative where macro would add a custom java_binary StardocMain with data runfiles. Maybe slightly less hacky, because you don't need a no-op executable.

Second alternative option is to add repository mapping information to bzl_library and dump it into a file in stardoc rule. I'm guessing you can collect the needed triples in bzl_library into a depset. And then you could use args trick to dump to a file neatly. But that would need a second implementation of reading repo mapping in StartdocMain similar to runfiles.

@fmeum
Copy link
Collaborator

fmeum commented Nov 5, 2022

The custom StardocMain binary sounds better, yes.

I am not so sure you can actually collect the apparent names because the rule implementation typically only sees the canonical names. But even if you could, reusing the existing repository mapping logic even if by a small hack seems more reliable to me.

@tetromino Can you estimate when you would get to work on the improved bzl loading for Stardoc? Would the changes require a new Bazel version or could they be used independentl

cgrindel added a commit to cgrindel/bazel-starlib that referenced this issue Mar 8, 2023
- Clean house:
  - Remove all conditional dependency code.
- Remove the ability to build buildtools from source. Just use
`keith/buildifier-prebuilt`.
  - Remove unused `binary_pkg`.
- Add `MODULE.bazel` with all dependencies.
- Update all example workspaces to include a `MODULE.bazel`.
- Add `--noenable_bzlmod` to `shared.bazelrc` until
bazelbuild/bazel#14140 is fixed.

Related to #195.
cgrindel added a commit to cgrindel/bazel-starlib that referenced this issue Mar 9, 2023
- Add `WORKSPACE.bzlmod` to all workspaces to ensure that the strict
bzlmod support was enabled.
- Disable all documentation generation and tests until
bazelbuild/bazel#14140 is fixed.
- Update CI to execute tidy and test with and without bzlmod.
- Fix warning in `sorted_genquery.bzl`.

Related to #195.
@fmeum
Copy link
Collaborator

fmeum commented Apr 25, 2023

@comius Saw the merge, thanks for that! Maybe we should keep this issue open until there is a BCR release of stardoc with the changes?

@meteorcloudy meteorcloudy reopened this Apr 26, 2023
@tetromino
Copy link
Contributor

Fixed by bazelbuild/bazel-central-registry#635

fweikert pushed a commit to fweikert/bazel that referenced this issue May 25, 2023
By taking in .bzl files as runfiles rather than inputs, Stardoc can use the existing Java runfiles library to resolve apparent repository names in load labels into canonical repository names.

Work towards bazelbuild#16124
Fixes bazelbuild#14140

Closes bazelbuild#16775.

PiperOrigin-RevId: 526976752
Change-Id: I0848a5c7590348f778ad8c939fd37c89a53e55b2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-Bzlmod Bzlmod-specific PRs, issues, and feature requests P2 We'll consider working on this in future. (Assignee optional) team-ExternalDeps External dependency handling, remote repositiories, WORKSPACE file. type: bug
Projects
No open projects
Development

Successfully merging a pull request may close this issue.

9 participants