📄 abstractpropertymapping.java
字号:
//$Id: AbstractPropertyMapping.java,v 1.1.2.11 2003/11/29 06:52:55 oneovthafew Exp $
package net.sf.hibernate.persister;
import java.util.HashMap;
import java.util.Map;
import net.sf.hibernate.MappingException;
import net.sf.hibernate.QueryException;
import net.sf.hibernate.engine.Mapping;
import net.sf.hibernate.sql.Template;
import net.sf.hibernate.type.AbstractComponentType;
import net.sf.hibernate.type.AssociationType;
import net.sf.hibernate.type.EntityType;
import net.sf.hibernate.type.Type;
import net.sf.hibernate.util.ArrayHelper;
import net.sf.hibernate.util.StringHelper;
/**
* Base implementation of a PropertyMapping
*
* @author Gavin King
*/
public abstract class AbstractPropertyMapping implements PropertyMapping {
private final Map typesByPropertyPath = new HashMap();
private final Map columnsByPropertyPath = new HashMap();
private final Map formulaTemplatesByPropertyPath = new HashMap();
public String[] getIdentifierColumnNames() {
throw new UnsupportedOperationException("one-to-one is not supported here");
}
protected abstract String getClassName();
public Type toType(String propertyName) throws QueryException {
Type type = (Type) typesByPropertyPath.get(propertyName);
if (type==null) {
throw new QueryException( "could not resolve property: " + propertyName + " of: " + getClassName() );
}
return type;
}
public String[] toColumns(String alias, String propertyName)
throws QueryException {
String[] columns = (String[]) columnsByPropertyPath.get(propertyName);
if (columns==null) {
String template = (String) formulaTemplatesByPropertyPath.get(propertyName);
if (template==null) {
throw new QueryException( "could not resolve property: " + propertyName + " of: " + getClassName() );
}
else {
return new String[] { StringHelper.replace(template, Template.TEMPLATE, alias) };
}
}
else {
return StringHelper.qualify(alias, columns);
}
}
protected void addPropertyPath(String path, Type type, String[] columns) {
typesByPropertyPath.put(path, type);
columnsByPropertyPath.put(path, columns);
handlePath(path, type);
}
protected void addFormulaPropertyPath(String path, Type type, String template) {
typesByPropertyPath.put(path, type);
formulaTemplatesByPropertyPath.put(path, template);
handlePath(path, type);
}
protected void initPropertyPaths(String path, Type type, String[] columns, String formulaTemplate, Mapping factory)
throws MappingException {
if ( formulaTemplate!=null ) {
addFormulaPropertyPath(path, type, formulaTemplate);
}
else {
initPropertyPaths(path, type, columns, factory);
}
}
protected void initPropertyPaths(String path, Type type, String[] columns, Mapping factory)
throws MappingException {
if ( columns.length!=type.getColumnSpan(factory) ) {
throw new MappingException( "broken column mapping for: " + path + " of: " + getClassName() );
}
if (
type.isAssociationType() &&
( (AssociationType) type).usePrimaryKeyAsForeignKey()
) {
columns = getIdentifierColumnNames();
}
if (path!=null) addPropertyPath(path, type, columns);
if ( type.isComponentType() ) {
initComponentPropertyPaths( path, (AbstractComponentType) type, columns, factory );
}
else if ( type.isEntityType() ) {
Class clazz = ( (EntityType) type ).getAssociatedClass();
Type idtype = factory.getIdentifierType(clazz);
String idpath1 = extendPath(path ,ClassPersister.ENTITY_ID);
addPropertyPath(idpath1, idtype, columns);
if ( idtype.isComponentType() ) {
initComponentPropertyPaths( idpath1, (AbstractComponentType) idtype, columns, factory );
}
String idPropName = factory.getIdentifierPropertyName(clazz);
if (idPropName!=null) {
String idpath2 = extendPath(path, idPropName);
addPropertyPath(idpath2, idtype, columns);
if ( idtype.isComponentType() ) {
initComponentPropertyPaths( idpath2, (AbstractComponentType) idtype, columns, factory );
}
}
}
}
protected void initComponentPropertyPaths(String path, AbstractComponentType type, String[] columns, Mapping factory)
throws MappingException {
Type[] types = type.getSubtypes();
String[] properties = type.getPropertyNames();
int begin=0;
for ( int i=0; i<properties.length; i++ ) {
String subpath = extendPath( path, properties[i] );
try {
int length = types[i].getColumnSpan(factory);
String[] columnSlice = ArrayHelper.slice(columns, begin, length);
initPropertyPaths(subpath, types[i], columnSlice, factory);
begin+=length;
}
catch (Exception e) {
throw new MappingException("bug in initComponentPropertyPaths", e);
}
}
}
private static String extendPath(String path, String property) {
if (path==null) {
return property;
}
else {
return StringHelper.qualify(path, property);
}
}
protected void handlePath(String path, Type type) {}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -