blob: 8f2b6b2e4672105e69e9eff0af66b97cda067e83 (
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/*******************************************************************************
* 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
*
* Contributors:
* Jeff Martin - initial API and implementation
******************************************************************************/
package cuchaz.enigma.mapping;
import java.io.Serializable;
import java.util.List;
import com.google.common.collect.Lists;
import cuchaz.enigma.Util;
public class Signature implements Serializable {
private static final long serialVersionUID = -5843719505729497539L;
private List<Type> m_argumentTypes;
private Type m_returnType;
public Signature(String signature) {
try {
m_argumentTypes = Lists.newArrayList();
int i=0;
while (i<signature.length()) {
char c = signature.charAt(i);
if (c == '(') {
assert(m_argumentTypes.isEmpty());
assert(m_returnType == null);
i++;
} else if (c == ')') {
i++;
break;
} else {
String type = Type.parseFirst(signature.substring(i));
m_argumentTypes.add(new Type(type));
i += type.length();
}
}
m_returnType = new Type(Type.parseFirst(signature.substring(i)));
} catch (Exception ex) {
throw new IllegalArgumentException("Unable to parse signature: " + signature, ex);
}
}
public Signature(Signature other) {
m_argumentTypes = Lists.newArrayList(other.m_argumentTypes);
m_returnType = new Type(other.m_returnType);
}
public Signature(Signature other, ClassNameReplacer replacer) {
m_argumentTypes = Lists.newArrayList(other.m_argumentTypes);
for (int i=0; i<m_argumentTypes.size(); i++) {
m_argumentTypes.set(i, new Type(m_argumentTypes.get(i), replacer));
}
m_returnType = new Type(other.m_returnType, replacer);
}
public List<Type> getArgumentTypes() {
return m_argumentTypes;
}
public Type getReturnType() {
return m_returnType;
}
@Override
public String toString() {
StringBuilder buf = new StringBuilder();
buf.append("(");
for (Type type : m_argumentTypes) {
buf.append(type.toString());
}
buf.append(")");
buf.append(m_returnType.toString());
return buf.toString();
}
public Iterable<Type> types() {
List<Type> types = Lists.newArrayList();
types.addAll(m_argumentTypes);
types.add(m_returnType);
return types;
}
@Override
public boolean equals(Object other) {
if (other instanceof Signature) {
return equals((Signature)other);
}
return false;
}
public boolean equals(Signature other) {
return m_argumentTypes.equals(other.m_argumentTypes) && m_returnType.equals(other.m_returnType);
}
@Override
public int hashCode() {
return Util.combineHashesOrdered(m_argumentTypes.hashCode(), m_returnType.hashCode());
}
public boolean hasClass(ClassEntry classEntry) {
for (Type type : types()) {
if (type.hasClass() && type.getClassEntry().equals(classEntry)) {
return true;
}
}
return false;
}
}
|