All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.pentaho.di.trans.steps.ivwloader.IngresVectorwiseLoaderData Maven / Gradle / Ivy

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.ivwloader;

import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;

import org.pentaho.di.core.row.RowMetaInterface;
import org.pentaho.di.core.util.StreamLogger;
import org.pentaho.di.trans.step.BaseStepData;
import org.pentaho.di.trans.step.StepDataInterface;
import org.pentaho.di.trans.steps.ivwloader.IngresVectorwiseLoader.FifoOpener;

/**
 * Stores data for the VectorWise bulk load step.
 *
 * @author Matt
 * @since 14-apr-2009
 */
public class IngresVectorwiseLoaderData extends BaseStepData implements StepDataInterface {
  public int[] keynrs; // nr of keylookup -value in row...

  public StreamLogger errorLogger;

  public StreamLogger outputLogger;

  public byte[] separator;
  public byte[] newline;

  public String schemaTable;

  public String fifoFilename;

  public FileChannel fileChannel;

  public IngresVectorwiseLoader.SqlRunner sqlRunner;

  public byte[] quote;

  public Process sqlProcess;

  public OutputStream sqlOutputStream;

  public FifoOpener fifoOpener;

  public boolean isEncoding;

  public String encoding;

  public ByteBuffer byteBuffer;

  public int bufferSize;

  public byte[] semicolon;

  public byte[] doubleQuote;

  public RowMetaInterface bulkRowMeta;

  /**
   * Default constructor.
   */
  public IngresVectorwiseLoaderData() {
    super();
  }

  public byte[] getBytes( String str ) {
    if ( isEncoding ) {
      try {
        return str.getBytes( encoding );
      } catch ( UnsupportedEncodingException e ) {
        throw new RuntimeException( e );
      }
    } else {
      return str.getBytes();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy