Search in sources :

Example 36 with MetaAttribute

use of io.crnk.meta.model.MetaAttribute in project crnk-framework by crnk-project.

the class JpaNullabilityMetaTest method testColumnAnnotatedValueIsNotNullable.

@Test
public void testColumnAnnotatedValueIsNotNullable() {
    MetaEntity meta = metaProvider.discoverMeta(AnnotationTestEntity.class);
    MetaAttribute field = meta.getAttribute("notNullableValue");
    Assert.assertFalse(field.isNullable());
}
Also used : MetaAttribute(io.crnk.meta.model.MetaAttribute) Test(org.junit.Test)

Example 37 with MetaAttribute

use of io.crnk.meta.model.MetaAttribute in project crnk-framework by crnk-project.

the class JpaNullabilityMetaTest method testOptionalRelatedValue.

@Test
public void testOptionalRelatedValue() {
    MetaEntity meta = metaProvider.discoverMeta(AnnotationTestEntity.class);
    MetaAttribute field = meta.getAttribute("optionalRelatedValue");
    Assert.assertTrue(field.isNullable());
}
Also used : MetaAttribute(io.crnk.meta.model.MetaAttribute) Test(org.junit.Test)

Example 38 with MetaAttribute

use of io.crnk.meta.model.MetaAttribute in project crnk-framework by crnk-project.

the class JpaNullabilityMetaTest method testColumnAnnotatedValueIsNullable.

@Test
public void testColumnAnnotatedValueIsNullable() {
    MetaEntity meta = metaProvider.discoverMeta(AnnotationTestEntity.class);
    MetaAttribute field = meta.getAttribute("nullableValue");
    Assert.assertTrue(field.isNullable());
}
Also used : MetaAttribute(io.crnk.meta.model.MetaAttribute) Test(org.junit.Test)

Example 39 with MetaAttribute

use of io.crnk.meta.model.MetaAttribute in project crnk-framework by crnk-project.

the class ResourceMetaFilter method onInitialized.

@Override
public void onInitialized(MetaElement element) {
    if (element instanceof MetaResourceBase) {
        MetaResourceBase metaResource = (MetaResourceBase) element;
        ResourceInformation information = getResourceInformation(metaResource, true);
        PreconditionUtil.assertNotNull(information.getResourceType(), metaResource);
        for (ResourceField field : information.getRelationshipFields()) {
            if (field.getOppositeName() != null) {
                String oppositeType = field.getOppositeResourceType();
                MetaResource oppositeMeta = (MetaResource) context.getMetaElement(partition.getId(oppositeType)).get();
                MetaAttribute attr = metaResource.getAttribute(field.getUnderlyingName());
                MetaAttribute oppositeAttr = oppositeMeta.getAttribute(field.getOppositeName());
                PreconditionUtil.assertNotNull(attr.getId() + " opposite not found", oppositeAttr);
                attr.setOppositeAttribute(oppositeAttr);
            }
        }
        ResourceField idField = information.getIdField();
        if (idField != null) {
            MetaAttribute idAttr = metaResource.getAttribute(idField.getUnderlyingName());
            idAttr.setPrimaryKeyAttribute(true);
            if (metaResource.getSuperType() == null || metaResource.getSuperType().getPrimaryKey() == null) {
                MetaPrimaryKey primaryKey = new MetaPrimaryKey();
                primaryKey.setName(metaResource.getName() + "$primaryKey");
                primaryKey.setName(metaResource.getId() + "$primaryKey");
                primaryKey.setElements(Arrays.asList(idAttr));
                primaryKey.setUnique(true);
                primaryKey.setParent(metaResource, true);
                metaResource.setPrimaryKey(primaryKey);
                partition.addElement(null, primaryKey);
            }
        }
    }
    if (element instanceof MetaAttribute && element.getParent() instanceof MetaResourceBase) {
        MetaAttribute attr = (MetaAttribute) element;
        MetaResourceBase parent = (MetaResourceBase) attr.getParent();
        ResourceInformation information = getResourceInformation(parent, true);
        ResourceField field = information.findFieldByUnderlyingName(attr.getName());
        PreconditionUtil.assertNotNull(attr.getName(), field);
        if (field.getResourceFieldType() == ResourceFieldType.RELATIONSHIP) {
            String oppositeType = field.getOppositeResourceType();
            String oppositeId = partition.getId(oppositeType);
            Optional<MetaElement> optOppositeMeta = context.getMetaElement(oppositeId);
            if (!optOppositeMeta.isPresent()) {
                throw new IllegalStateException("opposite meta element '" + oppositeId + "' for element '" + element.getId() + "' not found");
            }
            MetaResource oppositeMeta = (MetaResource) optOppositeMeta.get();
            if (field.isCollection()) {
                boolean isSet = Set.class.isAssignableFrom(field.getType());
                String suffix = (isSet ? "$set" : "$list");
                Optional<MetaElement> optMetaCollection = context.getMetaElement(oppositeId + suffix);
                MetaCollectionType metaCollection;
                if (optMetaCollection.isPresent()) {
                    metaCollection = (MetaCollectionType) optMetaCollection.get();
                } else {
                    metaCollection = isSet ? new MetaSetType() : new MetaListType();
                    metaCollection.setId(oppositeMeta.getId() + suffix);
                    metaCollection.setName(oppositeMeta.getName() + suffix);
                    metaCollection.setImplementationType(field.getGenericType());
                    metaCollection.setElementType(oppositeMeta);
                    partition.addElement(null, metaCollection);
                }
                attr.setType(metaCollection);
            } else {
                attr.setType(oppositeMeta);
            }
        } else {
            Type implementationType = field.getGenericType();
            MetaElement metaType = partition.allocateMetaElement(implementationType).get();
            attr.setType(metaType.asType());
        }
    } else if (element instanceof MetaAttribute && element.getParent() instanceof MetaJsonObject) {
        MetaAttribute attr = (MetaAttribute) element;
        MetaDataObject parent = attr.getParent();
        Type implementationType = PropertyUtils.getPropertyType(parent.getImplementationClass(), attr.getName());
        MetaElement metaType = partition.allocateMetaElement(implementationType).get();
        attr.setType(metaType.asType());
    }
}
Also used : ResourceInformation(io.crnk.core.engine.information.resource.ResourceInformation) MetaPrimaryKey(io.crnk.meta.model.MetaPrimaryKey) MetaElement(io.crnk.meta.model.MetaElement) MetaDataObject(io.crnk.meta.model.MetaDataObject) MetaResourceBase(io.crnk.meta.model.resource.MetaResourceBase) MetaCollectionType(io.crnk.meta.model.MetaCollectionType) ResourceField(io.crnk.core.engine.information.resource.ResourceField) MetaResourceField(io.crnk.meta.model.resource.MetaResourceField) MetaListType(io.crnk.meta.model.MetaListType) ResourceFieldType(io.crnk.core.engine.information.resource.ResourceFieldType) MetaSetType(io.crnk.meta.model.MetaSetType) MetaCollectionType(io.crnk.meta.model.MetaCollectionType) Type(java.lang.reflect.Type) MetaListType(io.crnk.meta.model.MetaListType) MetaSetType(io.crnk.meta.model.MetaSetType) MetaResource(io.crnk.meta.model.resource.MetaResource) MetaJsonObject(io.crnk.meta.model.resource.MetaJsonObject) MetaAttribute(io.crnk.meta.model.MetaAttribute)

Example 40 with MetaAttribute

use of io.crnk.meta.model.MetaAttribute in project crnk-framework by crnk-project.

the class JpaMetaProviderAttributeTest method testMapAttr.

@Test
public void testMapAttr() {
    MetaEntity meta = metaProvider.discoverMeta(TestEntity.class);
    MetaAttribute attr = meta.getAttribute(TestEntity.ATTR_mapValue);
    Assert.assertFalse(attr.isAssociation());
    Assert.assertEquals(TestEntity.ATTR_mapValue, attr.getName());
    Assert.assertEquals(TestEntity.class.getName() + "." + TestEntity.ATTR_mapValue, attr.getId());
    Assert.assertFalse(attr.isDerived());
    Assert.assertFalse(attr.isVersion());
    Assert.assertFalse(attr.isLazy());
    Assert.assertNull(attr.getOppositeAttribute());
    MetaMapType mapType = attr.getType().asMap();
    Assert.assertTrue(mapType.isMap());
    Assert.assertEquals(String.class, mapType.getKeyType().getImplementationClass());
    Assert.assertEquals(String.class, mapType.getElementType().getImplementationClass());
    Assert.assertEquals(String.class, attr.getType().getElementType().getImplementationClass());
}
Also used : TestEntity(io.crnk.jpa.model.TestEntity) WriteOnlyAttributeTestEntity(io.crnk.jpa.model.WriteOnlyAttributeTestEntity) NamingTestEntity(io.crnk.jpa.model.NamingTestEntity) MetaAttribute(io.crnk.meta.model.MetaAttribute) MetaMapType(io.crnk.meta.model.MetaMapType) Test(org.junit.Test)

Aggregations

MetaAttribute (io.crnk.meta.model.MetaAttribute)54 Test (org.junit.Test)32 MetaResource (io.crnk.meta.model.resource.MetaResource)16 AbstractJpaJerseyTest (io.crnk.jpa.AbstractJpaJerseyTest)9 MetaDataObject (io.crnk.meta.model.MetaDataObject)7 MetaKey (io.crnk.meta.model.MetaKey)7 MetaResourceBase (io.crnk.meta.model.resource.MetaResourceBase)7 FilterSpec (io.crnk.core.queryspec.FilterSpec)5 MetaType (io.crnk.meta.model.MetaType)5 ResourceField (io.crnk.core.engine.information.resource.ResourceField)4 ResourceInformation (io.crnk.core.engine.information.resource.ResourceInformation)4 QuerySpec (io.crnk.core.queryspec.QuerySpec)4 MetaElement (io.crnk.meta.model.MetaElement)4 EntityManager (javax.persistence.EntityManager)4 Type (java.lang.reflect.Type)3 RegistryEntry (io.crnk.core.engine.registry.RegistryEntry)2 TSField (io.crnk.gen.typescript.model.TSField)2 MetaEntity (io.crnk.jpa.meta.MetaEntity)2 MetaJpaDataObject (io.crnk.jpa.meta.MetaJpaDataObject)2 NamingTestEntity (io.crnk.jpa.model.NamingTestEntity)2