Search in sources :

Example 1 with BodyDeclarations

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

the class SelectQueriesTest method testSelectTemplateWithTwoNestedSelectQueries.

@Test
public void testSelectTemplateWithTwoNestedSelectQueries() {
    ITemplateManager tm = SelectQueriesTemplateManager.instance();
    Model m = new XmlModel().create();
    PathExpression pe1 = (PathExpression) tm.create("selectTemplateWithTwoNestedSelectQueries");
    for (ClassDeclaration t : BehaviorUtils.<ClassDeclaration>compileAndLazyEvaluate(pe1, m)) {
        assertEquals(JavaEntityDescriptorEnum.ClassDeclaration, t.wGetEntityDescriptor());
        BodyDeclarations bodyDeclarations = t.getBodyDeclarations();
        MethodDeclaration md = (MethodDeclaration) bodyDeclarations.wGet(bodyDeclarations.wSize() - 1);
        assertEquals(bodyDeclarations.wSize() - 1, md.getBody().wSize());
    }
}
Also used : ClassDeclaration(org.whole.lang.java.model.ClassDeclaration) PathExpression(org.whole.lang.queries.model.PathExpression) MethodDeclaration(org.whole.lang.java.model.MethodDeclaration) XmlModel(org.whole.lang.models.codebase.XmlModel) Model(org.whole.lang.models.model.Model) ITemplateManager(org.whole.lang.templates.ITemplateManager) XmlModel(org.whole.lang.models.codebase.XmlModel) BodyDeclarations(org.whole.lang.java.model.BodyDeclarations) Test(org.junit.Test)

Example 2 with BodyDeclarations

use of org.whole.lang.java.model.BodyDeclarations 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

BodyDeclarations (org.whole.lang.java.model.BodyDeclarations)2 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 Test (org.junit.Test)1 JavaSourceTemplateFactory (org.whole.lang.java.codebase.JavaSourceTemplateFactory)1 ClassDeclaration (org.whole.lang.java.model.ClassDeclaration)1 CompilationUnit (org.whole.lang.java.model.CompilationUnit)1 MethodDeclaration (org.whole.lang.java.model.MethodDeclaration)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 XmlModel (org.whole.lang.models.codebase.XmlModel)1 Model (org.whole.lang.models.model.Model)1 PathExpression (org.whole.lang.queries.model.PathExpression)1