2
2
3
3
import dev .su5ed .sinytra .adapter .patch .analysis .MethodCallAnalyzer ;
4
4
import dev .su5ed .sinytra .adapter .patch .api .Patch ;
5
+ import dev .su5ed .sinytra .adapter .patch .util .MethodQualifier ;
5
6
import dev .su5ed .sinytra .connector .transformer .jar .IntermediateMapping ;
6
7
import net .minecraftforge .srgutils .IMappingFile ;
7
8
import org .jetbrains .annotations .Nullable ;
15
16
import org .objectweb .asm .tree .analysis .SourceInterpreter ;
16
17
import org .objectweb .asm .tree .analysis .SourceValue ;
17
18
18
- import java .util .ArrayList ;
19
19
import java .util .Collection ;
20
20
import java .util .HashSet ;
21
21
import java .util .List ;
22
22
23
23
public class ClassAnalysingTransformer implements ClassNodeTransformer .ClassProcessor {
24
+ private static final MethodQualifier GET_RESOURCE_AS_STREAM = new MethodQualifier ("Ljava/lang/Class;" , "getResourceAsStream" , "(Ljava/lang/String;)Ljava/io/InputStream;" );
25
+
24
26
private final IMappingFile mappings ;
25
27
private final IntermediateMapping fastMappings ;
26
28
@@ -29,27 +31,25 @@ public ClassAnalysingTransformer(IMappingFile mappings, IntermediateMapping fast
29
31
this .fastMappings = fastMappings ;
30
32
}
31
33
32
- record Replacement (MethodInsnNode methodInsn , AbstractInsnNode paramInsn ) {}
33
-
34
34
@ Override
35
35
public Patch .Result process (ClassNode node ) {
36
36
boolean applied = false ;
37
37
for (MethodNode method : node .methods ) {
38
38
ScanningSourceInterpreter i = MethodCallAnalyzer .analyzeInterpretMethod (method , new ScanningSourceInterpreter (Opcodes .ASM9 ));
39
-
40
39
applied |= i .remapApplied ();
41
- for (Replacement replacement : i .getReplacements ()) {
42
- method .instructions .insert (replacement .paramInsn , new MethodInsnNode (Opcodes .INVOKEVIRTUAL , "java/lang/Class" , "getClassLoader" , "()Ljava/lang/ClassLoader;" ));
43
- replacement .methodInsn .owner = "java/lang/ClassLoader" ;
44
- applied = true ;
40
+
41
+ for (AbstractInsnNode insn : method .instructions ) {
42
+ if (insn instanceof MethodInsnNode minsn && GET_RESOURCE_AS_STREAM .matches (minsn )) {
43
+ method .instructions .set (insn , new MethodInsnNode (Opcodes .INVOKESTATIC , "dev/su5ed/sinytra/connector/mod/ConnectorMod" , "getModResourceAsStream" , "(Ljava/lang/Class;Ljava/lang/String;)Ljava/io/InputStream;" , false ));
44
+ applied = true ;
45
+ }
45
46
}
46
47
}
47
48
return applied ? Patch .Result .APPLY : Patch .Result .PASS ;
48
49
}
49
50
50
51
private class ScanningSourceInterpreter extends SourceInterpreter {
51
52
private static final Type STR_TYPE = Type .getType (String .class );
52
- private final List <Replacement > replacements = new ArrayList <>();
53
53
private final Collection <MethodInsnNode > seen = new HashSet <>();
54
54
private boolean remapApplied = false ;
55
55
@@ -61,24 +61,9 @@ public boolean remapApplied() {
61
61
return this .remapApplied ;
62
62
}
63
63
64
- public List <Replacement > getReplacements () {
65
- return this .replacements ;
66
- }
67
-
68
64
@ Override
69
65
public SourceValue naryOperation (AbstractInsnNode insn , List <? extends SourceValue > values ) {
70
66
if (insn instanceof MethodInsnNode methodInsn && !this .seen .contains (methodInsn )) {
71
- if (methodInsn .owner .equals ("java/lang/Class" ) && methodInsn .name .equals ("getResourceAsStream" ) && methodInsn .desc .equals ("(Ljava/lang/String;)Ljava/io/InputStream;" )) {
72
- SourceValue value = values .get (0 );
73
- if (value .insns .size () == 1 ) {
74
- AbstractInsnNode sourceInsn = value .insns .iterator ().next ();
75
- this .replacements .add (new Replacement (methodInsn , sourceInsn ));
76
- this .seen .add (methodInsn );
77
- }
78
- else {
79
- throw new IllegalStateException ("Got multiple source value insns: " + value .insns );
80
- }
81
- }
82
67
// Try to remap reflection method call args
83
68
Type [] args = Type .getArgumentTypes (methodInsn .desc );
84
69
if (args .length >= 3 && STR_TYPE .equals (args [0 ]) && STR_TYPE .equals (args [1 ]) && STR_TYPE .equals (args [2 ]) && values .size () >= 3 ) {
0 commit comments