java.lang.Object
com.pervasive.datarush.operators.io.textfile.FixedTextFormat
- All Implemented Interfaces:
DataFormat
Describes the format of a fixed text file. Normally, it is not necessary
construct these directly. Instead, use
ReadFixedText and
WriteFixedText to access data stored as fixed text.-
Nested Class Summary
Nested classes/interfaces inherited from interface com.pervasive.datarush.operators.io.DataFormat
DataFormat.DataFormatter, DataFormat.DataParser -
Constructor Summary
ConstructorsConstructorDescriptionFixedTextFormat(FixedWidthTextRecord schema, String recordSeparator, CharsetEncoding encoding) Create a data format for accessing fixed text data.FixedTextFormat(FixedWidthTextRecord schema, String recordSeparator, CharsetEncoding encoding, String lineComment) Create a data format for accessing fixed text data. -
Method Summary
Modifier and TypeMethodDescriptioncreateParser(ParsingOptions options) Create a new parser for the format using the specified parsing options.createWriter(FormattingOptions options) Create a new writer for the format using the specified formatting options.Gets the metadata associated with the format.getType()Gets the record type associated with the format.booleanIndicates if the format supports parsing of subsections of a file.readMetadata(FileClient fileClient, ByteSource source) Reads the metadata associated with the format.voidsetMetadata(FileMetadata metadata) Sets the metadata associated with the format.voidwriteMetadata(FileMetadata metadata, FileClient fileClient, ByteSink target) Writes the provided metadata associated with the format.
-
Constructor Details
-
FixedTextFormat
public FixedTextFormat(FixedWidthTextRecord schema, String recordSeparator, CharsetEncoding encoding) Create a data format for accessing fixed text data. The text is assumed to use '#' as the line comment marker.- Parameters:
schema- the schema to use for records. This provides fields name and offsets as well as formatting information for field values.recordSeparator- characters to use as a separator between recordsencoding- character set definition for data encoding in the text
-
FixedTextFormat
public FixedTextFormat(FixedWidthTextRecord schema, String recordSeparator, CharsetEncoding encoding, String lineComment) Create a data format for accessing fixed text data.- Parameters:
schema- the schema to use for records. This provides fields name and offsets as well as formatting information for field values.recordSeparator- characters to use as a separator between recordsencoding- character set definition for data encodinglineComment- characters used to indicate line comments in the text
-
-
Method Details
-
getType
Description copied from interface:DataFormatGets the record type associated with the format. Records produced by the associated parser or consumed by the associated formatter will be of this type.For many formats, this may be derived from a schema object describing the format layout.
- Specified by:
getTypein interfaceDataFormat- Returns:
- the format's record type
-
getMetadata
Description copied from interface:DataFormatGets the metadata associated with the format. Records produces by the associated parser or consumed by the associated formatter will use this metadata.- Specified by:
getMetadatain interfaceDataFormat- Returns:
- the format's metadata
-
setMetadata
Description copied from interface:DataFormatSets the metadata associated with the format.- Specified by:
setMetadatain interfaceDataFormat
-
readMetadata
Description copied from interface:DataFormatReads the metadata associated with the format.- Specified by:
readMetadatain interfaceDataFormat- Parameters:
fileClient- client used to read filesource- location of the files
-
writeMetadata
Description copied from interface:DataFormatWrites the provided metadata associated with the format.- Specified by:
writeMetadatain interfaceDataFormat- Parameters:
metadata- the metadata to writefileClient- client used to write file
-
createParser
Description copied from interface:DataFormatCreate a new parser for the format using the specified parsing options.- Specified by:
createParserin interfaceDataFormat- Parameters:
options- parsing options to use- Returns:
- a new parser for reading external data
-
createWriter
Description copied from interface:DataFormatCreate a new writer for the format using the specified formatting options.- Specified by:
createWriterin interfaceDataFormat- Parameters:
options- formatting options to use- Returns:
- a new formatter for writing external data
-
isSplittable
public boolean isSplittable()Indicates if the format supports parsing of subsections of a file.A format should only return
trueif it can, at least in some situations, support this sort of parsing. If a format requires reading the entire file, it must returnfalse.If a format is not splittable, a file in the format cannot be parsed in parallel; however, individual files can still be parsed independently in parallel, as when reading the contents of a directory or using a file globbing pattern.
Fixed text is always splittable.
- Specified by:
isSplittablein interfaceDataFormat- Returns:
trueif the format supports parsing only a portion of the file,falseotherwise
-