yangys
2024-03-27 e48aa2ac8dea1be5db11c63edf0b912c4ad5ce65
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
package com.qianwen.smart.core.auto.common;
 
 
import java.util.ArrayList;
import java.util.List;
import javax.annotation.processing.ProcessingEnvironment;
import javax.lang.model.element.AnnotationMirror;
import javax.lang.model.element.Element;
import javax.lang.model.element.QualifiedNameable;
import javax.lang.model.type.DeclaredType;
import javax.lang.model.type.TypeMirror;
import javax.lang.model.util.Types;
 
public class TypeHelper {
  private final ProcessingEnvironment env;
  
  private final Types types;
  
  public TypeHelper(ProcessingEnvironment env) {
    this.env = env;
    this.types = env.getTypeUtils();
  }
  
  public String getType(Element element) {
    return getType((element != null) ? element.asType() : null);
  }
  
  public String getType(AnnotationMirror annotation) {
    return getType((annotation != null) ? annotation.getAnnotationType() : null);
  }
  
  public String getType(TypeMirror type) {
    if (type == null)
      return null; 
    if (type instanceof DeclaredType) {
      DeclaredType declaredType = (DeclaredType)type;
      Element enclosingElement = declaredType.asElement().getEnclosingElement();
      if (enclosingElement != null && enclosingElement instanceof javax.lang.model.element.TypeElement)
        return getQualifiedName(enclosingElement) + "$" + declaredType.asElement().getSimpleName().toString(); 
      return getQualifiedName(declaredType.asElement());
    } 
    return type.toString();
  }
  
  private String getQualifiedName(Element element) {
    if (element instanceof QualifiedNameable)
      return ((QualifiedNameable)element).getQualifiedName().toString(); 
    return element.toString();
  }
  
  public Element getSuperClass(Element element) {
    List<? extends TypeMirror> superTypes = this.types.directSupertypes(element.asType());
    if (superTypes.isEmpty())
      return null; 
    return this.types.asElement(superTypes.get(0));
  }
  
  public List<Element> getDirectInterfaces(Element element) {
    List<? extends TypeMirror> superTypes = this.types.directSupertypes(element.asType());
    List<Element> directInterfaces = new ArrayList<>();
    if (superTypes.size() > 1)
      for (int i = 1; i < superTypes.size(); i++) {
        Element e = this.types.asElement(superTypes.get(i));
        if (e != null)
          directInterfaces.add(e); 
      }  
    return directInterfaces;
  }
  
  public List<? extends AnnotationMirror> getAllAnnotationMirrors(Element e) {
    return this.env.getElementUtils().getAllAnnotationMirrors(e);
  }
}