org.hibernate.mapping.IndexedCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of beangle-hibernate-core Show documentation
Show all versions of beangle-hibernate-core Show documentation
Hibernate Orm Core Shade,Support Scala Collection
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later.
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.mapping;
import java.util.function.Supplier;
import org.hibernate.MappingException;
import org.hibernate.boot.spi.MetadataBuildingContext;
import org.hibernate.engine.spi.Mapping;
import org.hibernate.resource.beans.spi.ManagedBean;
import org.hibernate.usertype.UserCollectionType;
/**
* Indexed collections include Lists, Maps, arrays and
* primitive arrays.
* @author Gavin King
*/
public abstract class IndexedCollection extends Collection {
public static final String DEFAULT_INDEX_COLUMN_NAME = "idx";
private Value index;
public IndexedCollection(MetadataBuildingContext buildingContext, PersistentClass owner) {
super( buildingContext, owner );
}
public IndexedCollection(Supplier> customTypeBeanResolver, PersistentClass owner, MetadataBuildingContext buildingContext) {
super( customTypeBeanResolver, owner, buildingContext );
}
protected IndexedCollection(IndexedCollection original) {
super( original );
this.index = original.index == null ? null : original.index.copy();
}
public Value getIndex() {
return index;
}
public void setIndex(Value index) {
this.index = index;
}
public final boolean isIndexed() {
return true;
}
@Override
public boolean isSame(Collection other) {
return other instanceof IndexedCollection
&& isSame( (IndexedCollection) other );
}
public boolean isSame(IndexedCollection other) {
return super.isSame( other )
&& isSame( index, other.index );
}
void createPrimaryKey() {
if ( !isOneToMany() ) {
PrimaryKey pk = new PrimaryKey( getCollectionTable() );
pk.addColumns( getKey() );
// index should be last column listed
boolean indexIsPartOfElement = false;
for ( Selectable selectable: getIndex().getSelectables() ) {
if ( selectable.isFormula() || !getCollectionTable().containsColumn( (Column) selectable ) ) {
indexIsPartOfElement = true;
}
}
if ( indexIsPartOfElement ) {
//if it is part of the element, use the element columns in the PK
pk.addColumns( getElement() );
}
else {
pk.addColumns( getIndex() );
}
getCollectionTable().setPrimaryKey(pk);
}
// else {
// don't create a unique key, 'cos some
// databases don't like a UK on nullable
// columns
/*ArrayList list = new ArrayList();
list.addAll( getKey().getConstraintColumns() );
list.addAll( getIndex().getConstraintColumns() );
getCollectionTable().createUniqueKey(list);*/
// }
}
public void validate(Mapping mapping) throws MappingException {
super.validate( mapping );
assert getElement() != null : "IndexedCollection index not bound : " + getRole();
if ( !getIndex().isValid(mapping) ) {
throw new MappingException(
"collection index mapping has wrong number of columns: " +
getRole() +
" type: " +
getIndex().getType().getName()
);
}
}
public boolean isList() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy