org.pentaho.di.trans.steps.multimerge.MultiMergeJoinData 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.multimerge;
import java.util.Comparator;
import java.util.List;
import java.util.PriorityQueue;
import org.pentaho.di.core.RowSet;
import org.pentaho.di.core.exception.KettleException;
import org.pentaho.di.core.row.RowMetaInterface;
import org.pentaho.di.trans.step.BaseStepData;
import org.pentaho.di.trans.step.StepDataInterface;
/**
* @author Biswapesh
* @since 24-nov-2005
*
*/
public class MultiMergeJoinData extends BaseStepData implements StepDataInterface {
public static class QueueEntry {
public Object[] row;
public int index;
}
public static class QueueComparator implements Comparator {
MultiMergeJoinData data;
QueueComparator( MultiMergeJoinData data ) {
this.data = data;
}
@Override
public int compare( QueueEntry a, QueueEntry b ) {
try {
int cmp =
data.metas[a.index].compare(
a.row, data.metas[b.index], b.row, data.keyNrs[a.index], data.keyNrs[b.index] );
return cmp > 0 ? 1 : cmp < 0 ? -1 : 0;
} catch ( KettleException e ) {
throw new RuntimeException( e.getMessage() );
}
}
}
public Object[][] rows;
public RowMetaInterface[] metas;
public RowMetaInterface outputRowMeta; // just for speed: oneMeta+twoMeta
public Object[][] dummy;
public List> results;
public PriorityQueue queue;
public boolean optional;
public int[][] keyNrs;
public int[] drainIndices;
public RowSet[] rowSets;
public QueueEntry[] queueEntries;
public int[] rowLengths;
/**
* Default initializer
*/
public MultiMergeJoinData() {
super();
rows = null;
metas = null;
dummy = null;
optional = false;
keyNrs = null;
}
}