view flys-backend/src/main/java/de/intevation/flys/importer/PegelGltParser.java @ 184:4ab2c3bd474c

Added parsing of PEGEL.GLT files. flys-backend/trunk@1501 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Sascha L. Teichmann <sascha.teichmann@intevation.de>
date Thu, 17 Mar 2011 15:21:50 +0000
parents
children a60edcfe5f53
line wrap: on
line source
package de.intevation.flys.importer;

import java.io.File;

import java.util.List;
import java.util.ArrayList;

import java.util.regex.Pattern;
import java.util.regex.Matcher;

import java.io.IOException;
import java.io.LineNumberReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;

import org.apache.log4j.Logger;

import de.intevation.flys.utils.FileTools;

public class PegelGltParser
{
    private static Logger log = Logger.getLogger(InfoGewParser.class);

    public static final String ENCODING = "ISO-8859-1";

    public static final String KM = "km:";

    protected List<ImportGauge> gauges;

    public PegelGltParser() {
        gauges = new ArrayList<ImportGauge>();
    }

    public List<ImportGauge> getGauges() {
        return gauges;
    }

    public void parse(File file) throws IOException {

        File parent = file.getParentFile();

        log.info("parsing GLT file '" + file + "'");
        LineNumberReader in = null;
        try {
            in =
                new LineNumberReader(
                new InputStreamReader(
                new FileInputStream(file), ENCODING));

            String line = null;
            while ((line = in.readLine()) != null) {
                if ((line = line.trim()).length() == 0) {
                    continue;
                }

                int kmPos = line.indexOf(KM);
                if (kmPos < 0) {
                    log.warn("no gauge found in line " + in.getLineNumber());
                    continue;
                }

                String gaugeName = line.substring(0, kmPos).trim();
                log.info("Found gauge '" + gaugeName + "'");

                line = line.substring(kmPos + KM.length()).trim();

                String [] parts = line.split("\\s+");
                if (parts.length < 4) {
                    log.warn("line " + in.getLineNumber() 
                        + " has not enough columns");
                    continue;
                }

                double from = Double.parseDouble(parts[0].replace(",", "."));
                double to   = Double.parseDouble(parts[1].replace(",", "."));
                if (to < from) { double t = from; from = to; to = t; }
                File staFile = FileTools.repair(new File(parent, parts[2]));
                File atFile  = FileTools.repair(new File(parent, parts[3]));

                if (log.isDebugEnabled()) {
                    log.debug("\tfrom: " + from);
                    log.debug("\tto: " + to);
                    log.debug("\tsta: " + staFile);
                    log.debug("\tat: " + atFile);
                }

                gauges.add(new ImportGauge(from, to, staFile, atFile));
            }
        }
        finally {
            if (in != null) {
                in.close();
            }
        }
    }

}
// vim:set ts=4 sw=4 si et sta sts=4 fenc=utf8 :

http://dive4elements.wald.intevation.org