org.pentaho.di.trans.steps.socketwriter.SocketWriterMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kettle-engine Show documentation
Show all versions of kettle-engine Show documentation
Container pom for Pentaho Data Integration modules
The newest version!
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Hitachi Vantara : 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.socketwriter;
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.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.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 02-jun-2003
*
*/
public class SocketWriterMeta extends BaseStepMeta implements StepMetaInterface {
private static Class> PKG = SocketWriterMeta.class; // for i18n purposes, needed by Translator2!!
private String port;
private String bufferSize;
private String flushInterval;
private boolean compressed;
public SocketWriterMeta() {
super(); // allocate BaseStepMeta
}
public void loadXML( Node stepnode, List databases, IMetaStore metaStore ) throws KettleXMLException {
readData( stepnode );
}
public Object clone() {
Object retval = super.clone();
return retval;
}
public String getXML() {
StringBuilder xml = new StringBuilder();
xml.append( " " + XMLHandler.addTagValue( "port", port ) );
xml.append( " " + XMLHandler.addTagValue( "buffer_size", bufferSize ) );
xml.append( " " + XMLHandler.addTagValue( "flush_interval", flushInterval ) );
xml.append( " " + XMLHandler.addTagValue( "compressed", compressed ) );
return xml.toString();
}
private void readData( Node stepnode ) {
port = XMLHandler.getTagValue( stepnode, "port" );
bufferSize = XMLHandler.getTagValue( stepnode, "buffer_size" );
flushInterval = XMLHandler.getTagValue( stepnode, "flush_interval" );
compressed = "Y".equalsIgnoreCase( XMLHandler.getTagValue( stepnode, "compressed" ) );
}
public void setDefault() {
bufferSize = "2000";
flushInterval = "5000";
compressed = true;
}
public void readRep( Repository rep, IMetaStore metaStore, ObjectId id_step, List databases ) throws KettleException {
port = rep.getStepAttributeString( id_step, "port" );
bufferSize = rep.getStepAttributeString( id_step, "buffer_size" );
flushInterval = rep.getStepAttributeString( id_step, "flush_interval" );
compressed = rep.getStepAttributeBoolean( id_step, "compressed" );
}
public void saveRep( Repository rep, IMetaStore metaStore, ObjectId id_transformation, ObjectId id_step ) throws KettleException {
rep.saveStepAttribute( id_transformation, id_step, "port", port );
rep.saveStepAttribute( id_transformation, id_step, "buffer_size", bufferSize );
rep.saveStepAttribute( id_transformation, id_step, "flush_interval", flushInterval );
rep.saveStepAttribute( id_transformation, id_step, "compressed", compressed );
}
public void getFields( RowMetaInterface rowMeta, String origin, RowMetaInterface[] info, StepMeta nextStep,
VariableSpace space, Repository repository, IMetaStore metaStore ) throws KettleStepException {
// Default: nothing changes to rowMeta
}
public void check( List remarks, TransMeta transMeta, StepMeta stepMeta,
RowMetaInterface prev, String[] input, String[] output, RowMetaInterface info, VariableSpace space,
Repository repository, IMetaStore metaStore ) {
CheckResult cr;
if ( prev == null || prev.size() == 0 ) {
cr =
new CheckResult( CheckResultInterface.TYPE_RESULT_WARNING, BaseMessages.getString(
PKG, "SocketWriterMeta.CheckResult.NotReceivingFields" ), stepMeta );
remarks.add( cr );
} else {
cr =
new CheckResult( CheckResultInterface.TYPE_RESULT_OK, BaseMessages.getString(
PKG, "SocketWriterMeta.CheckResult.StepRecevingData", prev.size() + "" ), stepMeta );
remarks.add( cr );
}
// See if we have input streams leading to this step!
if ( input.length > 0 ) {
cr =
new CheckResult( CheckResultInterface.TYPE_RESULT_OK, BaseMessages.getString(
PKG, "SocketWriterMeta.CheckResult.StepRecevingData2" ), stepMeta );
remarks.add( cr );
} else {
cr =
new CheckResult( CheckResultInterface.TYPE_RESULT_ERROR, BaseMessages.getString(
PKG, "SocketWriterMeta.CheckResult.NoInputReceivedFromOtherSteps" ), stepMeta );
remarks.add( cr );
}
}
public StepInterface getStep( StepMeta stepMeta, StepDataInterface stepDataInterface, int cnr, TransMeta tr,
Trans trans ) {
return new SocketWriter( stepMeta, stepDataInterface, cnr, tr, trans );
}
public StepDataInterface getStepData() {
return new SocketWriterData();
}
/**
* @return the port
*/
public String getPort() {
return port;
}
/**
* @param port
* the port to set
*/
public void setPort( String port ) {
this.port = port;
}
public String getBufferSize() {
return bufferSize;
}
public void setBufferSize( String bufferSize ) {
this.bufferSize = bufferSize;
}
public String getFlushInterval() {
return flushInterval;
}
public void setFlushInterval( String flushInterval ) {
this.flushInterval = flushInterval;
}
/**
* @return the compressed
*/
public boolean isCompressed() {
return compressed;
}
/**
* @param compressed
* the compressed to set
*/
public void setCompressed( boolean compressed ) {
this.compressed = compressed;
}
}