rowdata java_Java RowDataUtil.addRowData方法代碼示例

本文整理匯總了Java中org.pentaho.di.core.row.RowDataUtil.addRowData方法的典型用法代碼示例。如果您正苦於以下問題:Java RowDataUtil.addRowData方法的具體用法?Java RowDataUtil.addRowData怎麽用?Java RowDataUtil.addRowData使用的例子?那麽恭喜您, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.pentaho.di.core.row.RowDataUtil的用法示例。

在下文中一共展示了RowDataUtil.addRowData方法的16個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於我們的係統推薦出更棒的Java代碼示例。

示例1: buildResult

​點讚 4

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private Object[] buildResult(Object[] r) throws KettleValueException

{

Object[] result=null;

if (r!=null || meta.isAlwaysGivingBackOneRow()) {

result = RowDataUtil.allocateRowData(data.groupnrs.length);

if (r!=null)

{

for (int i=0;i

{

result[i]=r[data.groupnrs[i]];

}

}

result=RowDataUtil.addRowData(result, data.groupnrs.length, getAggregateResult());

}

return result;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:19,

示例2: lookupValues

​點讚 3

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private Object[] lookupValues(RowMetaInterface rowMeta, Object[] row) throws KettleException

{

if (first) {

first=false;

data.outputRowMeta = getInputRowMeta().clone();

meta.getFields(data.outputRowMeta, getStepname(), new RowMetaInterface[] { data.infoMeta }, null, this);

// Check lookup field

data.indexOfMainField = getInputRowMeta().indexOfValue(environmentSubstitute(meta.getMainStreamField()));

if (data.indexOfMainField<0) {

// The field is unreachable !

throw new KettleException(BaseMessages.getString(PKG, "FuzzyMatch.Exception.CouldnotFindMainField",meta.getMainStreamField())); //$NON-NLS-1$ //$NON-NLS-2$

}

}

Object[] add = null;

try {

add=getFromCache(row);

} catch(Exception e) {

throw new KettleStepException(e);

}

return RowDataUtil.addRowData(row, rowMeta.size(), add);

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:25,

示例3: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException

{

Object[] r=null;

r = getRow();

if (r==null) // no more rows to be expected from the previous step(s)

{

setOutputDone();

return false;

}

if ( data.firstRow )

{

// The output meta is the original input meta + the

// additional constant fields.

data.firstRow = false;

data.outputMeta = getInputRowMeta().clone();

RowMetaInterface constants = data.constants.getRowMeta();

data.outputMeta.mergeRowMeta(constants);

}

// Add the constant data to the end of the row.

r = RowDataUtil.addRowData(r, getInputRowMeta().size(), data.constants.getData());

putRow(data.outputMeta, r);

if (log.isRowLevel())

{

log.logRowlevel(toString(), Messages.getString("Constant.Log.Wrote.Row", Long.toString(getLinesWritten()), getInputRowMeta().getString(r)) );

}

if (checkFeedback(getLinesWritten()))

{

if(log.isBasic()) logBasic( Messages.getString("Constant.Log.LineNr", Long.toString(getLinesWritten()) ));

}

return true;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:41,

示例4: processQueueObjectAt

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public void processQueueObjectAt(int i) throws KettleStepException {

int index = i - 1;

Object[] rows = data.data.toArray();

Object[] fields = new Object[meta.getNumberOfFields()];

for ( int j = 0 ; j < meta.getNumberOfFields(); j++ ) {

// field_index is the location inside a row of the subject of this

// ie, ORDERTOTAL might be the subject ofthis field lag or lead

// so we determine that ORDERTOTAL's index in the row

int field_index = data.inputRowMeta.indexOfValue(meta.getSubjectField()[j]);

int row_index = 0;

switch(meta.getAggregateType()[j])

{

case AnalyticQueryMeta.TYPE_FUNCT_LAG :

row_index = index - meta.getValueField()[j];

break;

case AnalyticQueryMeta.TYPE_FUNCT_LEAD :

row_index = index + meta.getValueField()[j];

break;

default: break;

}

if ( row_index < rows.length && row_index >= 0 ){

Object[] singleRow = (Object[]) rows[row_index];

if ( singleRow != null && singleRow[field_index] != null ) {

fields[j] = ((Object []) rows[row_index])[field_index];

}else {

// set default

fields[j] = null;

}

} else {

// set default

fields[j] = null;

}

}

Object[] newRow = RowDataUtil.addRowData((Object []) rows[index], data.inputRowMeta.size(), fields);

putRow(data.outputRowMeta, newRow);

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:41,

示例5: readStartDate

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private synchronized RowMetaAndData readStartDate() throws KettleException

{

if (log.isDetailed()) logDetailed("Reading from step [" + meta.getLookupStepname() + "]");

RowMetaInterface parametersMeta = new RowMeta();

Object[] parametersData = new Object[] {};

RowSet rowSet = findInputRowSet(meta.getLookupStepname());

if (rowSet!=null)

{

Object[] rowData = getRowFrom(rowSet); // rows are originating from "lookup_from"

while (rowData!=null)

{

parametersData = RowDataUtil.addRowData(parametersData, parametersMeta.size(), rowData);

parametersMeta.addRowMeta(rowSet.getRowMeta());

rowData = getRowFrom(rowSet); // take all input rows if needed!

}

if (parametersMeta.size()==0)

{

throw new KettleException("Expected to read parameters from step ["+meta.getLookupStepname()+"] but none were found.");

}

}

else

{

throw new KettleException("Unable to find rowset to read from, perhaps step ["+meta.getLookupStepname()+"] doesn't exist. (or perhaps you are trying a preview?)");

}

RowMetaAndData parameters = new RowMetaAndData(parametersMeta, parametersData);

return parameters;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:34,

示例6: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException

{

Object[] r=null;

r = getRow();

if (r==null) // no more rows to be expected from the previous step(s)

{

setOutputDone();

return false;

}

if ( data.firstRow )

{

// The output meta is the original input meta + the

// additional constant fields.

data.firstRow = false;

data.outputMeta = getInputRowMeta().clone();

RowMetaInterface constants = data.constants.getRowMeta();

data.outputMeta.mergeRowMeta(constants);

}

// Add the constant data to the end of the row.

r = RowDataUtil.addRowData(r, getInputRowMeta().size(), data.constants.getData());

putRow(data.outputMeta, r);

if (log.isRowLevel())

{

logRowlevel(BaseMessages.getString(PKG, "Constant.Log.Wrote.Row", Long.toString(getLinesWritten()), getInputRowMeta().getString(r)) );

}

if (checkFeedback(getLinesWritten()))

{

if(log.isBasic()) logBasic( BaseMessages.getString(PKG, "Constant.Log.LineNr", Long.toString(getLinesWritten()) ));

}

return true;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:41,

示例7: readStartDate

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private RowMetaAndData readStartDate() throws KettleException

{

if (log.isDetailed()) logDetailed("Reading from step [" + data.infoStream.getStepname() + "]");

RowMetaInterface parametersMeta = new RowMeta();

Object[] parametersData = new Object[] {};

RowSet rowSet = findInputRowSet(data.infoStream.getStepname());

if (rowSet!=null)

{

Object[] rowData = getRowFrom(rowSet); // rows are originating from "lookup_from"

while (rowData!=null)

{

parametersData = RowDataUtil.addRowData(parametersData, parametersMeta.size(), rowData);

parametersMeta.addRowMeta(rowSet.getRowMeta());

rowData = getRowFrom(rowSet); // take all input rows if needed!

}

if (parametersMeta.size()==0)

{

throw new KettleException("Expected to read parameters from step ["+data.infoStream.getStepname()+"] but none were found.");

}

}

else

{

throw new KettleException("Unable to find rowset to read from, perhaps step ["+data.infoStream.getStepname()+"] doesn't exist. (or perhaps you are trying a preview?)");

}

RowMetaAndData parameters = new RowMetaAndData(parametersMeta, parametersData);

return parameters;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:34,

示例8: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow( StepMetaInterface smi, StepDataInterface sdi ) throws KettleException {

meta = (GetSessionVariableMeta) smi;

data = (GetSessionVariableData) sdi;

Object[] rowData;

// no row data input from previous steps

if ( !data.readsRows ) {

// create a new row

rowData = RowDataUtil.allocateRowData( 0 );

incrementLinesRead();

data.inputRowMeta = new RowMeta();

// get session variables data

getSessionVariablesData();

// add session variables data to row

rowData = RowDataUtil.addRowData( rowData, data.inputRowMeta.size(), data.extraData );

putRow( data.outputRowMeta, rowData );

// end processing

setOutputDone();

return false;

}

// process row

rowData = getRow();

if ( rowData != null ) {

// get session variables data (once)

if ( first ) {

first = false;

data.inputRowMeta = getInputRowMeta();

getSessionVariablesData();

}

// add session variables data to row

rowData = RowDataUtil.addRowData( rowData, data.inputRowMeta.size(), data.extraData );

putRow( data.outputRowMeta, rowData );

// continue

return true;

} else {

// end processing

setOutputDone();

return false;

}

}

開發者ID:pentaho,項目名稱:pdi-platform-utils-plugin,代碼行數:49,

示例9: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException

{

meta=(DetectLastRowMeta)smi;

data=(DetectLastRowData)sdi;

Object[] r = getRow(); // Get row from input rowset & set row busy!

if(first)

{

if (getInputRowMeta() == null) {

return false;

}

// get the RowMeta

data.previousRowMeta = getInputRowMeta().clone();

data.NrPrevFields = data.previousRowMeta.size();

data.outputRowMeta = data.previousRowMeta;

meta.getFields(data.outputRowMeta, getStepname(), null, null, this);

}

Object[] outputRow=null;

if (r==null) // no more input to be expected...

{

if(previousRow != null)

{

//

// Output the last row with last row indicator set to true.

//

outputRow = RowDataUtil.addRowData(previousRow, getInputRowMeta().size(), data.getTrueArray());

putRow(data.outputRowMeta, outputRow); // copy row to output rowset(s);

if (log.isRowLevel()) {

logRowlevel(Messages.getString("DetectLastRow.Log.WroteRowToNextStep")+data.outputRowMeta.getString(outputRow)); //$NON-NLS-1$

}

if (checkFeedback(getLinesRead())) {

logBasic(Messages.getString("DetectLastRow.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

setOutputDone();

return false;

}

if(!first)

{

outputRow = RowDataUtil.addRowData(previousRow, getInputRowMeta().size(), data.getFalseArray());

putRow(data.outputRowMeta, outputRow); // copy row to output rowset(s);

if (log.isRowLevel()) {

logRowlevel(Messages.getString("DetectLastRow.Log.WroteRowToNextStep")+data.outputRowMeta.getString(outputRow)); //$NON-NLS-1$

}

if (checkFeedback(getLinesRead())) {

logBasic(Messages.getString("DetectLastRow.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

// keep track of the current row

previousRow = r;

if (first) first = false;

return true;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:63,

示例10: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

/**

* Column number where the input value is stored

*/

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi)

throws KettleException

{

Object[] row = getRow();

if (row == null)

{

setOutputDone();

return false;

}

if (first) {

first = false;

numberRange = new NumberRangeSet(meta.getRules(), meta.getFallBackValue());

data.outputRowMeta = (RowMetaInterface) getInputRowMeta().clone();

// Prepare output fields

meta.getFields(data.outputRowMeta, getStepname(), null, null,this);

// Find column numbers

data.inputColumnNr = data.outputRowMeta.indexOfValue(meta.getInputField());

// Check if a field was not available

if (data.inputColumnNr < 0) {

logError("Field for input could not be found: "+ meta.getInputField());

return false;

}

}

try {

// get field value

String strValue = getInputRowMeta().getString(row,data.inputColumnNr);

// return range

String ranges = numberRange.evaluate(strValue);

// add value to output

row = RowDataUtil.addRowData(row, getInputRowMeta().size(),new Object[] { ranges });

putRow(data.outputRowMeta, row);

if (checkFeedback(getLinesRead()))

{

if(log.isDetailed()) logDetailed(Messages.getString("NumberRange.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

catch(KettleException e)

{

boolean sendToErrorRow=false;

String errorMessage = null;

if (getStepMeta().isDoingErrorHandling())

{

sendToErrorRow = true;

errorMessage = e.toString();

}

else

{

logError(Messages.getString("NumberRange.Log.ErrorInStepRunning")+e.getMessage()); //$NON-NLS-1$

setErrors(1);

stopAll();

setOutputDone(); // signal end to receiver(s)

return false;

}

if (sendToErrorRow)

{

// Simply add this row to the error row

putError(getInputRowMeta(), row, 1, errorMessage, null, "NumberRange001");

}

}

return true;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:73,

示例11: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException

{

Object[] rowData;

if (data.readsRows)

{

rowData = getRow();

if (rowData==null)

{

setOutputDone();

return false;

}

}

else

{

rowData=RowDataUtil.allocateRowData(0);

incrementLinesRead();

}

// initialize

if (first && rowData!=null)

{

first=false;

// Make output meta data

//

if (data.readsRows) {

data.inputRowMeta = getInputRowMeta();

}

else {

data.inputRowMeta = new RowMeta();

}

data.outputRowMeta = data.inputRowMeta.clone();

meta.getFields(data.outputRowMeta, getStepname(), null, null, this);

// Create a copy of the output row metadata to do the data conversion...

//

data.conversionMeta = data.outputRowMeta.clone();

for (ValueMetaInterface valueMeta : data.conversionMeta.getValueMetaList()) {

valueMeta.setType(ValueMetaInterface.TYPE_STRING);

}

// Add the variables to the row...

//

// Keep the Object[] for speed. Although this step will always be used in "small" amounts, there's always going to be those cases where performance is required.

//

data.extraData = new Object[meta.getFieldName().length];

for (int i=0;i

{

String newValue = environmentSubstitute(meta.getVariableString()[i]);

if (log.isDetailed()) logDetailed("field ["+meta.getFieldName()[i]+"] has value ["+newValue+"]");

// Convert the data to the desired data type...

//

ValueMetaInterface targetMeta = data.outputRowMeta.getValueMeta(data.inputRowMeta.size()+i);

ValueMetaInterface sourceMeta = data.conversionMeta.getValueMeta(data.inputRowMeta.size()+i); // String type + conversion masks, symbols, trim type, etc

data.extraData[i] = targetMeta.convertData(sourceMeta, newValue);

}

}

rowData = RowDataUtil.addRowData(rowData, data.inputRowMeta.size(), data.extraData);

putRow(data.outputRowMeta, rowData);

if (!data.readsRows) // Just one row and then stop!

{

setOutputDone();

return false;

}

return true;

}

開發者ID:icholy,項目名稱:geokettle-2.0,代碼行數:74,

示例12: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException

{

meta=(DetectLastRowMeta)smi;

data=(DetectLastRowData)sdi;

Object[] r = getRow(); // Get row from input rowset & set row busy!

if(first)

{

if (getInputRowMeta() == null) {

setOutputDone();

return false;

}

// get the RowMeta

data.previousRowMeta = getInputRowMeta().clone();

data.NrPrevFields = data.previousRowMeta.size();

data.outputRowMeta = data.previousRowMeta;

meta.getFields(data.outputRowMeta, getStepname(), null, null, this);

}

Object[] outputRow=null;

if (r==null) // no more input to be expected...

{

if(previousRow != null)

{

//

// Output the last row with last row indicator set to true.

//

outputRow = RowDataUtil.addRowData(previousRow, getInputRowMeta().size(), data.getTrueArray());

putRow(data.outputRowMeta, outputRow); // copy row to output rowset(s);

if (log.isRowLevel()) {

logRowlevel(BaseMessages.getString(PKG, "DetectLastRow.Log.WroteRowToNextStep")+data.outputRowMeta.getString(outputRow)); //$NON-NLS-1$

}

if (checkFeedback(getLinesRead())) {

logBasic(BaseMessages.getString(PKG, "DetectLastRow.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

setOutputDone();

return false;

}

if(!first)

{

outputRow = RowDataUtil.addRowData(previousRow, getInputRowMeta().size(), data.getFalseArray());

putRow(data.outputRowMeta, outputRow); // copy row to output rowset(s);

if (log.isRowLevel()) {

logRowlevel(BaseMessages.getString(PKG, "DetectLastRow.Log.WroteRowToNextStep")+data.outputRowMeta.getString(outputRow)); //$NON-NLS-1$

}

if (checkFeedback(getLinesRead())) {

logBasic(BaseMessages.getString(PKG, "DetectLastRow.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

// keep track of the current row

previousRow = r;

if (first) first = false;

return true;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:65,

示例13: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

/**

* Column number where the input value is stored

*/

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi)

throws KettleException

{

Object[] row = getRow();

if (row == null)

{

setOutputDone();

return false;

}

if (first) {

first = false;

numberRange = new NumberRangeSet(meta.getRules(), meta.getFallBackValue());

data.outputRowMeta = (RowMetaInterface) getInputRowMeta().clone();

// Prepare output fields

meta.getFields(data.outputRowMeta, getStepname(), null, null,this);

// Find column numbers

data.inputColumnNr = data.outputRowMeta.indexOfValue(meta.getInputField());

// Check if a field was not available

if (data.inputColumnNr < 0) {

logError("Field for input could not be found: "+ meta.getInputField());

return false;

}

}

try {

// get field value

Double value = getInputRowMeta().getNumber(row,data.inputColumnNr);

// return range

String ranges = numberRange.evaluate(value);

// add value to output

row = RowDataUtil.addRowData(row, getInputRowMeta().size(),new Object[] { ranges });

putRow(data.outputRowMeta, row);

if (checkFeedback(getLinesRead()))

{

if(log.isDetailed()) logDetailed(BaseMessages.getString(PKG, "NumberRange.Log.LineNumber")+getLinesRead()); //$NON-NLS-1$

}

}

catch(KettleException e)

{

boolean sendToErrorRow=false;

String errorMessage = null;

if (getStepMeta().isDoingErrorHandling())

{

sendToErrorRow = true;

errorMessage = e.toString();

}

else

{

logError(BaseMessages.getString(PKG, "NumberRange.Log.ErrorInStepRunning")+e.getMessage()); //$NON-NLS-1$

setErrors(1);

stopAll();

setOutputDone(); // signal end to receiver(s)

return false;

}

if (sendToErrorRow)

{

// Simply add this row to the error row

putError(getInputRowMeta(), row, 1, errorMessage, null, "NumberRange001");

}

}

return true;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:73,

示例14: getRowData

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private Object[] getRowData() throws KettleException {

// Build an empty row based on the meta-data

Object[] outputRowData=null;

try {

// Create new row...

outputRowData = data.yaml.getRow(data.rowMeta);

if(outputRowData==null) return null;

if(data.readrow!=null) {

outputRowData=RowDataUtil.addRowData(data.readrow, data.totalPreviousFields, outputRowData);

}else {

outputRowData=RowDataUtil.resizeArray(outputRowData, data.totalOutStreamFields);

}

int rowIndex = data.totalOutFields;

// See if we need to add the filename to the row...

if ( meta.includeFilename() && !Const.isEmpty(meta.getFilenameField()) ) {

outputRowData[rowIndex++] = KettleVFS.getFilename(data.file);

}

// See if we need to add the row number to the row...

if (meta.includeRowNumber() && !Const.isEmpty(meta.getRowNumberField())) {

outputRowData[rowIndex++] = new Long(data.rownr);

}

} catch (Exception e) {

boolean sendToErrorRow=false;

String errorMessage=null;

if (getStepMeta().isDoingErrorHandling()) {

sendToErrorRow = true;

errorMessage = e.toString();

} else {

logError(BaseMessages.getString(PKG, "YamlInput.ErrorInStepRunning",e.toString())); //$NON-NLS-1$

setErrors(1);

stopAll();

logError(Const.getStackTracker(e));

setOutputDone(); // signal end to receiver(s)

}

if (sendToErrorRow) {

// Simply add this row to the error row

putError(getInputRowMeta(), outputRowData, 1, errorMessage, null, "YamlInput001");

}

}

return outputRowData;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:49,

示例15: handleLastOfGroup

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

private void handleLastOfGroup() throws KettleException {

if (meta.passAllRows()) // ALL ROWS

{

if (data.previous!=null)

{

calcAggregate(data.previous);

addToBuffer(data.previous);

}

data.groupResult = getAggregateResult();

Object[] row = getRowFromBuffer();

long lineNr=0;

while (row!=null)

{

int size = data.inputRowMeta.size();

row=RowDataUtil.addRowData(row, size, data.groupResult);

size+=data.groupResult.length;

lineNr++;

if (meta.isAddingLineNrInGroup() && !Const.isEmpty(meta.getLineNrInGroupField()))

{

Object lineNrValue= new Long(lineNr);

// ValueMetaInterface lineNrValueMeta = new ValueMeta(meta.getLineNrInGroupField(), ValueMetaInterface.TYPE_INTEGER);

// lineNrValueMeta.setLength(9);

row=RowDataUtil.addValueData(row, size, lineNrValue);

size++;

}

addCumulativeSums(row);

addCumulativeAverages(row);

putRow(data.outputRowMeta, row);

row = getRowFromBuffer();

}

closeInput();

}

else // JUST THE GROUP + AGGREGATE

{

// Don't forget the last set of rows...

if (data.previous!=null)

{

calcAggregate(data.previous);

}

Object[] result = buildResult(data.previous);

if (result!=null) {

putRow(data.groupAggMeta, result);

}

}

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:52,

示例16: processRow

​點讚 2

import org.pentaho.di.core.row.RowDataUtil; //導入方法依賴的package包/類

public boolean processRow(StepMetaInterface smi, StepDataInterface sdi) throws KettleException {

Object[] row;

Object[] rowIn=null;

if (data.readsRows) {

rowIn=getRow();

if (rowIn==null) {

setOutputDone();

return false;

}

if (first){

first=false;

data.prevNrField= getInputRowMeta().size();

data.outputRowMeta = getInputRowMeta().clone();

meta.getFields(data.outputRowMeta, getStepname(), null, null, this);

}

}else {

if (first) {

first = false;

data.outputRowMeta = new RowMeta();

meta.getFields(data.outputRowMeta, getStepname(), null, null,this);

}

}

for(int i=0; i< data.nr && !isStopped(); i++) {

for(int j=0; j

// Create a new row

row = buildEmptyRow();

incrementLinesRead();

int index=0;

try{

// Return secret key

if(meta.isOutputKeyInBinary()) {

row[index++] = data.cryptoTrans[i].generateKey(data.secretKeyLen[i]) ;

}else {

row[index++] = data.cryptoTrans[i].generateKeyAsHex(data.secretKeyLen[i]) ;

}

}catch(CryptoException k) {

throw new KettleException(BaseMessages.getString(PKG,"SecretKeyGenerator.KeyGenerationError", i), k);

}

if(data.addAlgorithmOutput) {

// add algorithm

row[index++]=meta.getAlgorithm()[i];

}

if(data.addSecretKeyLengthOutput) {

// add secret key len

row[index++]= new Long(data.secretKeyLen[i]);

}

if(data.readsRows) {

// build output row

row= RowDataUtil.addRowData(rowIn, data.prevNrField, row);

}

if (isRowLevel()) logRowlevel(BaseMessages.getString(PKG, "SecretKeyGenerator.Log.ValueReturned",data.outputRowMeta.getString(row)));

putRow(data.outputRowMeta, row);

}

}

setOutputDone();

return false;

}

開發者ID:yintaoxue,項目名稱:read-open-source-code,代碼行數:74,

注:本文中的org.pentaho.di.core.row.RowDataUtil.addRowData方法示例整理自Github/MSDocs等源碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/555867.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

properties配置文件的加密

要完成properties属性文件某些属性值的加密&#xff0c;和读取属性文件时进行解密&#xff0c;需要4个步骤 编写加密解密工具类手动通过加密解密工具类获得加密后的属性值密文&#xff0c;并把密文填写在properties文件中编写PropertyPlaceholderConfigurer的子类&#xff0c;…

【springmvc】@RequestParam详解以及加与不加的区别

以前写controller层的时候都是默认带上 RequestParam 的&#xff0c; 今天发现不加RequestParam 也能接收到参数 下面我们来区分一下加与不加的区别 这里有两种写法 RequestMapping("/list")public String test(RequestParam Long parentId) {}RequestMapping(&qu…

java同样作用的方法_Java的接口用途和方法

1&#xff0c; 抽象类解决不了, 根本问题是Java的类不能多继承.因为Tiger类继承了动物Animal类的特性(例如 move() 和 drink()) , 但是严格上来将 捕猎(hunt())并不算是动物的特性之一. 有些植物, 单细胞生物也会捕猎的.所以Tiger要从别的地方来继承Hunt()这个方法. 接口就发挥…

有了 IP 地址,为什么还要用 MAC 地址?

我认为&#xff0c;IP地址和MAC地址可以类比生活中寄快递的过程。 在整个网络中数据被封装成数据报文进行发送&#xff0c;就像我们生活中寄快递时将物品放进包裹中。而数据在路由器之间的跳转也可以看作是不同地区快递小哥对物流的交接。 IP地址 ip地址等价于快递包裹上的…

java运动员最佳配对_运动员最佳配对问题 - osc_y1pyjby5的个人空间 - OSCHINA - 中文开源技术交流社区...

这道题可以看为排列数的一个典型模块一、算法实现题&#xff1a;1、问题描述&#xff1a;羽毛球队有男女运动员各n人&#xff0c;给定2个nn矩阵P和Q。P[i][j]是男运动员i和女运动员j配对组成混合双打的男运动员竞赛优势&#xff1b;Q[i][j]则是女运动员i和男运动员j配合的女运动…

为什么POJO中变量不能用is开头

一、前言 在阿里编码规约中&#xff0c;有一个约定如下 【强制】POJO 类中的任何布尔类型的变量&#xff0c;都不要加 is 前缀&#xff0c;否则部分框架解析会引起序列 化错误。 但为什么类中的field不能用is开头呢&#xff1f;本文将从问题演示、框架源码&#xff08;本文使用…

java用NIO实现文件传输_Java Nio 实现文件的传输

使用Java Nio实现文件的传输1、ServerSocket.javapackage ch2;import java.io.File;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.net.InetSocketAddress;import java.nio.ByteBuffer;import java.nio.chann…

什么是RPC?RPC框架dubbo的核心流程

一、REST 与 RPC&#xff1a; 1、什么是 REST 和 RPC 协议&#xff1a; ​ 在单体应用中&#xff0c;各模块间的调用是通过编程语言级别的方法函数来实现&#xff0c;但分布式系统运行在多台机器上&#xff0c;一般来说&#xff0c;每个服务实例都是一个进程&#xff0c;服务…

zap安装提示java_使用API调用进行ZAP身份验证

我正在使用ZAP API调用来使用命令行测试站点 . 但即使我遵循正确的步骤&#xff0c;我的用户身份验证也有问题 . 但是当蜘蛛作为用户时&#xff0c;我仍然无法设法通过登录页面 . 以下是我要介绍的步骤 .1.包含在上下文中(context / includeContext)2.更改认证方法以形成基础 .…

MySQL 中 count(*) 和 count(1) 有什么区别?哪个性能最好?

当我们对一张数据表中的记录进行统计的时候&#xff0c;习惯都会使用 count 函数来统计&#xff0c;但是 count 函数传入的参数有很多种&#xff0c;比如 count(1)、count(*)、count(字段) 等。 到底哪种效率是最好的呢&#xff1f;是不是 count(*) 效率最差&#xff1f; 我曾…

java中有ClockPane类吗_Java程序设计教程 冶金工业出版社第9章

第9章多线程与Applet//例程9-1&#xff1a;Pi.java/*演示采用多线程技术计算圆周率*/public class Pi{public static void main(String[] args){PiCaculator pc new PiCaculator();Thread t new Thread(pc);t.start();try{Thread.sleep (10000); //休眠&#xff0c;等待可能出…

Spring Boot为什么不需要额外安装Tomcat?

首次接触 Spring Boot 的时候&#xff0c;绝大多数小伙伴应该和我一样好奇&#xff1a; 为什么 Spring Boot 不需要额外安装 Tomcat 啊&#xff1f; 到底为什么呢&#xff1f;让我们带着好奇心开始今天的旅程吧。 打开上一节我们搭建好的 tobebetterjavaer 项目&#xff0c;找…

azure webjob java_使用 WebJobs 运行后台任务 | Azure Docs

在 Azure 应用服务中使用 WebJobs 运行后台任务Run background tasks with WebJobs in Azure App Service10/19/2020本文内容本文介绍如何使用 Azure 门户部署 WebJobs&#xff0c;以便上传可执行文件或脚本。This article shows how to deploy WebJobs by using the Azure por…

适合程序员的画图工具

最近很多读者私信问我&#xff0c;我图解文章中用到的画图工具、思维导图工具、代码贴图工具是什么&#xff1f; 我在很早的时候提到过&#xff0c;不过时间有点久了&#xff0c;而且比较零散&#xff0c;可能现在大部分读者还不知道。 我今天统一整理一下&#xff0c;我图解…

go加载python_python培训 | python调用go语言来提速

在写一些对性能要求十分严格的功能的时候&#xff0c;python往往力不从心。毕竟是一个解释性的语言&#xff0c;没有办法和变异性的语言去比较速度和内存占用率。但是python的本身的特定就使得我们可以将耗时的操作移交给编译性的语言去实现。由于项目上的关系&#xff0c;需要…

Spring Boot框架中使用Jackson的处理总结

1.前言 通常我们在使用Spring Boot框架时&#xff0c;如果没有特别指定接口的序列化类型&#xff0c;则会使用Spring Boot框架默认集成的Jackson框架进行处理&#xff0c;通过Jackson框架将服务端响应的数据序列化成JSON格式的数据。 本文主要针对在Spring Boot框架中使用Jac…

SpringBoot中对输出的json按字典表排序

SpringBoot中对输出的json按字典表排序 springboot默认的json处理为jackson。 如果是全局设置&#xff0c;在application.properties中添加spring.jackson.mapper.sort-properties-alphabeticallytrue

Java hdfs连接池_Java使用连接池管理Hdfs连接

记录一下Java API 连接hadoop操作hdfs的实现流程(使用连接池管理)。以前做过这方面的开发&#xff0c;本来以为不会有什么问题&#xff0c;但是做的还是坑坑巴巴&#xff0c;内心有些懊恼&#xff0c;记录下这烦人的过程&#xff0c;警示自己切莫眼高手低&#xff01;一&#x…

为了拿捏 Redis 数据结构,我画了 40 张图(完整版)

Redis 为什么那么快&#xff1f; 除了它是内存数据库&#xff0c;使得所有的操作都在内存上进行之外&#xff0c;还有一个重要因素&#xff0c;它实现的数据结构&#xff0c;使得我们对数据进行增删查改操作时&#xff0c;Redis 能高效的处理。 因此&#xff0c;这次我们就来…

java put set_Java PutItemRequest.setItem方法代码示例

import com.amazonaws.services.dynamodbv2.model.PutItemRequest; //导入方法依赖的package包/类public List reindex(T instance) throws DataStoreException {DynamoClassMapping tableInfo getClassMapping(instance);log.debug("reindex {}", instance.getClas…