/******************************************************************************* * Copyright (c) 2009-2011 Red Hat, Inc. * Distributed under license by Red Hat, Inc. All rights reserved. * This program is made available under the terms of the * Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html * * Contributor: * Red Hat, Inc. - initial API and implementation ******************************************************************************/ package org.jboss.tools.hibernate.jpt.core.internal.context.java; import java.util.List; import org.eclipse.jpt.jpa.core.context.java.JavaEntity; import org.eclipse.jpt.jpa.core.context.java.JavaSpecifiedSecondaryTable; import org.eclipse.jpt.jpa.core.internal.jpa1.context.java.GenericJavaSecondaryTable; import org.eclipse.jpt.jpa.core.resource.java.SecondaryTableAnnotation; import org.eclipse.jpt.jpa.core.validation.JptJpaCoreValidationMessages; import org.eclipse.jpt.jpa.db.Schema; import org.eclipse.jpt.jpa.db.Table; import org.eclipse.wst.validation.internal.provisional.core.IMessage; import org.jboss.tools.hibernate.jpt.core.internal.HibernateJpaProject; import org.jboss.tools.hibernate.jpt.core.internal.HibernateJptPlugin; import org.jboss.tools.hibernate.jpt.core.internal.context.Messages; import org.jboss.tools.hibernate.jpt.core.internal.validation.HibernateJpaValidationMessage; import org.jboss.tools.hibernate.runtime.spi.INamingStrategy; /** * @author Dmitry Geraskov * */ public class HibernateJavaSecondaryTableImpl extends GenericJavaSecondaryTable implements HibernateJavaSecondaryTable { public HibernateJavaSecondaryTableImpl(JavaSpecifiedSecondaryTable.ParentAdapter parentAdapter, SecondaryTableAnnotation tableAnnotation) { super(parentAdapter, tableAnnotation); } @Override public Table getDbTable() { Schema dbSchema = this.getDbSchema(); return (dbSchema == null) ? null : dbSchema.getTableForIdentifier(this.getDBTableName()); } @Override public HibernateJpaProject getJpaProject() { return (HibernateJpaProject) super.getJpaProject(); } @Override public String getDBTableName() { return getSpecifiedDBTableName(); } @Override public String getDefaultDBTableName() { //always has specified name return null; } @Override public String getSpecifiedDBTableName() { if (getSpecifiedName() == null) return null; INamingStrategy ns = getJpaProject().getNamingStrategy(); if (getJpaProject().isNamingStrategyEnabled() && ns != null){ try { return ns.tableName(getSpecifiedName()); } catch (Exception e) { IMessage m = HibernateJpaValidationMessage.buildMessage(IMessage.HIGH_SEVERITY, Messages.NAMING_STRATEGY_EXCEPTION, this); HibernateJptPlugin.logException(m.getText(), e); } } return this.getName(); } //@Override protected boolean validateAgainstDatabase(List<IMessage> messages) { if ( ! this.catalogIsResolved()) { messages.add( buildValidationMessage( JptJpaCoreValidationMessages.SECONDARY_TABLE_UNRESOLVED_CATALOG, new String[] {this.getCatalog(), this.getDBTableName()}, this.getCatalogValidationTextRange() ) ); return false; } if ( ! this.schemaIsResolved()) { messages.add( buildValidationMessage( JptJpaCoreValidationMessages.SECONDARY_TABLE_UNRESOLVED_SCHEMA, new String[] {this.getSchema(), this.getDBTableName()}, this.getSchemaValidationTextRange() ) ); return false; } if ( ! this.isResolved()) { messages.add( buildValidationMessage( JptJpaCoreValidationMessages.SECONDARY_TABLE_UNRESOLVED_NAME, new String[] {this.getDBTableName()}, this.getNameValidationTextRange() ) ); return false; } return true; } }