-
Notifications
You must be signed in to change notification settings - Fork 0
/
class.go
220 lines (192 loc) · 5.4 KB
/
class.go
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
package jclass
import (
"github.com/kamichidu/go-jclass/jvms"
"io"
"os"
"strings"
)
type JavaClass struct {
AccessFlags
classFile *jvms.ClassFile
}
func NewJavaClass(classFile *jvms.ClassFile) *JavaClass {
return &JavaClass{
AccessFlags: AccessFlag(classFile.AccessFlags),
classFile: classFile,
}
}
func NewJavaClassFromReader(r io.Reader) (*JavaClass, error) {
cf, err := jvms.ParseClassFile(r)
if err != nil {
return nil, err
}
return NewJavaClass(cf), nil
}
func NewJavaClassFromFilename(filename string) (*JavaClass, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer file.Close()
return NewJavaClassFromReader(file)
}
func (self *JavaClass) PackageName() string {
items := strings.Split(self.Name(), ".")
return strings.Join(items[:len(items)-1], ".")
}
func (self *JavaClass) CanonicalName() string {
return strings.Replace(self.Name(), "$", ".", -1)
}
func (self *JavaClass) Name() string {
classInfo := self.classFile.ConstantPool[self.classFile.ThisClass].(*jvms.ConstantClassInfo)
utf8Info := self.classFile.ConstantPool[classInfo.NameIndex].(*jvms.ConstantUtf8Info)
return strings.Replace(utf8Info.JavaString(), "/", ".", -1)
}
func (self *JavaClass) SimpleName() string {
items := strings.Split(self.CanonicalName(), ".")
return items[len(items)-1]
}
func (self *JavaClass) IsClass() bool {
return !(self.IsInterface() && self.IsEnum() && self.IsAnnotation())
}
func (self *JavaClass) Interfaces() []string {
interfaceNames := make([]string, 0)
for _, interfaceIndex := range self.classFile.Interfaces {
classInfo := self.classFile.ConstantPool[interfaceIndex].(*jvms.ConstantClassInfo)
utf8Info := self.classFile.ConstantPool[classInfo.NameIndex].(*jvms.ConstantUtf8Info)
interfaceNames = append(interfaceNames, strings.Replace(utf8Info.JavaString(), "/", ".", -1))
}
return interfaceNames
}
func (self *JavaClass) SuperClass() string {
classInfo, ok := self.classFile.ConstantPool[self.classFile.SuperClass].(*jvms.ConstantClassInfo)
if !ok {
return ""
}
utf8Info := self.classFile.ConstantPool[classInfo.NameIndex].(*jvms.ConstantUtf8Info)
return strings.Replace(utf8Info.JavaString(), "/", ".", -1)
}
func (self *JavaClass) Fields() []*JavaField {
return self.filterFields(func(field *JavaField) bool {
return field.IsPublic()
})
}
func (self *JavaClass) DeclaredFields() []*JavaField {
return self.filterFields(func(field *JavaField) bool {
return true
})
}
func (self *JavaClass) Field(name string) *JavaField {
fields := self.filterFields(func(field *JavaField) bool {
return field.IsPublic() && field.Name() == name
})
if len(fields) > 0 {
return fields[0]
} else {
return nil
}
}
func (self *JavaClass) DeclaredField(name string) *JavaField {
fields := self.filterFields(func(field *JavaField) bool {
return field.Name() == name
})
if len(fields) > 0 {
return fields[0]
} else {
return nil
}
}
func (self *JavaClass) filterFields(filter func(field *JavaField) bool) []*JavaField {
fields := make([]*JavaField, 0)
for _, fieldInfo := range self.classFile.Fields {
field := newJavaField(self.classFile.ConstantPool, fieldInfo)
if filter(field) {
fields = append(fields, field)
}
}
return fields
}
func (self *JavaClass) Constructors() []*JavaConstructor {
methods := self.filterMethods(func(method *JavaMethod) bool {
switch method.Name() {
case "<init>":
return method.IsPublic()
default:
return false
}
})
ctors := make([]*JavaConstructor, 0)
for _, method := range methods {
ctors = append(ctors, newJavaConstructor(self, method))
}
return ctors
}
func (self *JavaClass) DeclaredConstructors() []*JavaConstructor {
methods := self.filterMethods(func(method *JavaMethod) bool {
switch method.Name() {
case "<init>":
return true
default:
return false
}
})
ctors := make([]*JavaConstructor, 0)
for _, method := range methods {
ctors = append(ctors, newJavaConstructor(self, method))
}
return ctors
}
func (self *JavaClass) Methods() []*JavaMethod {
return self.filterMethods(func(method *JavaMethod) bool {
switch method.Name() {
case "<init>", "<clinit>":
return false
default:
return method.IsPublic()
}
})
}
func (self *JavaClass) DeclaredMethods() []*JavaMethod {
return self.filterMethods(func(method *JavaMethod) bool {
switch method.Name() {
case "<init>", "<clinit>":
return false
default:
return true
}
})
}
func (self *JavaClass) Method(name string) []*JavaMethod {
return self.filterMethods(func(method *JavaMethod) bool {
return method.IsPublic() && method.Name() == name
})
}
func (self *JavaClass) DeclaredMethod(name string) []*JavaMethod {
return self.filterMethods(func(method *JavaMethod) bool {
return method.Name() == name
})
}
func (self *JavaClass) filterMethods(filter func(method *JavaMethod) bool) []*JavaMethod {
methods := make([]*JavaMethod, 0)
for _, methodInfo := range self.classFile.Methods {
method := newJavaMethod(self.classFile.ConstantPool, methodInfo)
if filter(method) {
methods = append(methods, method)
}
}
return methods
}
func (self *JavaClass) SourceFile() string {
for _, attr := range self.classFile.Attributes {
sourceFile, ok := attr.(*jvms.SourceFileAttribute)
if !ok {
continue
}
utf8Info := self.classFile.ConstantPool[sourceFile.SourceFileIndex].(*jvms.ConstantUtf8Info)
return utf8Info.JavaString()
}
return ""
}
func (self *JavaClass) ClassFile() *jvms.ClassFile {
return self.classFile
}