Search in sources :

Example 1 with TypeDeclaration

use of org.whole.lang.java.model.TypeDeclaration in project whole by wholeplatform.

the class WizardPojoModelImportPage1 method getCompilationUnits.

public static Misc getCompilationUnits(List<ITypeRoot> elements) {
    Map<String, List<String>> map = new HashMap<String, List<String>>();
    MiscEntityFactory mef = MiscEntityFactory.instance;
    Misc misc = mef.createMisc(0);
    elements = new ArrayList<ITypeRoot>(elements);
    Iterator<ITypeRoot> iterator = elements.iterator();
    while (iterator.hasNext()) {
        ITypeRoot typeRoot = iterator.next();
        IType type = typeRoot.findPrimaryType();
        try {
            boolean isMember = type.isMember();
            boolean isAnonymous = type.isAnonymous();
            if (isMember || isAnonymous)
                iterator.remove();
            if (!isMember || type.getElementName().contains("Impl"))
                continue;
        } catch (JavaModelException e) {
        }
        String declaringTypeName = type.getDeclaringType().getFullyQualifiedName();
        List<String> memeberTypes = map.get(declaringTypeName);
        if (memeberTypes == null)
            map.put(declaringTypeName, memeberTypes = new ArrayList<String>());
        memeberTypes.add(typeRoot.findPrimaryType().getElementName());
    }
    for (ITypeRoot typeRoot : elements) {
        Class<?> clazz;
        try {
            clazz = Class.forName(typeRoot.findPrimaryType().getFullyQualifiedName(), false, JDTUtils.createClassLoader(typeRoot.getJavaProject(), true));
            if (clazz.getAnnotation(Deprecated.class) != null)
                continue;
        } catch (ClassNotFoundException e) {
            continue;
        }
        JavaSourceTemplateFactory templateFactory = new JavaSourceTemplateFactory(typeRoot) {

            @Override
            protected void init(String sourceAttachment, String className, IJavaProject javaProject) {
                // FIXME implement import inlining
                super.init(/* ensure reflection is used */
                null, className, javaProject);
                if (clazz.getAnnotation(Deprecated.class) != null)
                    ;
            }
        };
        templateFactory.useCanonicalNames(false);
        CompilationUnit compilationUnit = templateFactory.create();
        String compilationUnitName = typeRoot.findPrimaryType().getFullyQualifiedName();
        if (map.containsKey(compilationUnitName)) {
            List<String> memberNames = map.get(compilationUnitName);
            BodyDeclarations bodyDeclarations = compilationUnit.getTypes().get(0).getBodyDeclarations();
            IEntityIterator<TypeDeclaration> entityIterator = IteratorFactory.<TypeDeclaration>childMatcherIterator().withPattern(JavaEntityDescriptorEnum.TypeDeclaration);
            entityIterator.reset(bodyDeclarations);
            while (entityIterator.hasNext()) if (!memberNames.contains(entityIterator.next().getName().getValue()))
                entityIterator.remove();
        }
        Any stageUpFragment = CommonsEntityAdapterFactory.createStageUpFragment(MiscEntityDescriptorEnum.Any, compilationUnit);
        misc.wAdd(stageUpFragment);
    }
    return misc;
}
Also used : MiscEntityFactory(org.whole.lang.misc.factories.MiscEntityFactory) CompilationUnit(org.whole.lang.java.model.CompilationUnit) JavaModelException(org.eclipse.jdt.core.JavaModelException) HashMap(java.util.HashMap) Misc(org.whole.lang.misc.model.Misc) ITypeRoot(org.eclipse.jdt.core.ITypeRoot) JavaSourceTemplateFactory(org.whole.lang.java.codebase.JavaSourceTemplateFactory) BodyDeclarations(org.whole.lang.java.model.BodyDeclarations) Any(org.whole.lang.misc.model.Any) IType(org.eclipse.jdt.core.IType) IJavaProject(org.eclipse.jdt.core.IJavaProject) ArrayList(java.util.ArrayList) List(java.util.List) TypeDeclaration(org.whole.lang.java.model.TypeDeclaration)

Aggregations

ArrayList (java.util.ArrayList)1 HashMap (java.util.HashMap)1 List (java.util.List)1 IJavaProject (org.eclipse.jdt.core.IJavaProject)1 IType (org.eclipse.jdt.core.IType)1 ITypeRoot (org.eclipse.jdt.core.ITypeRoot)1 JavaModelException (org.eclipse.jdt.core.JavaModelException)1 JavaSourceTemplateFactory (org.whole.lang.java.codebase.JavaSourceTemplateFactory)1 BodyDeclarations (org.whole.lang.java.model.BodyDeclarations)1 CompilationUnit (org.whole.lang.java.model.CompilationUnit)1 TypeDeclaration (org.whole.lang.java.model.TypeDeclaration)1 MiscEntityFactory (org.whole.lang.misc.factories.MiscEntityFactory)1 Any (org.whole.lang.misc.model.Any)1 Misc (org.whole.lang.misc.model.Misc)1