-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow creation of shared installations from settings.gradle
- Loading branch information
1 parent
fc7f73e
commit 81473f2
Showing
35 changed files
with
763 additions
and
464 deletions.
There are no files selected for viewing
205 changes: 9 additions & 196 deletions
205
src/main/java/dev/lukebemish/crochet/internal/CrochetPlugin.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,205 +1,18 @@ | ||
package dev.lukebemish.crochet.internal; | ||
|
||
import dev.lukebemish.crochet.CrochetProperties; | ||
import dev.lukebemish.crochet.model.CrochetExtension; | ||
import org.gradle.api.Plugin; | ||
import org.gradle.api.Project; | ||
import org.gradle.api.artifacts.ModuleDependency; | ||
import org.gradle.api.attributes.Attribute; | ||
import org.gradle.api.attributes.AttributeCompatibilityRule; | ||
import org.gradle.api.attributes.AttributeDisambiguationRule; | ||
import org.gradle.api.attributes.Bundling; | ||
import org.gradle.api.attributes.CompatibilityCheckDetails; | ||
import org.gradle.api.attributes.LibraryElements; | ||
import org.gradle.api.attributes.MultipleCandidatesDetails; | ||
import org.gradle.api.attributes.java.TargetJvmVersion; | ||
import org.gradle.api.logging.configuration.ShowStacktrace; | ||
import org.gradle.api.tasks.SourceSetContainer; | ||
import org.jetbrains.annotations.NotNull; | ||
|
||
import javax.inject.Inject; | ||
|
||
public class CrochetPlugin implements Plugin<Project> { | ||
public static final String TASK_GRAPH_RUNNER_CONFIGURATION_NAME = "crochetTaskGraphRunnerClasspath"; | ||
public static final String TASK_GRAPH_RUNNER_TOOLS_CONFIGURATION_NAME = "crochetTaskGraphRunnerDependencies"; | ||
public static final String DEV_LAUNCH_CONFIGURATION_NAME = "crochetDevLaunchClasspath"; | ||
public static final String TERMINAL_CONSOLE_APPENDER_CONFIGURATION_NAME = "crochetTerminalConsoleAppender"; | ||
|
||
public static final String VERSION = CrochetPlugin.class.getPackage().getImplementationVersion(); | ||
|
||
public static final Attribute<String> NEO_DISTRIBUTION_ATTRIBUTE = Attribute.of("net.neoforged.distribution", String.class); | ||
public static final Attribute<String> NEO_OPERATING_SYSTEM_ATTRIBUTE = Attribute.of("net.neoforged.operatingsystem", String.class); | ||
public static final Attribute<String> CROCHET_DISTRIBUTION_ATTRIBUTE = Attribute.of("dev.lukebemish.crochet.distribution", String.class); | ||
public static final Attribute<String> LOCAL_DISTRIBUTION_ATTRIBUTE = Attribute.of("dev.lukebemish.crochet.local.distribution", String.class); | ||
// This attribute SHOULD NOT be published -- it is for use only in internal pre-remapping-collecting setups | ||
public static final Attribute<String> CROCHET_REMAP_TYPE_ATTRIBUTE = Attribute.of("dev.lukebemish.crochet.remap", String.class); | ||
// Dependencies on things that'll need to be remapped when it's all said and done | ||
public static final String CROCHET_REMAP_TYPE_REMAP = "to-remap"; | ||
// Dependencies on other projects non-remapped components | ||
public static final String CROCHET_REMAP_TYPE_NON_REMAP = "not-to-remap"; | ||
import org.gradle.api.initialization.Settings; | ||
|
||
public class CrochetPlugin implements Plugin<Object> { | ||
@Override | ||
public void apply(@NotNull Project project) { | ||
if (project.getProviders().gradleProperty(CrochetProperties.ADD_LIKELY_REPOSITORIES).map(Boolean::parseBoolean).orElse(true).get()) { | ||
if (!project.getPlugins().hasPlugin(CrochetRepositoriesMarker.class)) { | ||
project.getPluginManager().apply(CrochetRepositoriesPlugin.class); | ||
} else { | ||
project.getLogger().debug("Skipping application of crochet repositories as it was applied at the settings level; you may still apply the plugin manually"); | ||
} | ||
} | ||
|
||
project.getPluginManager().apply("java-library"); | ||
|
||
var objects = project.getObjects(); | ||
|
||
project.getExtensions().create("crochet.internal.mappingsConfigurationContainer", MappingsConfigurationCounter.class); | ||
|
||
// TaskGraphRunner | ||
project.getConfigurations().register(TASK_GRAPH_RUNNER_CONFIGURATION_NAME, config -> { | ||
config.attributes(attributes -> { | ||
// TaskGraphRunner runs on 21 in general | ||
attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 21); | ||
// Prefer shadowed jar | ||
attributes.attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.class, Bundling.SHADOWED)); | ||
}); | ||
config.setCanBeConsumed(false); | ||
}); | ||
project.getDependencies().add(TASK_GRAPH_RUNNER_CONFIGURATION_NAME, "dev.lukebemish:taskgraphrunner:" + Versions.TASK_GRAPH_RUNNER); | ||
|
||
project.getConfigurations().register(TASK_GRAPH_RUNNER_TOOLS_CONFIGURATION_NAME, config -> { | ||
config.attributes(attributes -> { | ||
// TaskGraphRunner runs on 21 in general | ||
attributes.attribute(TargetJvmVersion.TARGET_JVM_VERSION_ATTRIBUTE, 21); | ||
}); | ||
config.setCanBeConsumed(false); | ||
}); | ||
((ModuleDependency) project.getDependencies().add(TASK_GRAPH_RUNNER_TOOLS_CONFIGURATION_NAME, "dev.lukebemish:taskgraphrunner:" + Versions.TASK_GRAPH_RUNNER)).capabilities(capabilities -> { | ||
capabilities.requireCapability("dev.lukebemish:taskgraphrunner-external-tools"); | ||
}); | ||
((ModuleDependency) project.getDependencies().add(TASK_GRAPH_RUNNER_TOOLS_CONFIGURATION_NAME, "dev.lukebemish.crochet:tools:" + VERSION)).attributes(attributes -> { | ||
attributes.attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.class, Bundling.SHADOWED)); | ||
}); | ||
((ModuleDependency) project.getDependencies().add(TASK_GRAPH_RUNNER_TOOLS_CONFIGURATION_NAME, "dev.lukebemish:christen:" + Versions.CHRISTEN)).attributes(attributes -> { | ||
attributes.attribute(Bundling.BUNDLING_ATTRIBUTE, objects.named(Bundling.class, Bundling.SHADOWED)); | ||
}); | ||
|
||
|
||
// runs | ||
project.getConfigurations().register(DEV_LAUNCH_CONFIGURATION_NAME); | ||
project.getDependencies().add(DEV_LAUNCH_CONFIGURATION_NAME, "net.neoforged:DevLaunch:" + Versions.DEV_LAUNCH); | ||
|
||
project.getConfigurations().register(TERMINAL_CONSOLE_APPENDER_CONFIGURATION_NAME); | ||
project.getDependencies().add(TERMINAL_CONSOLE_APPENDER_CONFIGURATION_NAME, "net.minecrell:terminalconsoleappender:" + Versions.TERMINAL_CONSOLE_APPENDER); | ||
|
||
// configurations | ||
setupConventionalConfigurations(project); | ||
|
||
// Add more conventional stuff -- classesAndResources variants | ||
project.getExtensions().getByType(SourceSetContainer.class).configureEach(sourceSet -> { | ||
FeatureUtils.forSourceSetFeature(project, sourceSet.getName(), context -> { | ||
var classes = context.getRuntimeElements().getOutgoing().getVariants().findByName("classes"); | ||
var resources = context.getRuntimeElements().getOutgoing().getVariants().findByName("resources"); | ||
if (classes != null && resources != null) { | ||
context.getRuntimeElements().getOutgoing().getVariants().register("classesAndResources", variant -> { | ||
ConfigurationUtils.copyAttributes(classes.getAttributes(), variant.getAttributes(), project.getProviders()); | ||
ConfigurationUtils.copyAttributes(resources.getAttributes(), variant.getAttributes(), project.getProviders()); | ||
variant.getAttributes().attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.class, LibraryElements.CLASSES_AND_RESOURCES)); | ||
variant.getArtifacts().addAllLater(project.provider(classes::getArtifacts)); | ||
variant.getArtifacts().addAllLater(project.provider(resources::getArtifacts)); | ||
}); | ||
} | ||
}); | ||
}); | ||
|
||
var extension = project.getExtensions().create("crochet", CrochetExtension.class, project); | ||
|
||
project.getGradle().getSharedServices().registerIfAbsent("taskGraphRunnerDaemon", TaskGraphRunnerService.class, spec -> { | ||
spec.getParameters().getHideStacktrace().convention(project.getGradle().getStartParameter().getShowStacktrace() == ShowStacktrace.INTERNAL_EXCEPTIONS); | ||
spec.getParameters().getLogLevel().convention(project.getProviders().gradleProperty(CrochetProperties.TASKGRAPHRUNNER_LOG_LEVEL).orElse("INFO")); | ||
spec.getParameters().getRemoveUnusedAssetsAfterDays().convention(project.getProviders().gradleProperty(CrochetProperties.TASKGRAPHRUNNER_REMOVE_ASSET_DURATION).map(Integer::parseInt).orElse(30)); | ||
spec.getParameters().getRemoveUnusedOutputsAfterDays().convention(project.getProviders().gradleProperty(CrochetProperties.TASKGRAPHRUNNER_REMOVE_OUTPUT_DURATION).map(Integer::parseInt).orElse(30)); | ||
spec.getParameters().getRemoveUnusedLocksAfterDays().convention(project.getProviders().gradleProperty(CrochetProperties.TASKGRAPHRUNNER_REMOVE_LOCK_DURATION).map(Integer::parseInt).orElse(1)); | ||
}); | ||
|
||
applyDisambiguationRules(project); | ||
} | ||
|
||
private static void setupConventionalConfigurations(Project project) { | ||
var sourceSets = project.getExtensions().getByType(SourceSetContainer.class); | ||
sourceSets.configureEach(sourceSet -> { | ||
var compileClasspath = project.getConfigurations().getByName(sourceSet.getCompileClasspathConfigurationName()); | ||
var runtimeClasspath = project.getConfigurations().getByName(sourceSet.getRuntimeClasspathConfigurationName()); | ||
|
||
var localRuntime = project.getConfigurations().maybeCreate(sourceSet.getTaskName(null, "localRuntime")); | ||
runtimeClasspath.extendsFrom(localRuntime); | ||
|
||
var localImplementation = project.getConfigurations().maybeCreate(sourceSet.getTaskName(null, "localImplementation")); | ||
compileClasspath.extendsFrom(localImplementation); | ||
runtimeClasspath.extendsFrom(localImplementation); | ||
}); | ||
} | ||
|
||
private static void applyDisambiguationRules(Project project) { | ||
project.getDependencies().attributesSchema(attributesSchema -> { | ||
attributesSchema.attribute(NEO_DISTRIBUTION_ATTRIBUTE).getDisambiguationRules().add(NeoDistributionDisambiguationRule.class); | ||
attributesSchema.attribute(CROCHET_REMAP_TYPE_ATTRIBUTE); | ||
|
||
|
||
String osName = System.getProperty("os.name").toLowerCase(); | ||
String os; | ||
if (osName.startsWith("windows")) { | ||
os = "windows"; | ||
} else if (osName.startsWith("linux")) { | ||
os = "linux"; | ||
} else if (osName.startsWith("mac")) { | ||
os = "mac"; | ||
} else { | ||
throw new IllegalStateException("Unsupported operating system for opensesame native lookup provider: " + osName); | ||
} | ||
attributesSchema.attribute(NEO_OPERATING_SYSTEM_ATTRIBUTE).getDisambiguationRules().add( | ||
NeoOperatingSystemDisambiguationRule.class, | ||
config -> config.params(os) | ||
); | ||
}); | ||
} | ||
|
||
public abstract static class CrochetDistributionDisambiguationRule implements AttributeDisambiguationRule<String> { | ||
@Override | ||
public void execute(MultipleCandidatesDetails<String> details) { | ||
details.closestMatch("joined"); | ||
} | ||
} | ||
|
||
public abstract static class CrochetDistributionCompatiblityRule implements AttributeCompatibilityRule<String> { | ||
@Override | ||
public void execute(CompatibilityCheckDetails<String> details) { | ||
if ("joined".equals(details.getConsumerValue())) { | ||
details.compatible(); | ||
} else if ("common".equals(details.getProducerValue())) { | ||
details.compatible(); | ||
} | ||
} | ||
} | ||
|
||
public abstract static class NeoDistributionDisambiguationRule implements AttributeDisambiguationRule<String> { | ||
@Override | ||
public void execute(MultipleCandidatesDetails<String> details) { | ||
// Client libraries are a superset of server, so default to that. | ||
details.closestMatch("client"); | ||
} | ||
} | ||
|
||
public abstract static class NeoOperatingSystemDisambiguationRule implements AttributeDisambiguationRule<String> { | ||
private final String currentOs; | ||
|
||
@Inject | ||
public NeoOperatingSystemDisambiguationRule(String currentOs) { | ||
this.currentOs = currentOs; | ||
} | ||
|
||
@Override | ||
public void execute(MultipleCandidatesDetails<String> details) { | ||
details.closestMatch(currentOs); | ||
public void apply(Object target) { | ||
if (target instanceof Project project) { | ||
project.getPluginManager().apply(CrochetProjectPlugin.class); | ||
} else if (target instanceof Settings settings) { | ||
settings.getPluginManager().apply(CrochetSettingsPlugin.class); | ||
} else { | ||
throw new IllegalArgumentException("Unsupported target type: " + target.getClass()); | ||
} | ||
} | ||
} |
Oops, something went wrong.