summaryrefslogtreecommitdiff
path: root/src/cuchaz/enigma/mapping/Signature.java
blob: ff7f80705c5f71eba454d3fb9efc43553b3574a9 (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
package cuchaz.enigma.mapping;

import java.util.List;

import com.beust.jcommander.internal.Lists;

import cuchaz.enigma.Util;

public class Signature {
	
	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, 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;
	}
	
	public Iterable<ClassEntry> classes() {
		List<ClassEntry> out = Lists.newArrayList();
		for (Type type : types()) {
			if (type.isClass()) {
				out.add(type.getClassEntry());
			}
		}
		return out;
	}
	
	@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;
	}
}