mirror of
https://github.com/architectury/architectury-loom.git
synced 2026-03-28 04:07:01 -05:00
* Make remapping tasks use the archive file from the Jar API Other minor changes: - Exception messages now include the absolute path of the jar file - RemapSourcesJarTask now also uses descriptive wrappers instead of a direct new RuntimeException(...) * Stop overriding Jar.copy with a no-op * Add test for using Jar's API on remapJar and remapSourcesJar
314 lines
11 KiB
Java
314 lines
11 KiB
Java
/*
|
|
* This file is part of fabric-loom, licensed under the MIT License (MIT).
|
|
*
|
|
* Copyright (c) 2021-2025 FabricMC
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package net.fabricmc.loom.task;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.file.Files;
|
|
import java.nio.file.Path;
|
|
import java.nio.file.StandardCopyOption;
|
|
import java.util.Objects;
|
|
import java.util.stream.Stream;
|
|
|
|
import javax.inject.Inject;
|
|
|
|
import com.google.gson.JsonObject;
|
|
import org.gradle.api.artifacts.ConfigurationContainer;
|
|
import org.gradle.api.file.ConfigurableFileCollection;
|
|
import org.gradle.api.file.FileCollection;
|
|
import org.gradle.api.plugins.JavaPlugin;
|
|
import org.gradle.api.provider.ListProperty;
|
|
import org.gradle.api.provider.Property;
|
|
import org.gradle.api.provider.Provider;
|
|
import org.gradle.api.tasks.Input;
|
|
import org.gradle.api.tasks.InputFiles;
|
|
import org.gradle.api.tasks.Nested;
|
|
import org.gradle.api.tasks.SourceSet;
|
|
import org.gradle.api.tasks.TaskProvider;
|
|
import org.jetbrains.annotations.ApiStatus;
|
|
import org.jetbrains.annotations.Nullable;
|
|
import org.slf4j.Logger;
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
import net.fabricmc.classtweaker.api.ClassTweakerReader;
|
|
import net.fabricmc.classtweaker.api.ClassTweakerWriter;
|
|
import net.fabricmc.classtweaker.visitors.ClassTweakerRemapperVisitor;
|
|
import net.fabricmc.loom.LoomGradleExtension;
|
|
import net.fabricmc.loom.build.nesting.JarNester;
|
|
import net.fabricmc.loom.build.nesting.NestableJarGenerationTask;
|
|
import net.fabricmc.loom.configuration.accesswidener.AccessWidenerFile;
|
|
import net.fabricmc.loom.configuration.mods.ArtifactMetadata;
|
|
import net.fabricmc.loom.task.service.ClientEntriesService;
|
|
import net.fabricmc.loom.task.service.MixinRefmapService;
|
|
import net.fabricmc.loom.task.service.TinyRemapperService;
|
|
import net.fabricmc.loom.util.Constants;
|
|
import net.fabricmc.loom.util.Pair;
|
|
import net.fabricmc.loom.util.SidedClassVisitor;
|
|
import net.fabricmc.loom.util.ZipUtils;
|
|
import net.fabricmc.loom.util.fmj.FabricModJsonFactory;
|
|
import net.fabricmc.loom.util.fmj.FabricModJsonUtils;
|
|
import net.fabricmc.loom.util.service.ScopedServiceFactory;
|
|
import net.fabricmc.loom.util.service.ServiceFactory;
|
|
import net.fabricmc.tinyremapper.OutputConsumerPath;
|
|
import net.fabricmc.tinyremapper.TinyRemapper;
|
|
|
|
public abstract class RemapJarTask extends AbstractRemapJarTask {
|
|
@InputFiles
|
|
public abstract ConfigurableFileCollection getNestedJars();
|
|
|
|
@Input
|
|
public abstract Property<Boolean> getAddNestedDependencies();
|
|
|
|
/**
|
|
* Whether to optimize the fabric.mod.json file, by default this is false.
|
|
*
|
|
* <p>The schemaVersion entry will be placed first in the json file
|
|
*/
|
|
@Input
|
|
public abstract Property<Boolean> getOptimizeFabricModJson();
|
|
|
|
@Input
|
|
@ApiStatus.Internal
|
|
public abstract Property<Boolean> getUseMixinAP();
|
|
@Nested
|
|
public abstract Property<TinyRemapperService.Options> getTinyRemapperServiceOptions();
|
|
@Nested
|
|
public abstract ListProperty<MixinRefmapService.Options> getMixinRefmapServiceOptions();
|
|
|
|
@Inject
|
|
public RemapJarTask() {
|
|
super();
|
|
final ConfigurationContainer configurations = getProject().getConfigurations();
|
|
getClasspath().from(configurations.getByName(JavaPlugin.COMPILE_CLASSPATH_CONFIGURATION_NAME));
|
|
getAddNestedDependencies().convention(true).finalizeValueOnRead();
|
|
getOptimizeFabricModJson().convention(false).finalizeValueOnRead();
|
|
|
|
TaskProvider<NestableJarGenerationTask> processIncludeJars = getProject().getTasks().named(Constants.Task.PROCESS_INCLUDE_JARS, NestableJarGenerationTask.class);
|
|
getNestedJars().from(processIncludeJars.map(task -> getProject().fileTree(task.getOutputDirectory())));
|
|
getNestedJars().builtBy(processIncludeJars);
|
|
|
|
getUseMixinAP().set(LoomGradleExtension.get(getProject()).getMixin().getUseLegacyMixinAp());
|
|
|
|
// Make outputs reproducible by default
|
|
setReproducibleFileOrder(true);
|
|
setPreserveFileTimestamps(false);
|
|
|
|
getJarType().set("classes");
|
|
|
|
getTinyRemapperServiceOptions().set(TinyRemapperService.createOptions(this));
|
|
getMixinRefmapServiceOptions().set(MixinRefmapService.createOptions(this));
|
|
}
|
|
|
|
@Override
|
|
protected void copy() {
|
|
super.copy();
|
|
|
|
submitWork(RemapAction.class, params -> {
|
|
if (getAddNestedDependencies().get()) {
|
|
params.getNestedJars().from(getNestedJars());
|
|
}
|
|
|
|
if (!params.namespacesMatch()) {
|
|
params.getTinyRemapperServiceOptions().set(getTinyRemapperServiceOptions());
|
|
params.getMixinRefmapServiceOptions().set(getMixinRefmapServiceOptions());
|
|
|
|
params.getRemapClasspath().from(getClasspath());
|
|
|
|
final boolean mixinAp = getUseMixinAP().get();
|
|
params.getUseMixinExtension().set(!mixinAp);
|
|
|
|
// Add the mixin refmap remap type to the manifest
|
|
// This is used by the mod dependency remapper to determine if it should remap the refmap
|
|
// or if the refmap should be remapped by mixin at runtime.
|
|
final var refmapRemapType = mixinAp ? ArtifactMetadata.MixinRemapType.MIXIN : ArtifactMetadata.MixinRemapType.STATIC;
|
|
params.getManifestAttributes().put(Constants.Manifest.MIXIN_REMAP_TYPE, refmapRemapType.manifestValue());
|
|
}
|
|
|
|
params.getOptimizeFmj().set(getOptimizeFabricModJson().get());
|
|
});
|
|
}
|
|
|
|
public interface RemapParams extends AbstractRemapParams {
|
|
ConfigurableFileCollection getNestedJars();
|
|
ConfigurableFileCollection getRemapClasspath();
|
|
|
|
Property<Boolean> getUseMixinExtension();
|
|
Property<Boolean> getOptimizeFmj();
|
|
|
|
Property<TinyRemapperService.Options> getTinyRemapperServiceOptions();
|
|
ListProperty<MixinRefmapService.Options> getMixinRefmapServiceOptions();
|
|
}
|
|
|
|
public abstract static class RemapAction extends AbstractRemapAction<RemapParams> {
|
|
private static final Logger LOGGER = LoggerFactory.getLogger(RemapAction.class);
|
|
|
|
private @Nullable TinyRemapperService tinyRemapperService;
|
|
private @Nullable TinyRemapper tinyRemapper;
|
|
private Path inputFile;
|
|
|
|
public RemapAction() {
|
|
}
|
|
|
|
@Override
|
|
protected void execute(Path inputFile) throws IOException {
|
|
try (var serviceFactory = new ScopedServiceFactory()) {
|
|
LOGGER.info("Remapping {} to {}", inputFile, outputFile);
|
|
this.inputFile = inputFile;
|
|
|
|
this.tinyRemapperService = getParameters().getTinyRemapperServiceOptions().isPresent()
|
|
? serviceFactory.get(getParameters().getTinyRemapperServiceOptions().get())
|
|
: null;
|
|
|
|
prepare();
|
|
|
|
if (tinyRemapperService != null) {
|
|
tinyRemapper = tinyRemapperService.getTinyRemapperForRemapping();
|
|
|
|
remap();
|
|
} else {
|
|
Files.copy(inputFile, outputFile, StandardCopyOption.REPLACE_EXISTING);
|
|
}
|
|
|
|
if (getParameters().getClientOnlyEntries().isPresent()) {
|
|
markClientOnlyClasses();
|
|
}
|
|
|
|
remapAccessWidener();
|
|
addRefmaps(serviceFactory);
|
|
addNestedJars();
|
|
modifyJarManifest();
|
|
rewriteJar();
|
|
|
|
if (getParameters().getOptimizeFmj().get()) {
|
|
optimizeFMJ();
|
|
}
|
|
|
|
if (tinyRemapperService != null) {
|
|
tinyRemapperService.close();
|
|
}
|
|
|
|
LOGGER.debug("Finished remapping {}", inputFile);
|
|
}
|
|
}
|
|
|
|
private void prepare() {
|
|
if (tinyRemapperService != null) {
|
|
tinyRemapperService.getTinyRemapperForInputs().readInputsAsync(tinyRemapperService.getOrCreateTag(inputFile), inputFile);
|
|
}
|
|
}
|
|
|
|
private void remap() throws IOException {
|
|
Objects.requireNonNull(tinyRemapperService, "tinyRemapperService");
|
|
Objects.requireNonNull(tinyRemapper, "tinyRemapper");
|
|
|
|
// Delete the old file to prevent deleted contents from sticking around in the jar.
|
|
Files.deleteIfExists(outputFile);
|
|
|
|
try (OutputConsumerPath outputConsumer = new OutputConsumerPath.Builder(outputFile).build()) {
|
|
outputConsumer.addNonClassFiles(inputFile);
|
|
tinyRemapper.apply(outputConsumer, tinyRemapperService.getOrCreateTag(inputFile));
|
|
}
|
|
}
|
|
|
|
private void markClientOnlyClasses() throws IOException {
|
|
final Stream<Pair<String, ZipUtils.UnsafeUnaryOperator<byte[]>>> tranformers = getParameters().getClientOnlyEntries().get().stream()
|
|
.map(s -> new Pair<>(s,
|
|
(ZipUtils.AsmClassOperator) classVisitor -> SidedClassVisitor.CLIENT.insertApplyVisitor(null, classVisitor)
|
|
));
|
|
|
|
ZipUtils.transform(outputFile, tranformers);
|
|
}
|
|
|
|
private void remapAccessWidener() throws IOException {
|
|
if (getParameters().namespacesMatch()) {
|
|
return;
|
|
}
|
|
|
|
final AccessWidenerFile accessWidenerFile = AccessWidenerFile.fromModJar(inputFile);
|
|
|
|
if (accessWidenerFile == null) {
|
|
return;
|
|
}
|
|
|
|
byte[] remapped = remapAccessWidener(accessWidenerFile.content());
|
|
|
|
// Finally, replace the output with the remaped aw
|
|
ZipUtils.replace(outputFile, accessWidenerFile.path(), remapped);
|
|
}
|
|
|
|
private byte[] remapAccessWidener(byte[] input) {
|
|
Objects.requireNonNull(tinyRemapper, "tinyRemapper");
|
|
|
|
int version = ClassTweakerReader.readVersion(input);
|
|
|
|
ClassTweakerWriter writer = ClassTweakerWriter.create(version);
|
|
ClassTweakerRemapperVisitor remapper = new ClassTweakerRemapperVisitor(
|
|
writer,
|
|
tinyRemapper.getEnvironment().getRemapper(),
|
|
getParameters().getSourceNamespace().get(),
|
|
getParameters().getTargetNamespace().get()
|
|
);
|
|
ClassTweakerReader reader = ClassTweakerReader.create(remapper);
|
|
reader.read(input, null); // TODO pass mod id
|
|
|
|
return writer.getOutput();
|
|
}
|
|
|
|
private void addNestedJars() {
|
|
FileCollection nestedJars = getParameters().getNestedJars();
|
|
|
|
if (nestedJars.isEmpty()) {
|
|
LOGGER.info("No jars to nest");
|
|
return;
|
|
}
|
|
|
|
JarNester.nestJars(nestedJars.getFiles(), outputFile.toFile(), LOGGER);
|
|
}
|
|
|
|
private void addRefmaps(ServiceFactory serviceFactory) throws IOException {
|
|
if (getParameters().getUseMixinExtension().getOrElse(false)) {
|
|
return;
|
|
}
|
|
|
|
for (MixinRefmapService.Options options : getParameters().getMixinRefmapServiceOptions().get()) {
|
|
MixinRefmapService mixinRefmapService = serviceFactory.get(options);
|
|
mixinRefmapService.applyToJar(outputFile);
|
|
}
|
|
}
|
|
|
|
private void optimizeFMJ() throws IOException {
|
|
if (!ZipUtils.contains(outputFile, FabricModJsonFactory.FABRIC_MOD_JSON)) {
|
|
return;
|
|
}
|
|
|
|
ZipUtils.transformJson(JsonObject.class, outputFile, FabricModJsonFactory.FABRIC_MOD_JSON, FabricModJsonUtils::optimizeFmj);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected Provider<? extends ClientEntriesService.Options> getClientOnlyEntriesOptionsProvider(SourceSet clientSourceSet) {
|
|
return ClientEntriesService.Classes.createOptions(getProject(), clientSourceSet);
|
|
}
|
|
}
|