Search in sources :

Example 1 with GenerationTiming

use of org.hibernate.tuple.GenerationTiming in project hibernate-orm by hibernate.

the class PropertyBinder method determineValueGenerationStrategy.

private ValueGeneration determineValueGenerationStrategy(XProperty property) {
    ValueGeneration valueGeneration = getValueGenerationFromAnnotations(property);
    if (valueGeneration == null) {
        return NoValueGeneration.INSTANCE;
    }
    final GenerationTiming when = valueGeneration.getGenerationTiming();
    if (valueGeneration.getValueGenerator() == null) {
        insertable = false;
        if (when == GenerationTiming.ALWAYS) {
            updatable = false;
        }
    }
    return valueGeneration;
}
Also used : AnnotationValueGeneration(org.hibernate.tuple.AnnotationValueGeneration) ValueGeneration(org.hibernate.tuple.ValueGeneration) GenerationTiming(org.hibernate.tuple.GenerationTiming)

Example 2 with GenerationTiming

use of org.hibernate.tuple.GenerationTiming in project hibernate-orm by hibernate.

the class ModelBinder method bindProperty.

private void bindProperty(MappingDocument mappingDocument, AttributeSource propertySource, Property property) {
    property.setName(propertySource.getName());
    if (StringHelper.isNotEmpty(propertySource.getXmlNodeName())) {
        DeprecationLogger.DEPRECATION_LOGGER.logDeprecationOfDomEntityModeSupport();
    }
    property.setPropertyAccessorName(StringHelper.isNotEmpty(propertySource.getPropertyAccessorName()) ? propertySource.getPropertyAccessorName() : mappingDocument.getMappingDefaults().getImplicitPropertyAccessorName());
    if (propertySource instanceof CascadeStyleSource) {
        final CascadeStyleSource cascadeStyleSource = (CascadeStyleSource) propertySource;
        property.setCascade(StringHelper.isNotEmpty(cascadeStyleSource.getCascadeStyleName()) ? cascadeStyleSource.getCascadeStyleName() : mappingDocument.getMappingDefaults().getImplicitCascadeStyleName());
    }
    property.setOptimisticLocked(propertySource.isIncludedInOptimisticLocking());
    if (propertySource.isSingular()) {
        final SingularAttributeSource singularAttributeSource = (SingularAttributeSource) propertySource;
        property.setInsertable(singularAttributeSource.isInsertable());
        property.setUpdateable(singularAttributeSource.isUpdatable());
        // NOTE : Property#is refers to whether a property is lazy via bytecode enhancement (not proxies)
        property.setLazy(singularAttributeSource.isBytecodeLazy());
        final GenerationTiming generationTiming = singularAttributeSource.getGenerationTiming();
        if (generationTiming == GenerationTiming.ALWAYS || generationTiming == GenerationTiming.INSERT) {
            // we had generation specified...
            // HBM only supports "database generated values"
            property.setValueGenerationStrategy(new GeneratedValueGeneration(generationTiming));
            // generated properties can *never* be insertable...
            if (property.isInsertable()) {
                log.debugf("Property [%s] specified %s generation, setting insertable to false : %s", propertySource.getName(), generationTiming.name(), mappingDocument.getOrigin());
                property.setInsertable(false);
            }
            // properties generated on update can never be updatable...
            if (property.isUpdateable() && generationTiming == GenerationTiming.ALWAYS) {
                log.debugf("Property [%s] specified ALWAYS generation, setting updateable to false : %s", propertySource.getName(), mappingDocument.getOrigin());
                property.setUpdateable(false);
            }
        }
    }
    property.setMetaAttributes(propertySource.getToolingHintContext().getMetaAttributeMap());
    if (log.isDebugEnabled()) {
        final StringBuilder message = new StringBuilder().append("Mapped property: ").append(propertySource.getName()).append(" -> [");
        final Iterator itr = property.getValue().getColumnIterator();
        while (itr.hasNext()) {
            message.append(((Selectable) itr.next()).getText());
            if (itr.hasNext()) {
                message.append(", ");
            }
        }
        message.append("]");
        log.debug(message.toString());
    }
}
Also used : CascadeStyleSource(org.hibernate.boot.model.source.spi.CascadeStyleSource) GenerationTiming(org.hibernate.tuple.GenerationTiming) SingularAttributeSource(org.hibernate.boot.model.source.spi.SingularAttributeSource) Iterator(java.util.Iterator) GeneratedValueGeneration(org.hibernate.tuple.GeneratedValueGeneration)

Aggregations

GenerationTiming (org.hibernate.tuple.GenerationTiming)2 Iterator (java.util.Iterator)1 CascadeStyleSource (org.hibernate.boot.model.source.spi.CascadeStyleSource)1 SingularAttributeSource (org.hibernate.boot.model.source.spi.SingularAttributeSource)1 AnnotationValueGeneration (org.hibernate.tuple.AnnotationValueGeneration)1 GeneratedValueGeneration (org.hibernate.tuple.GeneratedValueGeneration)1 ValueGeneration (org.hibernate.tuple.ValueGeneration)1