fabric-loom/src/main/java/net/fabricmc/loom/task/MigrateMappingsTask.java

251 lines
9.8 KiB
Java
Raw Normal View History

2019-05-10 11:32:11 +00:00
/*
* This file is part of fabric-loom, licensed under the MIT License (MIT).
*
* Copyright (c) 2016, 2017, 2018 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;
2019-11-09 19:00:36 +00:00
import java.io.BufferedReader;
import java.io.File;
import java.io.IOException;
2019-11-09 19:00:36 +00:00
import java.nio.file.FileSystem;
import java.nio.file.FileSystems;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
2019-11-09 19:00:36 +00:00
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
2019-11-09 19:00:36 +00:00
import java.util.function.BiFunction;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Iterables;
2019-05-10 11:32:11 +00:00
import org.cadixdev.lorenz.MappingSet;
import org.cadixdev.lorenz.io.MappingsReader;
2019-11-09 19:00:36 +00:00
import org.cadixdev.lorenz.model.ClassMapping;
import org.cadixdev.lorenz.model.Mapping;
2019-05-10 11:32:11 +00:00
import org.cadixdev.mercury.Mercury;
import org.cadixdev.mercury.remapper.MercuryRemapper;
import org.gradle.api.GradleException;
import org.gradle.api.IllegalDependencyNotation;
2019-05-10 11:32:11 +00:00
import org.gradle.api.Project;
import org.gradle.api.tasks.TaskAction;
import org.gradle.api.tasks.options.Option;
2019-05-10 11:32:11 +00:00
import net.fabricmc.loom.LoomGradleExtension;
2019-11-09 19:00:36 +00:00
import net.fabricmc.loom.providers.MappingsProvider;
import net.fabricmc.loom.providers.MinecraftMappedProvider;
import net.fabricmc.loom.util.SourceRemapper;
import net.fabricmc.mapping.tree.ClassDef;
import net.fabricmc.mapping.tree.Descriptored;
import net.fabricmc.mapping.tree.FieldDef;
import net.fabricmc.mapping.tree.MethodDef;
import net.fabricmc.mapping.tree.TinyMappingFactory;
import net.fabricmc.mapping.tree.TinyTree;
2019-05-10 11:32:11 +00:00
public class MigrateMappingsTask extends AbstractLoomTask {
private Path inputDir;
private Path outputDir;
private String mappings;
public MigrateMappingsTask() {
inputDir = getProject().file("src/main/java").toPath();
outputDir = getProject().file("remappedSrc").toPath();
}
@Option(option = "input", description = "Java source file directory")
public void setInputDir(String inputDir) {
this.inputDir = getProject().file(inputDir).toPath();
}
@Option(option = "output", description = "Remapped source output directory")
public void setOutputDir(String outputDir) {
this.outputDir = getProject().file(outputDir).toPath();
}
@Option(option = "mappings", description = "Target mappings")
public void setMappings(String mappings) {
this.mappings = mappings;
}
@TaskAction
public void doTask() throws Throwable {
Project project = getProject();
LoomGradleExtension extension = getExtension();
project.getLogger().lifecycle(":loading mappings");
if (!Files.exists(inputDir) || !Files.isDirectory(inputDir)) {
throw new IllegalArgumentException("Could not find input directory: " + inputDir.toAbsolutePath());
2019-11-09 19:00:36 +00:00
}
Files.createDirectories(outputDir);
2019-05-10 11:32:11 +00:00
File mappings = loadMappings();
MappingsProvider mappingsProvider = extension.getMappingsProvider();
try {
TinyTree currentMappings = mappingsProvider.getMappings();
TinyTree targetMappings = getMappings(mappings);
migrateMappings(project, extension.getMinecraftMappedProvider(), inputDir, outputDir, currentMappings, targetMappings);
project.getLogger().lifecycle(":remapped project written to " + outputDir.toAbsolutePath());
} catch (IOException e) {
throw new IllegalArgumentException("Error while loading mappings", e);
2019-11-09 19:00:36 +00:00
}
}
private File loadMappings() {
Project project = getProject();
if (mappings == null || mappings.isEmpty()) {
throw new IllegalArgumentException("No mappings were specified. Use --mappings=\"\" to specify target mappings");
}
Set<File> files;
2019-11-09 19:00:36 +00:00
try {
files = project.getConfigurations().detachedConfiguration(project.getDependencies().create(mappings)).resolve();
} catch (IllegalDependencyNotation ignored) {
project.getLogger().info("Could not locate mappings, presuming V2 Yarn");
try {
files = project.getConfigurations().detachedConfiguration(project.getDependencies().module(ImmutableMap.of("group", "net.fabricmc", "name", "yarn", "version", mappings, "classifier", "v2"))).resolve();
} catch (GradleException ignored2) {
project.getLogger().info("Could not locate mappings, presuming V1 Yarn");
files = project.getConfigurations().detachedConfiguration(project.getDependencies().module(ImmutableMap.of("group", "net.fabricmc", "name", "yarn", "version", mappings))).resolve();
}
}
if (files.isEmpty()) {
throw new IllegalArgumentException("Mappings could not be found");
}
return Iterables.getOnlyElement(files);
2019-11-09 19:00:36 +00:00
}
2019-05-10 11:32:11 +00:00
private static TinyTree getMappings(File mappings) throws IOException {
Path temp = Files.createTempFile("mappings", ".tiny");
try (FileSystem fileSystem = FileSystems.newFileSystem(mappings.toPath(), null)) {
Files.copy(fileSystem.getPath("mappings/mappings.tiny"), temp, StandardCopyOption.REPLACE_EXISTING);
}
2019-05-10 11:32:11 +00:00
try (BufferedReader reader = Files.newBufferedReader(temp)) {
2019-11-09 19:00:36 +00:00
return TinyMappingFactory.loadWithDetection(reader);
}
2019-11-09 19:00:36 +00:00
}
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
private static void migrateMappings(Project project, MinecraftMappedProvider minecraftMappedProvider,
Path inputDir, Path outputDir, TinyTree currentMappings, TinyTree targetMappings
2019-11-09 19:00:36 +00:00
) throws IOException {
project.getLogger().lifecycle(":joining mappings");
2019-11-09 19:00:36 +00:00
MappingSet mappingSet = new MappingsJoiner(currentMappings, targetMappings,
"intermediary", "named").read();
2019-05-10 11:32:11 +00:00
project.getLogger().lifecycle(":remapping");
2019-11-09 19:00:36 +00:00
Mercury mercury = SourceRemapper.createMercuryWithClassPath(project, false);
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
mercury.getClassPath().add(minecraftMappedProvider.MINECRAFT_MAPPED_JAR.toPath());
mercury.getClassPath().add(minecraftMappedProvider.MINECRAFT_INTERMEDIARY_JAR.toPath());
2019-05-10 11:32:11 +00:00
mercury.getProcessors().add(MercuryRemapper.create(mappingSet));
2019-05-10 11:32:11 +00:00
try {
2019-11-09 19:00:36 +00:00
mercury.rewrite(inputDir, outputDir);
} catch (Exception e) {
project.getLogger().warn("Could not remap fully!", e);
}
2019-05-10 11:32:11 +00:00
project.getLogger().lifecycle(":cleaning file descriptors");
System.gc();
}
2019-05-10 11:32:11 +00:00
private static class MappingsJoiner extends MappingsReader {
2019-11-09 19:00:36 +00:00
private final TinyTree sourceMappings, targetMappings;
private final String fromNamespace, toNamespace;
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
/**
* Say A is the source mappings and B is the target mappings.
* It does not map from intermediary to named but rather maps from named-A to named-B, by matching intermediary names.
* It goes through all of the intermediary names of A, and for every such intermediary name, call it I,
* matches the named mapping of I in A, with the named mapping of I in B.
* As you might imagine, this requires intermediary mappings to be stable across all versions.
* Since we only use intermediary names (and not descriptors) to match, and intermediary names are unique,
* this will migrate methods that have had their signature changed too.
*/
private MappingsJoiner(TinyTree sourceMappings, TinyTree targetMappings, String fromNamespace, String toNamespace) {
this.sourceMappings = sourceMappings;
this.targetMappings = targetMappings;
this.fromNamespace = fromNamespace;
this.toNamespace = toNamespace;
}
2019-05-10 11:32:11 +00:00
@Override
2019-11-09 19:00:36 +00:00
public MappingSet read(MappingSet mappings) {
Map<String, ClassDef> targetClasses = new HashMap<>();
Map<String, FieldDef> targetFields = new HashMap<>();
Map<String, MethodDef> targetMethods = new HashMap<>();
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
for (ClassDef newClass : targetMappings.getClasses()) {
targetClasses.put(newClass.getName(fromNamespace), newClass);
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
for (FieldDef field : newClass.getFields()) {
targetFields.put(field.getName(fromNamespace), field);
}
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
for (MethodDef method : newClass.getMethods()) {
targetMethods.put(method.getName(fromNamespace), method);
}
}
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
for (ClassDef oldClass : sourceMappings.getClasses()) {
String namedMappingOfSourceMapping = oldClass.getName(toNamespace);
String namedMappingOfTargetMapping = targetClasses.getOrDefault(oldClass.getName(fromNamespace), oldClass).getName(toNamespace);
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
ClassMapping classMapping = mappings.getOrCreateClassMapping(namedMappingOfSourceMapping).setDeobfuscatedName(namedMappingOfTargetMapping);
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
mapMembers(oldClass.getFields(), targetFields, classMapping::getOrCreateFieldMapping);
mapMembers(oldClass.getMethods(), targetMethods, classMapping::getOrCreateMethodMapping);
}
2019-05-10 11:32:11 +00:00
return mappings;
}
2019-05-10 11:32:11 +00:00
2019-11-09 19:00:36 +00:00
private <T extends Descriptored> void mapMembers(Collection<T> oldMembers, Map<String, T> newMembers,
BiFunction<String, String, Mapping> mapper) {
for (T oldMember : oldMembers) {
String oldName = oldMember.getName(toNamespace);
String oldDescriptor = oldMember.getDescriptor(toNamespace);
// We only use the intermediary name (and not the descriptor) because every method has a unique intermediary name
String newName = newMembers.getOrDefault(oldMember.getName(fromNamespace), oldMember).getName(toNamespace);
mapper.apply(oldName, oldDescriptor).setDeobfuscatedName(newName);
}
}
@Override
2019-11-09 19:00:36 +00:00
public void close() {
}
}
2019-05-10 11:32:11 +00:00
}