aboutsummaryrefslogtreecommitdiffstats
path: root/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java
diff options
context:
space:
mode:
Diffstat (limited to 'javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java')
-rw-r--r--javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java93
1 files changed, 93 insertions, 0 deletions
diff --git a/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java b/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java
new file mode 100644
index 000000000..ae56434c5
--- /dev/null
+++ b/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/JavassistTypeDeclarationAdapter.java
@@ -0,0 +1,93 @@
+/*
+ * Copyright 2016 Federico Tomassetti
+ *
+ * Licensed 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 com.github.javaparser.symbolsolver.javassistmodel;
+
+import com.github.javaparser.resolution.declarations.*;
+import com.github.javaparser.symbolsolver.model.resolution.TypeSolver;
+import javassist.CtClass;
+import javassist.NotFoundException;
+import javassist.bytecode.BadBytecode;
+import javassist.bytecode.SignatureAttribute;
+
+import java.util.*;
+import java.util.stream.Collectors;
+
+/**
+ * @author Federico Tomassetti
+ */
+public class JavassistTypeDeclarationAdapter {
+
+ private CtClass ctClass;
+ private TypeSolver typeSolver;
+
+ public JavassistTypeDeclarationAdapter(CtClass ctClass, TypeSolver typeSolver) {
+ this.ctClass = ctClass;
+ this.typeSolver = typeSolver;
+ }
+
+ public Set<ResolvedMethodDeclaration> getDeclaredMethods() {
+ return Arrays.stream(ctClass.getDeclaredMethods())
+ .map(m -> new JavassistMethodDeclaration(m, typeSolver)).collect(Collectors.toSet());
+ }
+
+ public List<ResolvedConstructorDeclaration> getConstructors() {
+ return Arrays.stream(ctClass.getConstructors())
+ .map(m -> new JavassistConstructorDeclaration(m, typeSolver)).collect(Collectors.toList());
+ }
+
+ public List<ResolvedFieldDeclaration> getDeclaredFields() {
+ List<ResolvedFieldDeclaration> fieldDecls = new ArrayList<>();
+ collectDeclaredFields(ctClass, fieldDecls);
+ return fieldDecls;
+ }
+
+ private void collectDeclaredFields(CtClass ctClass, List<ResolvedFieldDeclaration> fieldDecls) {
+ if (ctClass != null) {
+ Arrays.stream(ctClass.getDeclaredFields())
+ .forEach(f -> fieldDecls.add(new JavassistFieldDeclaration(f, typeSolver)));
+ try {
+ collectDeclaredFields(ctClass.getSuperclass(), fieldDecls);
+ } catch (NotFoundException e) {
+ // We'll stop here
+ }
+ }
+ }
+
+ public List<ResolvedTypeParameterDeclaration> getTypeParameters() {
+ if (null == ctClass.getGenericSignature()) {
+ return Collections.emptyList();
+ } else {
+ try {
+ SignatureAttribute.ClassSignature classSignature =
+ SignatureAttribute.toClassSignature(ctClass.getGenericSignature());
+ return Arrays.<SignatureAttribute.TypeParameter>stream(classSignature.getParameters())
+ .map((tp) -> new JavassistTypeParameter(tp, JavassistFactory.toTypeDeclaration(ctClass, typeSolver), typeSolver))
+ .collect(Collectors.toList());
+ } catch (BadBytecode badBytecode) {
+ throw new RuntimeException(badBytecode);
+ }
+ }
+ }
+
+ public Optional<ResolvedReferenceTypeDeclaration> containerType() {
+ try {
+ return ctClass.getDeclaringClass() == null ?
+ Optional.empty() :
+ Optional.of(JavassistFactory.toTypeDeclaration(ctClass.getDeclaringClass(), typeSolver));
+ } catch (NotFoundException e) {
+ throw new RuntimeException(e);
+ }
+ }
+}