Class BlutdruckdatenCSVImporter

java.lang.Object
org.tquadrat.bloodpressure.spi.DataImporterBase
org.tquadrat.bloodpressure.importer.BlutdruckdatenCSVImporter
All Implemented Interfaces:
DataImporter

@ClassVersion(sourceVersion="$Id: BlutdruckdatenCSVImporter.java 120 2022-02-10 18:58:05Z tquadrat $") @API(status=STABLE, since="0.0.1") public final class BlutdruckdatenCSVImporter extends DataImporterBase
The implementation of DataImporter for CSV files from the site "blutdruckdaten.de"-
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: BlutdruckdatenCSVImporter.java 120 2022-02-10 18:58:05Z tquadrat $
Since:
0.0.1
UML Diagram
UML Diagram for "org.tquadrat.bloodpressure.importer.BlutdruckdatenCSVImporter"

UML Diagram for "org.tquadrat.bloodpressure.importer.BlutdruckdatenCSVImporter"

UML Diagram for "org.tquadrat.bloodpressure.importer.BlutdruckdatenCSVImporter"
  • Field Details

    • DEFAULT_ENCODING

      public static final Charset DEFAULT_ENCODING
      The default encoding.
    • PATTERN

      public static final String PATTERN
      The pattern that is used to parse a data line: "\"([0-9]{2}.[0-9]{2}.[0-9]{4})\",\"([0-9]{2}:[0-9]{2})\",\"([0-9]{1,3})\",\"([0-9]{1,3})\",\"[0-9]{0,3}\",\".*\",\".*\",\".*\",\".*\",\".*\",\".*\",\"([xX]?)\",.*".
      See Also:
    • m_Pattern

      private static final Pattern m_Pattern
      The instance of Pattern that hold the compiled pattern for parsing a data line.
  • Constructor Details

  • Method Details

    • parse

      public final Collection<DataRecord> parse(URI source, ZoneId timezone, Charset encoding) throws IOException
      Parses the data on the given source location and returns a collection of DataRecord instance.
      Specified by:
      parse in interface DataImporter
      Specified by:
      parse in class DataImporterBase
      Parameters:
      source - The location for the source data.
      timezone - The time zone for the timestamp on the source data.
      encoding - The encoding of the source data.
      Returns:
      The data records.
      Throws:
      IOException - Something went wrong while pulling the data from the source.
    • parseLine

      private final DataRecord parseLine(String line, DateTimeFormatter dateParser, ZoneId timezone)
      Parses the given line.
      Parameters:
      line - The line to parse.
      dateParser - The DateTimeFormatter that is used to parse the timestamp.
      timezone - The time zone for the timestamp on the source data.
      Returns:
      The resulting data record.