blob: 55f2141bf3b169a8f1c216c846a163ca7a917f76 (
plain) (
blame)
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
|
/*******************************************************************************
* Copyright (c) 2015 Jeff Martin.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the GNU Lesser General Public
* License v3.0 which accompanies this distribution, and is available at
* http://www.gnu.org/licenses/lgpl.html
* <p>
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.analysis;
import cuchaz.enigma.mapping.entry.ClassEntry;
import org.objectweb.asm.ClassReader;
import org.objectweb.asm.tree.ClassNode;
import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.*;
import java.util.function.Consumer;
import java.util.jar.JarEntry;
import java.util.jar.JarFile;
import java.util.jar.JarInputStream;
public class ParsedJar {
private final Map<String, ClassNode> nodes = new LinkedHashMap<>();
public ParsedJar(JarFile jar) throws IOException {
try {
// get the jar entries that correspond to classes
Enumeration<JarEntry> entries = jar.entries();
while (entries.hasMoreElements()) {
JarEntry entry = entries.nextElement();
// is this a class file?
if (entry.getName().endsWith(".class")) {
try (InputStream input = new BufferedInputStream(jar.getInputStream(entry))) {
// read the ClassNode from the jar
ClassReader reader = new ClassReader(input);
ClassNode node = new ClassNode();
reader.accept(node, 0);
String path = entry.getName().substring(0, entry.getName().length() - ".class".length());
nodes.put(path, node);
}
}
}
} finally {
jar.close();
}
}
public ParsedJar(JarInputStream jar) throws IOException {
try {
// get the jar entries that correspond to classes
JarEntry entry;
while ((entry = jar.getNextJarEntry()) != null) {
// is this a class file?
if (entry.getName().endsWith(".class")) {
// read the ClassNode from the jar
ClassReader reader = new ClassReader(jar);
ClassNode node = new ClassNode();
reader.accept(node, 0);
String path = entry.getName().substring(0, entry.getName().length() - ".class".length());
nodes.put(path, node);
jar.closeEntry();
}
}
} finally {
jar.close();
}
}
public void visit(Consumer<ClassNode> visitor) {
for (ClassNode node : nodes.values()) {
visitor.accept(node);
}
}
public int getClassCount() {
return nodes.size();
}
public List<ClassEntry> getClassEntries() {
List<ClassEntry> entries = new ArrayList<>(nodes.size());
for (ClassNode node : nodes.values()) {
entries.add(new ClassEntry(node.name));
}
return entries;
}
public ClassNode getClassNode(String name) {
return nodes.get(name);
}
}
|