cht.Parser.java Source code

Java tutorial

Introduction

Here is the source code for cht.Parser.java

Source

/*
 Copyright [2013] [cwtuan]
    
 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 cht;

import org.apache.commons.io.FilenameUtils;
import org.apache.commons.lang3.StringEscapeUtils;

import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.Writer;
import java.util.HashMap;
import java.util.Properties;
import java.util.TreeMap;

public class Parser {
    static String value = "";

    public static void main(String[] args) throws IOException {

        // TODO get from google drive
        boolean isUnicode = false;
        boolean isRemoveInputFileOnComplete = false;
        int rowNum;
        int colNum;
        Gson gson = new GsonBuilder().setPrettyPrinting().create();

        Properties prop = new Properties();

        try {
            prop.load(new FileInputStream("config.txt"));
        } catch (IOException ex) {
            ex.printStackTrace();
        }

        String inputFilePath = prop.getProperty("inputFile");
        String outputDirectory = prop.getProperty("outputDirectory");
        System.out.println(outputDirectory);
        // optional
        String unicode = prop.getProperty("unicode");
        String removeInputFileOnComplete = prop.getProperty("removeInputFileOnComplete");

        inputFilePath = inputFilePath.trim();
        outputDirectory = outputDirectory.trim();

        if (unicode != null) {
            isUnicode = Boolean.parseBoolean(unicode.trim());
        }
        if (removeInputFileOnComplete != null) {
            isRemoveInputFileOnComplete = Boolean.parseBoolean(removeInputFileOnComplete.trim());
        }

        Writer out = null;
        FileInputStream in = null;
        final String newLine = System.getProperty("line.separator").toString();
        final String separator = File.separator;
        try {
            in = new FileInputStream(inputFilePath);

            Workbook workbook = new XSSFWorkbook(in);

            Sheet sheet = workbook.getSheetAt(0);

            rowNum = sheet.getLastRowNum() + 1;
            colNum = sheet.getRow(0).getPhysicalNumberOfCells();

            for (int j = 1; j < colNum; ++j) {
                String outputFilename = sheet.getRow(0).getCell(j).getStringCellValue();
                // guess directory
                int slash = outputFilename.indexOf('/');
                if (slash != -1) { // has directory
                    outputFilename = outputFilename.substring(0, slash) + separator
                            + outputFilename.substring(slash + 1);
                }

                String outputPath = FilenameUtils.concat(outputDirectory, outputFilename);
                System.out.println("--Writing " + outputPath);
                out = new OutputStreamWriter(new FileOutputStream(outputPath), "UTF-8");
                TreeMap<String, Object> map = new TreeMap<String, Object>();
                for (int i = 1; i < rowNum; i++) {
                    try {
                        String key = sheet.getRow(i).getCell(0).getStringCellValue();
                        //String value = "";
                        Cell tmp = sheet.getRow(i).getCell(j);
                        if (tmp != null) {
                            // not empty string!
                            value = sheet.getRow(i).getCell(j).getStringCellValue();
                        }
                        if (!key.equals("") && !key.startsWith("#") && !key.startsWith(".")) {
                            value = isUnicode ? StringEscapeUtils.escapeJava(value) : value;

                            int firstdot = key.indexOf(".");
                            String keyName, keyAttribute;
                            if (firstdot > 0) {// a.b.c.d 
                                keyName = key.substring(0, firstdot); // a
                                keyAttribute = key.substring(firstdot + 1); // b.c.d
                                TreeMap oldhash = null;
                                Object old = null;
                                if (map.get(keyName) != null) {
                                    old = map.get(keyName);
                                    if (old instanceof TreeMap == false) {
                                        System.out.println("different type of key:" + key);
                                        continue;
                                    }
                                    oldhash = (TreeMap) old;
                                } else {
                                    oldhash = new TreeMap();
                                }

                                int firstdot2 = keyAttribute.indexOf(".");
                                String rootName, childName;
                                if (firstdot2 > 0) {// c, d.f --> d, f
                                    rootName = keyAttribute.substring(0, firstdot2);
                                    childName = keyAttribute.substring(firstdot2 + 1);
                                } else {// c, d  -> d, null
                                    rootName = keyAttribute;
                                    childName = null;
                                }

                                TreeMap<String, Object> object = myPut(oldhash, rootName, childName);
                                map.put(keyName, object);

                            } else {// c, d  -> d, null
                                keyName = key;
                                keyAttribute = null;
                                // simple string mode
                                map.put(key, value);
                            }

                        }

                    } catch (Exception e) {
                        // just ingore empty rows
                    }

                }
                String json = gson.toJson(map);
                // output json
                out.write(json + newLine);
                out.close();
            }
            in.close();

            System.out.println("\n---Complete!---");
            System.out.println("Read input file from " + inputFilePath);
            System.out.println(colNum - 1 + " output files ate generated at " + outputDirectory);
            System.out.println(rowNum + " records are generated for each output file.");
            System.out.println("output file is ecoded as unicode? " + (isUnicode ? "yes" : "no"));
            if (isRemoveInputFileOnComplete) {
                File input = new File(inputFilePath);
                input.deleteOnExit();
                System.out.println("Deleted " + inputFilePath);
            }

        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (in != null) {
                in.close();
            }
        }

    }

    @SuppressWarnings("unchecked")
    static TreeMap<String, Object> myPut(TreeMap<String, Object> parentMap, String rootName, String leftName) {
        //int firstdot = key.indexOf(".");
        Object old = null;
        if (leftName == null || leftName.length() == 0) { // is Leaf
            // is string only
            parentMap.put(rootName, value);
            return parentMap;
        } else {
            TreeMap<String, Object> childMap = null;
            if (parentMap.get(rootName) != null) {
                old = parentMap.get(rootName);
                if (old instanceof TreeMap == false) {
                    System.out.println("different type of key:" + rootName);
                    return parentMap;
                }
                childMap = (TreeMap<String, Object>) old;
            } else {
                childMap = new TreeMap<String, Object>();
            }

            int firstdot = leftName.indexOf(".");
            String keyName, keyAttribute;
            if (firstdot > 0) {// c, d.f --> d, f
                keyName = leftName.substring(0, firstdot);
                keyAttribute = leftName.substring(firstdot + 1);
            } else {// c, d  -> d, null
                keyName = leftName;
                keyAttribute = null;
            }
            TreeMap<String, Object> object = myPut(childMap, keyName, keyAttribute);
            parentMap.put(rootName, object);
            return parentMap;
        }

    }
}