Package org.jallinone.system.importdata.server

Source Code of org.jallinone.system.importdata.server.CSVRowProcessor

package org.jallinone.system.importdata.server;

import java.io.*;
import org.jallinone.system.importdata.java.ImportDescriptorVO;
import java.util.*;
import org.jallinone.system.importdata.java.ETLProcessFieldVO;
import java.util.List;
import org.jallinone.system.importdata.java.CSVUtils;


/**
  * <p>Title: JAllInOne ERP/CRM application</p>
  * <p>Description: Row processor, used to read a CSV file to import, one row per time.</p>
  * <p>Copyright: Copyright (C) 2006 Mauro Carniel</p>
  *
  * <p> This file is part of JAllInOne ERP/CRM application.
  * This application is free software; you can redistribute it and/or
  * modify it under the terms of the (LGPL) Lesser General Public
  * License as published by the Free Software Foundation;
  *
  *                GNU LESSER GENERAL PUBLIC LICENSE
  *                 Version 2.1, February 1999
  *
  * This application is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Library General Public License for more details.
  *
  * You should have received a copy of the GNU Library General Public
  * License along with this library; if not, write to the Free
  * Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
  *       The author may be contacted at:
  *           maurocarniel@tin.it</p>
  *
  * @author Mauro Carniel
  * @version 1.0
  */
public class CSVRowProcessor extends RowProcessor {

  private BufferedReader br = null;

  /** delimiter character written */
  protected String delim = null;

  /** current row content */
  private ArrayList row = new ArrayList();



  public CSVRowProcessor(String delim) {
    this.delim = delim;
  }


/**
  * Open file to process.
  */
  public void openFile(InputStream in) throws Throwable {
    br = new BufferedReader(new InputStreamReader(in));
  }


  /**
   * Read the next row from file.
   * param indexes collection of couples <field name,Class type of the field">
   * @return null if no rows are available or the current row otherwise
   */
  public Object[] getNextRow(List fields,ImportDescriptorVO fileDescrVO,HashMap indexes) throws Throwable {

    // check EOF
    String line = br.readLine();
    if (line == null || line.trim().length()==0 ){
      if (line == null)
      return null;
    }

    boolean bContinue = true;
    int i = 0;
    int j = 0;
    String value = null;
    row.clear();
    while(bContinue){
      int ind = line.indexOf(delim,j);
      if(ind == -1){
        ind = line.length();
        bContinue = false;
        if (j>ind)
          continue;
      } else {
        // found separator: check if pattern has an odd number of " 'til the separator...
        if (CSVUtils.isOdd(line,j,ind)) {
          // e.g. "xyz;xyz";
          ind = CSVUtils.getRightEdge(line,ind); // ind = index of character next to the right delimiter "
        }

      }

      value = ind==line.length()?
              line.substring(j) :
              line.substring(j,ind);
      value = CSVUtils.decodePattern(value); // replace patterns "" with "
      j =  ind+1;

      row.add(value);
    }


    ETLProcessFieldVO vo = null;
    Object[] values = new Object[fields.size()];
    for(i=0;i<fields.size();i++) {
      vo = (ETLProcessFieldVO)fields.get(i);
      values[i] = convertObj(
        true,
        vo.getDateFormatSYS24(),
        row.get(vo.getPosSYS24().intValue()-1),
        (Class)indexes.get(vo.getFieldNameSYS24())
      );
    }
    return values;
  }


//  ETLProcessFieldVO inputCol = null;
//  for(int i=0;i<fields.size();i++) {
//    vo = (ETLProcessFieldVO)fields.get(i);
//    i++;
//  }


  /**
   * Close file.
   */
  public void closeFile() throws Throwable {
    br.close();
  }



}
TOP

Related Classes of org.jallinone.system.importdata.server.CSVRowProcessor

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.