org.codehaus.groovy.ast.decompiled.AsmReferenceResolver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of groovy Show documentation
Show all versions of groovy Show documentation
Groovy: A powerful multi-faceted language for the JVM
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.codehaus.groovy.ast.decompiled;
import org.codehaus.groovy.GroovyBugError;
import org.codehaus.groovy.ast.ClassHelper;
import org.codehaus.groovy.ast.ClassNode;
import org.codehaus.groovy.control.ClassNodeResolver;
import org.codehaus.groovy.control.CompilationUnit;
import org.objectweb.asm.Type;
/**
* A helper class used to resolve references found in ASM-decompiled classes.
*
* @see DecompiledClassNode
* @see AsmDecompiler
*/
public class AsmReferenceResolver {
private final ClassNodeResolver resolver;
private final CompilationUnit unit;
public AsmReferenceResolver(final ClassNodeResolver resolver, final CompilationUnit unit) {
this.resolver = resolver;
this.unit = unit;
}
public ClassNode resolveClass(final String className) {
ClassNode classNode = resolveClassNullable(className);
if (classNode == null) {
throw new NoClassDefFoundError(className);
}
return classNode;
}
public ClassNode resolveClassNullable(final String className) {
ClassNode beingCompiled = unit.getAST().getClass(className);
if (beingCompiled != null) {
return beingCompiled;
}
ClassNodeResolver.LookupResult lookupResult = resolver.resolveName(className, unit);
return lookupResult != null ? lookupResult.getClassNode() : null;
}
public ClassNode resolveType(final Type type) {
if (type.getSort() == Type.ARRAY) {
ClassNode result = resolveNonArrayType(type.getElementType());
for (int n = type.getDimensions(); n > 0; n -= 1) {
result = result.makeArray();
}
return result;
}
return resolveNonArrayType(type);
}
private ClassNode resolveNonArrayType(final Type type) {
String className = type.getClassName();
if (type.getSort() != Type.OBJECT) {
return ClassHelper.make(className);
}
return resolveClass(className);
}
public Class resolveJvmClass(final String name) {
try {
return unit.getClassLoader().loadClass(name, false, true);
} catch (ClassNotFoundException e) {
throw new GroovyBugError("JVM class can't be loaded for " + name, e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy