Skip to content

Commit

Permalink
fix: Support bazel 8 and --noenable_workspace mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Pasternak committed Nov 13, 2024
1 parent f820249 commit bda1755
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@ public static void main(String[] a) throws Exception {
aspectStrategyBazel.getAspectFlag().get(),
String.format(
"%s=%s/%s/aspect",
AspectRepositoryProvider.OVERRIDE_REPOSITORY_FLAG,
AspectRepositoryProvider.overrideRepositoryFlag(false),
System.getenv("TEST_SRCDIR"),
System.getenv("TEST_WORKSPACE")),
String.format(
"%s=%s/%s/aspect_template",
AspectRepositoryProvider.OVERRIDE_REPOSITORY_TEMPLATE_FLAG,
AspectRepositoryProvider.overrideRepositoryTemplateFlag(false),
System.getenv("TEST_SRCDIR"),
System.getenv("TEST_WORKSPACE"))
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
package com.google.idea.blaze.base.sync.aspects.strategy;

import com.google.idea.blaze.base.model.BlazeProjectData;
import com.google.idea.blaze.base.model.BlazeVersionData;
import com.google.idea.blaze.base.sync.data.BlazeProjectDataManager;
import com.intellij.openapi.extensions.ExtensionPointName;
import com.intellij.openapi.project.Project;

Expand All @@ -11,8 +14,20 @@ public interface AspectRepositoryProvider {
ExtensionPointName<AspectRepositoryProvider> EP_NAME =
ExtensionPointName.create("com.google.idea.blaze.AspectRepositoryProvider");

String OVERRIDE_REPOSITORY_FLAG = "--override_repository=intellij_aspect";
String OVERRIDE_REPOSITORY_TEMPLATE_FLAG = "--override_repository=intellij_aspect_template";
static String newRepositoryFlag(boolean useInjectedRepository) {
if (useInjectedRepository) {
return "--inject_repository";
} else {
return "--override_repository";
}
}

static String overrideRepositoryFlag(boolean useInjectedRepository) {
return String.format("%s=intellij_aspect", newRepositoryFlag(useInjectedRepository));
}
static String overrideRepositoryTemplateFlag(boolean useInjectedRepository) {
return String.format("%s=intellij_aspect_template", newRepositoryFlag(useInjectedRepository));
}

Optional<File> aspectDirectory();

Expand Down Expand Up @@ -41,17 +56,26 @@ static Optional<File> findAspectTemplateDirectory() {
}

static Optional<String>[] getOverrideFlags(Project project) {

BlazeProjectData projectData =
BlazeProjectDataManager.getInstance(project).getBlazeProjectData();
if(projectData == null) {
throw new RuntimeException("Not synced yet; please sync project");
}

BlazeVersionData versionData = projectData.getBlazeVersionData();
var useInjectedRepository = versionData.bazelIsAtLeastVersion(8, 0 ,0);
return new Optional[] {
getOverrideFlagForAspectDirectory(),
getOverrideFlagForProjectAspectDirectory(project),
getOverrideFlagForAspectDirectory(useInjectedRepository),
getOverrideFlagForProjectAspectDirectory(project, useInjectedRepository),
};
}

private static Optional<String> getOverrideFlagForAspectDirectory() {
return findAspectDirectory().map(it -> OVERRIDE_REPOSITORY_FLAG + "=" + it.getPath());
private static Optional<String> getOverrideFlagForAspectDirectory(boolean useInjectedRepository) {
return findAspectDirectory().map(it -> overrideRepositoryFlag(useInjectedRepository) + "=" + it.getPath());
}

private static Optional<String> getOverrideFlagForProjectAspectDirectory(Project project) {
return getProjectAspectDirectory(project).map(it -> OVERRIDE_REPOSITORY_TEMPLATE_FLAG + "=" + it.getPath());
private static Optional<String> getOverrideFlagForProjectAspectDirectory(Project project, boolean useInjectedRepository) {
return getProjectAspectDirectory(project).map(it -> overrideRepositoryTemplateFlag(useInjectedRepository) + "=" + it.getPath());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@ public Optional<File> aspectTemplateDirectory() {
@VisibleForTesting
public AspectStrategyBazel(BlazeVersionData versionData) {
super(/* aspectSupportsDirectDepsTrimming= */ true);
if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
boolean useInjectedRepository = versionData.bazelIsAtLeastVersion(8, 0, 0);
if (useInjectedRepository) {
aspectFlag = "--aspects=@intellij_aspect//:intellij_info_bundled.bzl%intellij_info_aspect";
} else if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
aspectFlag = "--aspects=@@intellij_aspect//:intellij_info_bundled.bzl%intellij_info_aspect";
} else {
aspectFlag = "--aspects=@intellij_aspect//:intellij_info_bundled.bzl%intellij_info_aspect";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ final class BazelFastBuildAspectStrategy extends FastBuildAspectStrategy {
@Override
protected List<String> getAspectFlags(BlazeVersionData versionData, Project project) {
String intellijAspectFile;
if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
boolean useInjectedRepository = versionData.bazelIsAtLeastVersion(8, 0, 0);
if(useInjectedRepository) {
intellijAspectFile = "--aspects=@intellij_aspect//:fast_build_info_bundled.bzl%fast_build_info_aspect";
} else if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
intellijAspectFile = "--aspects=@@intellij_aspect//:fast_build_info_bundled.bzl%fast_build_info_aspect";
} else {
intellijAspectFile = "--aspects=@intellij_aspect//:fast_build_info_bundled.bzl%fast_build_info_aspect";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
import java.util.stream.Collectors;
import java.util.stream.Stream;
import javax.annotation.Nullable;

Expand Down Expand Up @@ -61,9 +60,12 @@ public boolean isApplicable(BlazeVersionData versionData) {
@Override
public ImmutableList<String> getBuildFlags(BlazeVersionData versionData, Project project) {
String intellijAspect;
if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
boolean useInjectedRepository = versionData.bazelIsAtLeastVersion(8, 0, 0);
if (useInjectedRepository) {
intellijAspect = "--aspects=@intellij_aspect//:java_classpath.bzl%java_classpath_aspect";
} else if (versionData.bazelIsAtLeastVersion(6, 0, 0)) {
intellijAspect = "--aspects=@@intellij_aspect//:java_classpath.bzl%java_classpath_aspect";
} else {
} else { // #bazel5 we are going to drop bazel 5 support in Feb 2025
intellijAspect = "--aspects=@intellij_aspect//:java_classpath.bzl%java_classpath_aspect";
}

Expand Down

0 comments on commit bda1755

Please sign in to comment.