- java.lang.Object
-
- com.pervasive.datarush.operators.io.textfile.FormatAnalyzer
-
- com.pervasive.datarush.operators.io.textfile.ELFAnalyzer
-
public class ELFAnalyzer extends FormatAnalyzer
A format analyzer for Extended Log Format files. Will read up to the first non-header line to gain structure information about a ELF file.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ELFAnalyzer.ELFAnalysis
-
Nested classes/interfaces inherited from class com.pervasive.datarush.operators.io.textfile.FormatAnalyzer
FormatAnalyzer.FormatAnalysis
-
-
Constructor Summary
Constructors Constructor Description ELFAnalyzer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FormatAnalyzer.FormatAnalysis
analyze(Reader input)
Analyze the given character stream as log data.-
Methods inherited from class com.pervasive.datarush.operators.io.textfile.FormatAnalyzer
analyze, analyze, analyze
-
-
-
-
Method Detail
-
analyze
public FormatAnalyzer.FormatAnalysis analyze(Reader input) throws IOException, ParseException
Description copied from class:FormatAnalyzer
Analyze the given character stream as log data.- Overrides:
analyze
in classFormatAnalyzer
- Parameters:
input
- the data stream to analyze- Returns:
- the resulting analysis of the input
- Throws:
IOException
- if any I/O errors occur while reading the source fileParseException
- if the file cannot be parsed or is otherwise malformed
-
-