OneToOneConfigurerTemplate.java
package org.codefilarete.stalactite.engine.configurer.onetoone;
import java.util.Collections;
import java.util.HashSet;
import java.util.Objects;
import java.util.Set;
import javax.annotation.Nullable;
import org.codefilarete.reflection.Accessor;
import org.codefilarete.reflection.AccessorDefinition;
import org.codefilarete.reflection.ValueAccessPoint;
import org.codefilarete.stalactite.dsl.MappingConfigurationException;
import org.codefilarete.stalactite.dsl.RuntimeMappingException;
import org.codefilarete.stalactite.dsl.naming.UniqueConstraintNamingStrategy;
import org.codefilarete.stalactite.dsl.property.CascadeOptions.RelationMode;
import org.codefilarete.stalactite.engine.configurer.CascadeConfigurationResult;
import org.codefilarete.stalactite.engine.listener.InsertListener;
import org.codefilarete.stalactite.engine.listener.SelectListener;
import org.codefilarete.stalactite.engine.listener.UpdateListener;
import org.codefilarete.stalactite.engine.runtime.ConfiguredPersister;
import org.codefilarete.stalactite.engine.runtime.ConfiguredRelationalPersister;
import org.codefilarete.stalactite.mapping.EntityMapping;
import org.codefilarete.stalactite.sql.ddl.structure.Column;
import org.codefilarete.stalactite.sql.ddl.structure.Key;
import org.codefilarete.stalactite.sql.ddl.structure.Table;
import org.codefilarete.stalactite.sql.result.BeanRelationFixer;
import org.codefilarete.tool.Duo;
import org.codefilarete.tool.collection.Iterables;
/**
* Parent class for {@link OneToOneOwnedBySourceConfigurer} and {@link OneToOneOwnedByTargetConfigurer} to share similar behavior.
*
* @param <SRC> type of input (left/source entities)
* @param <TRGT> type of output (right/target entities)
* @param <SRCID> identifier type of source entities
* @param <TRGTID> identifier type of target entities
* @param <LEFTTABLE> left (source entity) table type
* @param <RIGHTTABLE> right (target entity) table type
* @param <JOINID> joining columns type
* @author Guillaume Mary
*/
public abstract class OneToOneConfigurerTemplate<SRC, TRGT, SRCID, TRGTID, LEFTTABLE extends Table<LEFTTABLE>, RIGHTTABLE extends Table<RIGHTTABLE>, JOINID> {
protected final ConfiguredRelationalPersister<SRC, SRCID> sourcePersister;
protected final OneToOneRelation<SRC, TRGT, TRGTID> oneToOneRelation;
protected final UniqueConstraintNamingStrategy uniqueConstraintNamingStrategy;
protected OneToOneConfigurerTemplate(ConfiguredRelationalPersister<SRC, SRCID> sourcePersister,
OneToOneRelation<SRC, TRGT, TRGTID> oneToOneRelation,
UniqueConstraintNamingStrategy uniqueConstraintNamingStrategy) {
this.sourcePersister = sourcePersister;
this.oneToOneRelation = oneToOneRelation;
this.uniqueConstraintNamingStrategy = uniqueConstraintNamingStrategy;
}
public String configure(@Nullable String tableAlias,
ConfiguredRelationalPersister<TRGT, TRGTID> targetPersister,
boolean loadSeparately) {
assertConfigurationIsSupported();
// Finding joined columns
EntityMapping<TRGT, TRGTID, RIGHTTABLE> targetMappingStrategy = targetPersister.getMapping();
Duo<Key<LEFTTABLE, JOINID>, Key<RIGHTTABLE, JOINID>> foreignKeyColumns = determineForeignKeyColumns(sourcePersister.getMapping(), targetMappingStrategy);
eventuallyAddIndex(foreignKeyColumns);
BeanRelationFixer<SRC, TRGT> beanRelationFixer = determineRelationFixer();
String relationJoinNodeName = addSelectJoin(tableAlias, targetPersister, foreignKeyColumns.getLeft(), foreignKeyColumns.getRight(), beanRelationFixer, loadSeparately);
addWriteCascades(targetPersister);
return relationJoinNodeName;
}
public CascadeConfigurationResult<SRC, TRGT> configureWithSelectIn2Phases(String tableAlias,
ConfiguredRelationalPersister<TRGT, TRGTID> targetPersister,
FirstPhaseCycleLoadListener<SRC, TRGTID> firstPhaseCycleLoadListener) {
assertConfigurationIsSupported();
// Finding joined columns
EntityMapping<TRGT, TRGTID, RIGHTTABLE> targetMappingStrategy = targetPersister.getMapping();
Duo<Key<LEFTTABLE, JOINID>, Key<RIGHTTABLE, JOINID>> foreignKeyColumns = determineForeignKeyColumns(sourcePersister.getMapping(), targetMappingStrategy);
eventuallyAddIndex(foreignKeyColumns);
BeanRelationFixer<SRC, TRGT> beanRelationFixer = determineRelationFixer();
addSelectIn2Phases(tableAlias, targetPersister, foreignKeyColumns.getLeft(), foreignKeyColumns.getRight(), firstPhaseCycleLoadListener);
addWriteCascades(targetPersister);
return new CascadeConfigurationResult<>(beanRelationFixer, sourcePersister);
}
private void assertConfigurationIsSupported() {
RelationMode maintenanceMode = oneToOneRelation.getRelationMode();
if (maintenanceMode == RelationMode.ASSOCIATION_ONLY) {
throw new MappingConfigurationException(RelationMode.ASSOCIATION_ONLY + " is only relevant for one-to-many association");
}
}
protected abstract Duo<Key<LEFTTABLE, JOINID>, Key<RIGHTTABLE, JOINID>> determineForeignKeyColumns(EntityMapping<SRC, SRCID, LEFTTABLE> mappingStrategy,
EntityMapping<TRGT, TRGTID, RIGHTTABLE> targetMappingStrategy);
private void eventuallyAddIndex(Duo<Key<LEFTTABLE, JOINID>, Key<RIGHTTABLE, JOINID>> foreignKeyColumns) {
// we only support index for single key
if (oneToOneRelation.isUnique() && foreignKeyColumns.getLeft().getColumns().size() == 1) {
if (oneToOneRelation.isRelationOwnedByTarget()) {
addUniqueConstraint((Column<RIGHTTABLE, ?>) Iterables.first(foreignKeyColumns.getRight().getColumns()));
} else {
addUniqueConstraint((Column<LEFTTABLE, ?>) Iterables.first(foreignKeyColumns.getLeft().getColumns()));
}
}
}
protected abstract void addUniqueConstraint(Column<?, ?> column);
protected abstract BeanRelationFixer<SRC, TRGT> determineRelationFixer();
protected void addWriteCascades(ConfiguredPersister<TRGT, TRGTID> targetPersister) {
boolean orphanRemoval = oneToOneRelation.getRelationMode() == RelationMode.ALL_ORPHAN_REMOVAL;
boolean writeAuthorized = oneToOneRelation.getRelationMode() != RelationMode.READ_ONLY;
if (writeAuthorized) {
// NB: "delete removed" will be treated internally by updateCascade() and deleteCascade()
addInsertCascade(targetPersister);
addUpdateCascade(targetPersister, orphanRemoval);
addDeleteCascade(targetPersister, orphanRemoval);
}
}
@SuppressWarnings("squid:S1172") // argument targetPersister is used by subclasses
protected void addInsertCascade(ConfiguredPersister<TRGT, TRGTID> targetPersister) {
// if cascade is mandatory, then adding nullability checking before insert
if (!oneToOneRelation.isNullable()) {
sourcePersister.addInsertListener(new MandatoryRelationAssertBeforeInsertListener<>(oneToOneRelation.getTargetProvider()));
}
}
protected void addUpdateCascade(ConfiguredPersister<TRGT, TRGTID> targetPersister, boolean orphanRemoval) {
// if cascade is mandatory, then adding nullability checking before insert
if (!oneToOneRelation.isNullable()) {
sourcePersister.addUpdateListener(new MandatoryRelationAssertBeforeUpdateListener<>(oneToOneRelation.getTargetProvider()));
}
}
protected abstract void addDeleteCascade(ConfiguredPersister<TRGT, TRGTID> targetPersister, boolean orphanRemoval);
protected String addSelectJoin(
@Nullable String tableAlias,
ConfiguredRelationalPersister<TRGT, TRGTID> targetPersister,
Key<LEFTTABLE, JOINID> leftKey,
Key<RIGHTTABLE, JOINID> rightKey,
BeanRelationFixer<SRC, TRGT> beanRelationFixer,
boolean loadSeparately) {
// we add target subgraph joins to the one that was created
String joinNodeName = targetPersister.joinAsOne(sourcePersister, oneToOneRelation.getTargetProvider(), leftKey, rightKey, tableAlias, beanRelationFixer, oneToOneRelation.isNullable(), loadSeparately);
// We trigger subgraph load event (via targetSelectListener) on loading of our graph.
// Done for instance for event consumers that initialize some things, because given ids of methods are those of source entity
SelectListener<TRGT, TRGTID> targetSelectListener = targetPersister.getPersisterListener().getSelectListener();
sourcePersister.addSelectListener(new SelectListener<SRC, SRCID>() {
@Override
public void beforeSelect(Iterable<SRCID> ids) {
// since ids are not those of its entities, we should not pass them as argument, this will only initialize things if needed
targetSelectListener.beforeSelect(Collections.emptyList());
}
@Override
public void afterSelect(Set<? extends SRC> result) {
Set<TRGT> collect = Iterables.collect(result, oneToOneRelation.getTargetProvider()::get, HashSet::new);
// NB: entity can be null when loading relation, we skip nulls to prevent a NPE
collect.removeIf(Objects::isNull);
targetSelectListener.afterSelect(collect);
}
@Override
public void onSelectError(Iterable<SRCID> ids, RuntimeException exception) {
// since ids are not those of its entities, we should not pass them as argument
targetSelectListener.onSelectError(Collections.emptyList(), exception);
}
});
return joinNodeName;
}
abstract protected void addSelectIn2Phases(
String tableAlias,
ConfiguredRelationalPersister<TRGT, TRGTID> targetPersister,
Key<LEFTTABLE, JOINID> leftKey,
Key<RIGHTTABLE, JOINID> rightKey,
FirstPhaseCycleLoadListener<SRC, TRGTID> firstPhaseCycleLoadListener);
public static class MandatoryRelationAssertBeforeInsertListener<C> implements InsertListener<C> {
private final Accessor<C, ?> targetAccessor;
public MandatoryRelationAssertBeforeInsertListener(Accessor<C, ?> targetAccessor) {
this.targetAccessor = targetAccessor;
}
@Override
public void beforeInsert(Iterable<? extends C> entities) {
for (C pawn : entities) {
Object modifiedTarget = targetAccessor.get(pawn);
if (modifiedTarget == null) {
throw newRuntimeMappingException(pawn, targetAccessor);
}
}
}
}
public static class MandatoryRelationAssertBeforeUpdateListener<C> implements UpdateListener<C> {
private final Accessor<C, ?> targetAccessor;
public MandatoryRelationAssertBeforeUpdateListener(Accessor<C, ?> targetAccessor) {
this.targetAccessor = targetAccessor;
}
@Override
public void beforeUpdate(Iterable<? extends Duo<C, C>> payloads, boolean allColumnsStatement) {
for (Duo<? extends C, ? extends C> payload : payloads) {
C modifiedEntity = payload.getLeft();
Object modifiedTarget = targetAccessor.get(modifiedEntity);
if (modifiedTarget == null) {
throw newRuntimeMappingException(modifiedEntity, targetAccessor);
}
}
}
}
public static RuntimeMappingException newRuntimeMappingException(Object pawn, ValueAccessPoint<?> accessor) {
return new RuntimeMappingException("Non null value expected for relation "
+ AccessorDefinition.toString(accessor) + " on object " + pawn);
}
}