-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass-utils.kt
275 lines (229 loc) · 8.74 KB
/
class-utils.kt
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
package me.hydos.fukkitdevelopment
import com.intellij.navigation.AnonymousElementProvider
import com.intellij.openapi.project.Project
import com.intellij.psi.CommonClassNames
import com.intellij.psi.JavaPsiFacade
import com.intellij.psi.PsiClass
import com.intellij.psi.PsiClassType
import com.intellij.psi.PsiElement
import com.intellij.psi.PsiField
import com.intellij.psi.PsiInvalidElementAccessException
import com.intellij.psi.PsiJavaFile
import com.intellij.psi.PsiMethod
import com.intellij.psi.PsiParameterList
import com.intellij.psi.PsiPrimitiveType
import com.intellij.psi.PsiTypeParameter
import com.intellij.psi.search.GlobalSearchScope
val PsiClass.packageName
get() = (containingFile as? PsiJavaFile)?.packageName
// Type
val PsiClassType.fullQualifiedName
get() = resolve()?.fullQualifiedName // this can be null if the type import is missing
// Class
val PsiClass.outerQualifiedName
get() = if (containingClass == null) qualifiedName else null
val PsiClass.fullQualifiedName
get(): String? {
return try {
outerQualifiedName ?: buildQualifiedName(StringBuilder()).toString()
} catch (e: ClassNameResolutionFailedException) {
null
}
}
@Throws(ClassNameResolutionFailedException::class)
private fun PsiClass.buildQualifiedName(builder: StringBuilder): StringBuilder {
if (this is PsiTypeParameter) {
throw ClassNameResolutionFailedException()
}
buildInnerName(builder, PsiClass::outerQualifiedName)
return builder
}
private val PsiClass.outerShortName
get() = if (containingClass == null) name else null
val PsiClass.shortName: String?
get() {
if (this is PsiTypeParameter) {
return null
}
outerShortName?.let { return it }
return try {
val builder = StringBuilder()
buildInnerName(builder, PsiClass::outerShortName, '.')
return builder.toString()
} catch (e: ClassNameResolutionFailedException) {
null
}
}
@Throws(ClassNameResolutionFailedException::class)
inline fun PsiClass.buildInnerName(builder: StringBuilder, getName: (PsiClass) -> String?, separator: Char = '$') {
var currentClass: PsiClass = this
var parentClass: PsiClass?
var name: String?
val list = ArrayList<String>()
do {
parentClass = currentClass.containingClass
if (parentClass != null) {
// Add named inner class
list.add(currentClass.name ?: throw ClassNameResolutionFailedException())
} else {
parentClass = currentClass.parent.findContainingClass() ?: throw ClassNameResolutionFailedException()
// Add index of anonymous class to list
list.add(parentClass.getAnonymousIndex(currentClass).toString())
}
currentClass = parentClass
name = getName(currentClass)
} while (name == null)
// Append name of outer class
builder.append(name)
// Append names for all inner classes
for (i in list.lastIndex downTo 0) {
builder.append(separator).append(list[i])
}
}
fun findQualifiedClass(fullQualifiedName: String, context: PsiElement): PsiClass? {
return findQualifiedClass(context.project, fullQualifiedName, context.resolveScope)
}
fun findQualifiedClass(
project: Project,
fullQualifiedName: String,
scope: GlobalSearchScope = GlobalSearchScope.allScope(project)
): PsiClass? {
var innerPos = fullQualifiedName.indexOf('$')
if (innerPos == -1) {
return JavaPsiFacade.getInstance(project).findClass(fullQualifiedName, scope)
}
var currentClass = JavaPsiFacade.getInstance(project)
.findClass(fullQualifiedName.substring(0, innerPos), scope) ?: return null
var outerPos: Int
while (true) {
outerPos = innerPos + 1
innerPos = fullQualifiedName.indexOf('$', outerPos)
if (innerPos == -1) {
return currentClass.findInnerClass(fullQualifiedName.substring(outerPos))
} else {
currentClass = currentClass.findInnerClass(fullQualifiedName.substring(outerPos, innerPos)) ?: return null
}
}
}
private fun PsiClass.findInnerClass(name: String): PsiClass? {
val anonymousIndex = name.toIntOrNull()
return if (anonymousIndex == null) {
// Named inner class
findInnerClassByName(name, false)
} else {
if (anonymousIndex > 0 && anonymousIndex <= anonymousElements.size) {
anonymousElements[anonymousIndex - 1] as PsiClass
} else {
null
}
}
}
@Throws(ClassNameResolutionFailedException::class)
fun PsiElement.getAnonymousIndex(anonymousElement: PsiElement): Int? {
// Attempt to find name for anonymous class
for ((i, element) in anonymousElements.withIndex()) {
if (element equivalentTo anonymousElement) {
return i + 1
}
}
throw ClassNameResolutionFailedException("Failed to determine anonymous class for $anonymousElement")
}
val PsiElement.anonymousElements: Array<PsiElement>
get() {
for (provider in AnonymousElementProvider.EP_NAME.extensionList) {
val elements = provider.getAnonymousElements(this)
if (elements.isNotEmpty()) {
return elements
}
}
return emptyArray()
}
// Inheritance
fun PsiClass.extendsOrImplements(qualifiedClassName: String): Boolean {
val aClass = JavaPsiFacade.getInstance(project).findClass(qualifiedClassName, resolveScope) ?: return false
return equivalentTo(aClass) || this.isInheritor(aClass, true)
}
fun PsiClass.addImplements(qualifiedClassName: String) {
val project = project
val listenerClass = JavaPsiFacade.getInstance(project).findClass(qualifiedClassName, resolveScope) ?: return
val elementFactory = JavaPsiFacade.getElementFactory(project)
val element = elementFactory.createClassReferenceElement(listenerClass)
val referenceList = implementsList
if (referenceList != null) {
referenceList.add(element)
} else {
add(elementFactory.createReferenceList(arrayOf(element)))
}
}
// Member
fun PsiClass.findMatchingMethod(
pattern: PsiMethod,
checkBases: Boolean,
name: String = pattern.name,
constructor: Boolean = pattern.isConstructor
): PsiMethod? {
return findMethodsByName(name, checkBases).firstOrNull { it.isMatchingMethod(pattern, constructor) }
}
fun PsiClass.findMatchingMethods(
pattern: PsiMethod,
checkBases: Boolean,
name: String = pattern.name,
constructor: Boolean = pattern.isConstructor
): List<PsiMethod> {
return findMethodsByName(name, checkBases).filter { it.isMatchingMethod(pattern, constructor) }
}
inline fun PsiClass.findMatchingMethods(
pattern: PsiMethod,
checkBases: Boolean,
name: String,
func: (PsiMethod) -> Unit
) {
for (method in findMethodsByName(name, checkBases)) {
if (method.isMatchingMethod(pattern)) {
func(method)
}
}
}
fun PsiMethod.isMatchingMethod(pattern: PsiMethod, constructor: Boolean = pattern.isConstructor): Boolean {
return this.isConstructor == constructor &&
areReallyOnlyParametersErasureEqual(this.parameterList, pattern.parameterList) &&
(this.isConstructor || constructor || this.returnType.isErasureEquivalentTo(pattern.returnType))
}
fun PsiClass.findMatchingField(pattern: PsiField, checkBases: Boolean, name: String = pattern.name): PsiField? {
return try {
findFieldByName(name, checkBases)?.takeIf { it.isMatchingField(pattern) }
} catch (e: PsiInvalidElementAccessException) {
null
}
}
fun PsiField.isMatchingField(pattern: PsiField): Boolean {
return type.isErasureEquivalentTo(pattern.type)
}
private fun areReallyOnlyParametersErasureEqual(
parameterList1: PsiParameterList,
parameterList2: PsiParameterList
): Boolean {
// Similar to MethodSignatureUtil.areParametersErasureEqual, but doesn't check method name
if (parameterList1.parametersCount != parameterList2.parametersCount) {
return false
}
val parameters1 = parameterList1.parameters
val parameters2 = parameterList2.parameters
for (i in parameters1.indices) {
val type1 = parameters1[i].type
val type2 = parameters2[i].type
if (type1 is PsiPrimitiveType && (type2 !is PsiPrimitiveType || type1 != type2)) {
return false
}
if (!type1.isErasureEquivalentTo(type2)) {
return false
}
}
return true
}
fun PsiClass.isJavaOptional(): Boolean = this.qualifiedName == CommonClassNames.JAVA_UTIL_OPTIONAL
fun PsiClassType.isJavaOptional(): Boolean = this.fullQualifiedName == CommonClassNames.JAVA_UTIL_OPTIONAL
class ClassNameResolutionFailedException : Exception {
constructor() : super()
constructor(message: String) : super(message)
}