1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
|
package com.replaymod.gradle.remap.legacy;
import org.cadixdev.lorenz.MappingSet;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.HashMap;
import java.util.Map;
import java.util.function.Function;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class LegacyMapping {
public static MappingSet readMappingSet(Path mappingFile, boolean invert) throws IOException {
return new LegacyMappingsReader(readMappings(mappingFile, invert)).read();
}
public static Map<String, LegacyMapping> readMappings(Path mappingFile, boolean invert) throws IOException {
Map<String, LegacyMapping> mappings = new HashMap<>();
Map<String, LegacyMapping> revMappings = new HashMap<>();
int lineNumber = 0;
for (String line : Files.readAllLines(mappingFile, StandardCharsets.UTF_8)) {
lineNumber++;
if (line.trim().startsWith("#") || line.trim().isEmpty()) continue;
String[] parts = line.split(" ");
if (parts.length < 2 || line.contains(";")) {
throw new IllegalArgumentException("Failed to parse line " + lineNumber + " in " + mappingFile + ".");
}
LegacyMapping mapping = mappings.get(parts[0]);
if (mapping == null) {
mapping = new LegacyMapping();
mapping.oldName = mapping.newName = parts[0];
mappings.put(mapping.oldName, mapping);
}
if (parts.length == 2) {
// Class mapping
mapping.newName = parts[1];
// Possibly merge with reverse mapping
LegacyMapping revMapping = revMappings.remove(mapping.newName);
if (revMapping != null) {
mapping.fields.putAll(revMapping.fields);
mapping.methods.putAll(revMapping.methods);
}
revMappings.put(mapping.newName, mapping);
} else if (parts.length == 3 || parts.length == 4) {
String fromName = parts[1];
String toName;
LegacyMapping revMapping;
if (parts.length == 4) {
toName = parts[3];
revMapping = revMappings.get(parts[2]);
if (revMapping == null) {
revMapping = new LegacyMapping();
revMapping.oldName = revMapping.newName = parts[2];
revMappings.put(revMapping.newName, revMapping);
}
} else {
toName = parts[2];
revMapping = mapping;
}
if (fromName.endsWith("()")) {
// Method mapping
fromName = fromName.substring(0, fromName.length() - 2);
toName = toName.substring(0, toName.length() - 2);
mapping.methods.put(fromName, toName);
revMapping.methods.put(fromName, toName);
} else {
// Field mapping
mapping.fields.put(fromName, toName);
revMapping.fields.put(fromName, toName);
}
} else {
throw new IllegalArgumentException("Failed to parse line " + lineNumber + " in " + mappingFile + ".");
}
}
if (invert) {
Stream.concat(
mappings.values().stream(),
revMappings.values().stream()
).distinct().forEach(it -> {
String oldName = it.oldName;
it.oldName = it.newName;
it.newName = oldName;
it.fields = it.fields.entrySet().stream().collect(Collectors.toMap(Map.Entry::getValue, Map.Entry::getKey));
it.methods = it.methods.entrySet().stream().collect(Collectors.toMap(Map.Entry::getValue, Map.Entry::getKey));
});
}
return Stream.concat(
mappings.values().stream(),
revMappings.values().stream()
).collect(Collectors.toMap(mapping -> mapping.oldName, Function.identity(), (mapping, other) -> {
if (!other.oldName.equals(other.newName)) {
if (!mapping.oldName.equals(mapping.newName)
&& !other.oldName.equals(mapping.oldName)
&& !other.newName.equals(mapping.newName)) {
throw new IllegalArgumentException("Conflicting mappings: "
+ mapping.oldName + " -> " + mapping.newName
+ " and " + other.oldName + " -> " + other.newName);
}
mapping.oldName = other.oldName;
mapping.newName = other.newName;
}
mapping.fields.putAll(other.fields);
mapping.methods.putAll(other.methods);
return mapping;
}));
}
public String oldName;
public String newName;
public Map<String, String> fields = new HashMap<>();
public Map<String, String> methods = new HashMap<>();
}
|