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

com.univocity.parsers.common.AbstractParser Maven / Gradle / Ivy

Go to download

univocity's open source parsers for processing different text formats using a consistent API

There is a newer version: 2.9.1
Show newest version
/*******************************************************************************
 * Copyright 2014 uniVocity Software Pty Ltd
 *
 * 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 com.univocity.parsers.common;

import java.io.*;
import java.util.*;

import com.univocity.parsers.common.input.*;
import com.univocity.parsers.common.processor.*;

/**
 * The AbstractParser class provides a common ground for all parsers in uniVocity-parsers.
 *
 * It handles all settings defined by {@link CommonParserSettings}, and delegates the parsing algorithm implementation to its subclasses through the abstract method {@link AbstractParser#parseRecord()}
 *
 * 

The following (absolutely required) attributes are exposed to subclasses: *

    *
  • input ({@link CharInputReader}): the character input provider that reads characters from a given input into an internal buffer
  • *
  • output ({@link ParserOutput}): the output handler for every record parsed from the input. Implementors must use this object to handle the input (such as appending characters and notifying of values parsed)
  • *
  • ch (char): the current character read from the input
  • *
* * @see com.univocity.parsers.csv.CsvParser * @see com.univocity.parsers.csv.CsvParserSettings * @see com.univocity.parsers.fixed.FixedWidthParser * @see com.univocity.parsers.fixed.FixedWidthParserSettings * @see com.univocity.parsers.common.input.CharInputReader * @see com.univocity.parsers.common.ParserOutput * * @param The specific parser settings configuration class, which can potentially provide additional configuration options supported by the parser implementation. * * @author uniVocity Software Pty Ltd - [email protected] */ public abstract class AbstractParser> { private final DefaultParsingContext context; private final RowProcessor processor; private final int recordsToRead; private final char comment; protected final CharInputReader input; protected final ParserOutput output; protected char ch; /** * All parsers must support, at the very least, the settings provided by {@link CommonParserSettings}. The AbstractParser requires its configuration to be properly initialized. * @param settings the parser configuration */ public AbstractParser(T settings) { this.input = settings.newCharInputReader(); this.output = new ParserOutput(settings); this.processor = settings.getRowProcessor(); this.context = new DefaultParsingContext(input, output); this.recordsToRead = settings.getNumberOfRecordsToRead(); this.comment = settings.getFormat().getComment(); } /** * Parser-specific implementation for reading a single record from the input. * *

The AbstractParser handles the initialization and processing of the input until it is ready to be parsed. *

It then delegates the input to the parser-specific implementation defined by {@link AbstractParser#parseRecord()}. In general, an implementation of {@link AbstractParser#parseRecord()} will perform the following steps: *

    *
  • Test the character stored in ch and take some action on it (e.g. is while (ch != '\n'){doSomething()})
  • *
  • Request more characters by calling ch = input.nextChar();
  • *
  • Append the desired characters to the output by executing, for example, output.appender.append(ch)
  • *
  • Notify a value of the record has been fully read by executing output.valueParsed(). This will clear the output appender ({@link CharAppender}) so the next call to output.appender.append(ch) will be store the character of the next parsed value
  • *
  • Rinse and repeat until all values of the record are parsed
  • *
* *

Once the {@link AbstractParser#parseRecord()} returns, the AbstractParser takes over and handles the information (generally, reorganizing it and passing it on to a {@link RowProcessor}). *

After the record processing, the AbstractParser reads the next characters from the input, delegating control again to the parseRecord() implementation for processing of the next record. *

This cycle repeats until the reading process is stopped by the user, the input is exhausted, or an error happens. * *

In case of errors, the unchecked exception {@link TextParsingException} will be thrown and all resources in use will be closed automatically. The exception should contain the cause and more information about where in the input the error happened. * * @see com.univocity.parsers.common.input.CharInputReader * @see com.univocity.parsers.common.input.CharAppender * @see com.univocity.parsers.common.ParserOutput * @see com.univocity.parsers.common.TextParsingException * @see com.univocity.parsers.common.processor.RowProcessor */ protected abstract void parseRecord(); /** * Parses the entirety of a given input and delegates each parsed row to an instance of {@link RowProcessor}, defined by {@link CommonParserSettings#getRowProcessor()}. * @param reader The input to be parsed. */ public final void parse(Reader reader) { beginParsing(reader); try { while (!context.stopped && (ch = input.nextChar()) != '\0') { if (ch == comment) { input.skipLines(1); continue; } output.clear(); parseRecord(); String[] row = output.rowParsed(); if (row != null) { processor.rowProcessed(row, context); if (recordsToRead > 0 && context.currentRecord() >= recordsToRead) { context.stop(); } } } } catch (Exception ex) { throw new TextParsingException(context, ex); } finally { stopParsing(); } } /** * Starts an iterator-style parsing cycle that does not rely in a {@link RowProcessor}. * The parsed records must be read one by one with the invocation of {@link AbstractParser#parseNext()}. * The user may invoke @link {@link AbstractParser#stopParsing()} to stop reading from the input. * * @param reader The input to be parsed. */ public final void beginParsing(Reader reader) { context.stopped = false; input.start(reader); processor.processStarted(context); } /** * Parses the next record from the input. Note that {@link AbstractParser#beginParsing(Reader)} must have been invoked once before calling this method. * If the end of the input is reached, then this method will return null. Additionally, all resources will be closed automatically at the end of the input or if any error happens while parsing. * * @return The record parsed from the input or null if there's no more characters to read. */ public final String[] parseNext() { try { while (!context.stopped && (ch = input.nextChar()) != '\0') { if (ch == comment) { input.skipLines(1); continue; } output.clear(); parseRecord(); String[] row = output.rowParsed(); if (row != null) { if (recordsToRead > 0 && context.currentRecord() >= recordsToRead) { context.stop(); } return row; } } stopParsing(); return null; } catch (Exception ex) { try { throw new TextParsingException(context, ex); } finally { stopParsing(); } } } /** * Stops parsing and closes all open resources. */ public final void stopParsing() { try { context.stop(); } finally { try { processor.processEnded(context); } finally { input.stop(); } } } /** * Parses all records from the input and returns them in a list. * * @param reader the input to be parsed * @return the list of all records parsed from the input. */ public final List parseAll(Reader reader) { List out = new ArrayList(10000); beginParsing(reader); String[] row = null; while ((row = parseNext()) != null) { out.add(row); } return out; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy