/*! ****************************************************************************** * * Pentaho Data Integration * * Copyright (C) 2002-2016 by Pentaho : http://www.pentaho.com * ******************************************************************************* * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ******************************************************************************/ package org.pentaho.di.trans.steps.tableexists; import java.util.List; import org.pentaho.di.core.CheckResult; import org.pentaho.di.core.CheckResultInterface; import org.pentaho.di.core.database.DatabaseMeta; import org.pentaho.di.core.exception.KettleException; import org.pentaho.di.core.exception.KettleStepException; import org.pentaho.di.core.exception.KettleXMLException; import org.pentaho.di.core.row.RowMetaInterface; import org.pentaho.di.core.row.ValueMetaInterface; import org.pentaho.di.core.row.value.ValueMetaBoolean; import org.pentaho.di.core.util.Utils; import org.pentaho.di.core.variables.VariableSpace; import org.pentaho.di.core.xml.XMLHandler; import org.pentaho.di.i18n.BaseMessages; import org.pentaho.di.repository.ObjectId; import org.pentaho.di.repository.Repository; import org.pentaho.di.shared.SharedObjectInterface; import org.pentaho.di.trans.Trans; import org.pentaho.di.trans.TransMeta; import org.pentaho.di.trans.step.BaseStepMeta; import org.pentaho.di.trans.step.StepDataInterface; import org.pentaho.di.trans.step.StepInterface; import org.pentaho.di.trans.step.StepMeta; import org.pentaho.di.trans.step.StepMetaInterface; import org.pentaho.metastore.api.IMetaStore; import org.w3c.dom.Node; /* * Created on 03-Juin-2008 * */ public class TableExistsMeta extends BaseStepMeta implements StepMetaInterface { private static Class<?> PKG = TableExistsMeta.class; // for i18n purposes, needed by Translator2!! /** database connection */ private DatabaseMeta database; /** dynamuc tablename */ private String tablenamefield; /** function result: new value name */ private String resultfieldname; private String schemaname; public TableExistsMeta() { super(); // allocate BaseStepMeta } /** * @return Returns the database. */ public DatabaseMeta getDatabase() { return database; } /** * @param database * The database to set. */ public void setDatabase( DatabaseMeta database ) { this.database = database; } /** * @return Returns the tablenamefield. */ public String getDynamicTablenameField() { return tablenamefield; } /** * @param tablenamefield * The tablenamefield to set. */ public void setDynamicTablenameField( String tablenamefield ) { this.tablenamefield = tablenamefield; } /** * @return Returns the resultName. */ public String getResultFieldName() { return resultfieldname; } /** * @param resultfieldname * The resultfieldname to set. */ public void setResultFieldName( String resultfieldname ) { this.resultfieldname = resultfieldname; } public String getSchemaname() { return schemaname; } public void setSchemaname( String schemaname ) { this.schemaname = schemaname; } public void loadXML( Node stepnode, List<DatabaseMeta> databases, IMetaStore metaStore ) throws KettleXMLException { readData( stepnode, databases ); } public Object clone() { TableExistsMeta retval = (TableExistsMeta) super.clone(); return retval; } public void setDefault() { database = null; schemaname = null; resultfieldname = "result"; } public void getFields( RowMetaInterface inputRowMeta, String name, RowMetaInterface[] info, StepMeta nextStep, VariableSpace space, Repository repository, IMetaStore metaStore ) throws KettleStepException { // Output field (String) if ( !Utils.isEmpty( resultfieldname ) ) { ValueMetaInterface v = new ValueMetaBoolean( space.environmentSubstitute( resultfieldname ) ); v.setOrigin( name ); inputRowMeta.addValueMeta( v ); } } public String getXML() { StringBuilder retval = new StringBuilder(); retval.append( " " + XMLHandler.addTagValue( "connection", database == null ? "" : database.getName() ) ); retval.append( " " + XMLHandler.addTagValue( "tablenamefield", tablenamefield ) ); retval.append( " " + XMLHandler.addTagValue( "resultfieldname", resultfieldname ) ); retval.append( " " + XMLHandler.addTagValue( "schemaname", schemaname ) ); return retval.toString(); } private void readData( Node stepnode, List<? extends SharedObjectInterface> databases ) throws KettleXMLException { try { String con = XMLHandler.getTagValue( stepnode, "connection" ); database = DatabaseMeta.findDatabase( databases, con ); tablenamefield = XMLHandler.getTagValue( stepnode, "tablenamefield" ); resultfieldname = XMLHandler.getTagValue( stepnode, "resultfieldname" ); schemaname = XMLHandler.getTagValue( stepnode, "schemaname" ); } catch ( Exception e ) { throw new KettleXMLException( BaseMessages.getString( PKG, "TableExistsMeta.Exception.UnableToReadStepInfo" ), e ); } } public void readRep( Repository rep, IMetaStore metaStore, ObjectId id_step, List<DatabaseMeta> databases ) throws KettleException { try { database = rep.loadDatabaseMetaFromStepAttribute( id_step, "id_connection", databases ); tablenamefield = rep.getStepAttributeString( id_step, "tablenamefield" ); schemaname = rep.getStepAttributeString( id_step, "schemaname" ); resultfieldname = rep.getStepAttributeString( id_step, "resultfieldname" ); } catch ( Exception e ) { throw new KettleException( BaseMessages.getString( PKG, "TableExistsMeta.Exception.UnexpectedErrorReadingStepInfo" ), e ); } } public void saveRep( Repository rep, IMetaStore metaStore, ObjectId id_transformation, ObjectId id_step ) throws KettleException { try { rep.saveDatabaseMetaStepAttribute( id_transformation, id_step, "id_connection", database ); rep.saveStepAttribute( id_transformation, id_step, "tablenamefield", tablenamefield ); rep.saveStepAttribute( id_transformation, id_step, "schemaname", schemaname ); rep.saveStepAttribute( id_transformation, id_step, "resultfieldname", resultfieldname ); // Also, save the step-database relationship! if ( database != null ) { rep.insertStepDatabase( id_transformation, id_step, database.getObjectId() ); } } catch ( Exception e ) { throw new KettleException( BaseMessages.getString( PKG, "TableExistsMeta.Exception.UnableToSaveStepInfo" ) + id_step, e ); } } public void check( List<CheckResultInterface> remarks, TransMeta transMeta, StepMeta stepMeta, RowMetaInterface prev, String[] input, String[] output, RowMetaInterface info, VariableSpace space, Repository repository, IMetaStore metaStore ) { CheckResult cr; String error_message = ""; if ( database == null ) { error_message = BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.InvalidConnection" ); cr = new CheckResult( CheckResult.TYPE_RESULT_ERROR, error_message, stepMeta ); remarks.add( cr ); } if ( Utils.isEmpty( resultfieldname ) ) { error_message = BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.ResultFieldMissing" ); cr = new CheckResult( CheckResult.TYPE_RESULT_ERROR, error_message, stepMeta ); remarks.add( cr ); } else { error_message = BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.ResultFieldOK" ); cr = new CheckResult( CheckResult.TYPE_RESULT_OK, error_message, stepMeta ); remarks.add( cr ); } if ( Utils.isEmpty( tablenamefield ) ) { error_message = BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.TableFieldMissing" ); cr = new CheckResult( CheckResult.TYPE_RESULT_ERROR, error_message, stepMeta ); remarks.add( cr ); } else { error_message = BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.TableFieldOK" ); cr = new CheckResult( CheckResult.TYPE_RESULT_OK, error_message, stepMeta ); remarks.add( cr ); } // See if we have input streams leading to this step! if ( input.length > 0 ) { cr = new CheckResult( CheckResult.TYPE_RESULT_OK, BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.ReceivingInfoFromOtherSteps" ), stepMeta ); remarks.add( cr ); } else { cr = new CheckResult( CheckResult.TYPE_RESULT_ERROR, BaseMessages.getString( PKG, "TableExistsMeta.CheckResult.NoInpuReceived" ), stepMeta ); remarks.add( cr ); } } public StepInterface getStep( StepMeta stepMeta, StepDataInterface stepDataInterface, int cnr, TransMeta transMeta, Trans trans ) { return new TableExists( stepMeta, stepDataInterface, cnr, transMeta, trans ); } public StepDataInterface getStepData() { return new TableExistsData(); } public DatabaseMeta[] getUsedDatabaseConnections() { if ( database != null ) { return new DatabaseMeta[] { database }; } else { return super.getUsedDatabaseConnections(); } } public boolean supportsErrorHandling() { return true; } }