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;
|
2019-11-02 20:23:27 +00:00
|
|
|
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;
|
2019-11-15 20:16:09 +00:00
|
|
|
import java.nio.file.StandardCopyOption;
|
|
|
|
import java.util.Set;
|
2019-11-02 20:23:27 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
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.mercury.Mercury;
|
|
|
|
import org.cadixdev.mercury.remapper.MercuryRemapper;
|
2019-11-15 20:16:09 +00:00
|
|
|
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;
|
2019-11-15 20:16:09 +00:00
|
|
|
import org.gradle.api.tasks.options.Option;
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-02 20:23:27 +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;
|
0.2.7 refactors (#178)
* Rough work on project based jars, skeleton for AccessEscalators?
* First working draft
* Minor changes
* Add support for mutable, better error checking when parsing file.
Code cleanup
Remap if needed when reading
* Fix inner classes and genSources
* Fix CME
* Caching, only regen jar when input changes
* Some work, untested
* Fix writing, fix checkstyle issues
* More fixes
* Move jars into a maven file structure, cleans up the file structure, and will benefit idea 2020
Add some basic validation to the AccessWidenerRemapper, will present any issues with the mappings when building (May need a way to disable?)
+ Some bugs fixes
* Fix issues with source jars in idea 2020, should be backwards compatible with 2019
* Move to lorenz-tiny
* Build fix + small cleanup
* Remove accesswidener's for now
* Update dev launch injector, should fix all issues with spaces in the path.
2020-03-06 11:15:34 +00:00
|
|
|
import net.fabricmc.lorenztiny.LorenzTiny;
|
2019-11-09 19:00:36 +00:00
|
|
|
import net.fabricmc.mapping.tree.TinyMappingFactory;
|
|
|
|
import net.fabricmc.mapping.tree.TinyTree;
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-05-10 11:55:17 +00:00
|
|
|
public class MigrateMappingsTask extends AbstractLoomTask {
|
2019-11-15 20:16:09 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-11-02 20:23:27 +00:00
|
|
|
@TaskAction
|
|
|
|
public void doTask() throws Throwable {
|
|
|
|
Project project = getProject();
|
2019-11-15 20:16:09 +00:00
|
|
|
LoomGradleExtension extension = getExtension();
|
2019-11-02 20:23:27 +00:00
|
|
|
|
|
|
|
project.getLogger().lifecycle(":loading mappings");
|
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
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
|
|
|
}
|
2019-11-02 20:23:27 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
Files.createDirectories(outputDir);
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
File mappings = loadMappings();
|
|
|
|
MappingsProvider mappingsProvider = extension.getMappingsProvider();
|
2019-05-10 11:55:17 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
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
|
|
|
}
|
2019-11-15 20:16:09 +00:00
|
|
|
}
|
2019-05-10 11:55:17 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
private File loadMappings() {
|
|
|
|
Project project = getProject();
|
2019-05-10 11:55:17 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
if (mappings == null || mappings.isEmpty()) {
|
|
|
|
throw new IllegalArgumentException("No mappings were specified. Use --mappings=\"\" to specify target mappings");
|
2019-11-02 20:23:27 +00:00
|
|
|
}
|
2019-05-10 11:55:17 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
Set<File> files;
|
2019-05-10 11:55:17 +00:00
|
|
|
|
2019-11-09 19:00:36 +00:00
|
|
|
try {
|
2019-11-15 20:16:09 +00:00
|
|
|
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();
|
|
|
|
}
|
2019-11-02 20:23:27 +00:00
|
|
|
}
|
2019-11-15 20:16:09 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
2019-11-15 20:16:09 +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-11-02 20:23:27 +00:00
|
|
|
}
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-15 20:16:09 +00:00
|
|
|
try (BufferedReader reader = Files.newBufferedReader(temp)) {
|
2019-11-09 19:00:36 +00:00
|
|
|
return TinyMappingFactory.loadWithDetection(reader);
|
2019-11-02 20:23:27 +00:00
|
|
|
}
|
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,
|
2019-11-15 20:16:09 +00:00
|
|
|
Path inputDir, Path outputDir, TinyTree currentMappings, TinyTree targetMappings
|
2019-11-09 19:00:36 +00:00
|
|
|
) throws IOException {
|
2019-11-02 20:23:27 +00:00
|
|
|
project.getLogger().lifecycle(":joining mappings");
|
0.2.7 refactors (#178)
* Rough work on project based jars, skeleton for AccessEscalators?
* First working draft
* Minor changes
* Add support for mutable, better error checking when parsing file.
Code cleanup
Remap if needed when reading
* Fix inner classes and genSources
* Fix CME
* Caching, only regen jar when input changes
* Some work, untested
* Fix writing, fix checkstyle issues
* More fixes
* Move jars into a maven file structure, cleans up the file structure, and will benefit idea 2020
Add some basic validation to the AccessWidenerRemapper, will present any issues with the mappings when building (May need a way to disable?)
+ Some bugs fixes
* Fix issues with source jars in idea 2020, should be backwards compatible with 2019
* Move to lorenz-tiny
* Build fix + small cleanup
* Remove accesswidener's for now
* Update dev launch injector, should fix all issues with spaces in the path.
2020-03-06 11:15:34 +00:00
|
|
|
MappingSet mappingSet = LorenzTiny.readMappings(currentMappings, targetMappings,
|
2019-11-09 19:00:36 +00:00
|
|
|
"intermediary", "named").read();
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-02 20:23:27 +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
|
|
|
|
0.2.7 refactors (#178)
* Rough work on project based jars, skeleton for AccessEscalators?
* First working draft
* Minor changes
* Add support for mutable, better error checking when parsing file.
Code cleanup
Remap if needed when reading
* Fix inner classes and genSources
* Fix CME
* Caching, only regen jar when input changes
* Some work, untested
* Fix writing, fix checkstyle issues
* More fixes
* Move jars into a maven file structure, cleans up the file structure, and will benefit idea 2020
Add some basic validation to the AccessWidenerRemapper, will present any issues with the mappings when building (May need a way to disable?)
+ Some bugs fixes
* Fix issues with source jars in idea 2020, should be backwards compatible with 2019
* Move to lorenz-tiny
* Build fix + small cleanup
* Remove accesswidener's for now
* Update dev launch injector, should fix all issues with spaces in the path.
2020-03-06 11:15:34 +00:00
|
|
|
mercury.getClassPath().add(minecraftMappedProvider.getMappedJar().toPath());
|
|
|
|
mercury.getClassPath().add(minecraftMappedProvider.getIntermediaryJar().toPath());
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-02 20:23:27 +00:00
|
|
|
mercury.getProcessors().add(MercuryRemapper.create(mappingSet));
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-02 20:23:27 +00:00
|
|
|
try {
|
2019-11-09 19:00:36 +00:00
|
|
|
mercury.rewrite(inputDir, outputDir);
|
2019-11-02 20:23:27 +00:00
|
|
|
} catch (Exception e) {
|
|
|
|
project.getLogger().warn("Could not remap fully!", e);
|
|
|
|
}
|
2019-05-10 11:32:11 +00:00
|
|
|
|
2019-11-02 20:23:27 +00:00
|
|
|
project.getLogger().lifecycle(":cleaning file descriptors");
|
|
|
|
System.gc();
|
|
|
|
}
|
2019-05-10 11:32:11 +00:00
|
|
|
}
|