Class AbstractSourceCodeAnalyzer
java.lang.Object
org.apache.lucene.analysis.Analyzer
org.opengrok.indexer.analysis.AbstractAnalyzer
org.opengrok.indexer.analysis.FileAnalyzer
org.opengrok.indexer.analysis.TextAnalyzer
org.opengrok.indexer.analysis.plain.PlainAnalyzer
org.opengrok.indexer.analysis.plain.AbstractSourceCodeAnalyzer
- All Implemented Interfaces:
Closeable
,AutoCloseable
- Direct Known Subclasses:
AdaAnalyzer
,AsmAnalyzer
,CAnalyzer
,ClojureAnalyzer
,CSharpAnalyzer
,CxxAnalyzer
,EiffelAnalyzer
,ErlangAnalyzer
,FortranAnalyzer
,GolangAnalyzer
,HaskellAnalyzer
,HCLAnalyzer
,JavaAnalyzer
,JavaScriptAnalyzer
,JsonAnalyzer
,KotlinAnalyzer
,LispAnalyzer
,LuaAnalyzer
,PascalAnalyzer
,PerlAnalyzer
,PhpAnalyzer
,PowershellAnalyzer
,PythonAnalyzer
,RAnalyzer
,RubyAnalyzer
,RustAnalyzer
,ScalaAnalyzer
,ShAnalyzer
,SwiftAnalyzer
,TclAnalyzer
,TerraformAnalyzer
,TypeScriptAnalyzer
,VBAnalyzer
,VerilogAnalyzer
,YamlAnalyzer
- Author:
- Lubos Kosco This class should abstract all analysers that deal with source code. Source code is specific that it has definitions and references. Source code has custom xref generators, depending on symbols. This class should mark the classes that can provide defs and refs. NOTE: SymbolTokenizer gets set for #1376 in PlainAnalyzer::analyze and not part of this class anymore due to changes in lucene 6 . Anything shared just for source code analyzers should be here, also all interfaces for source code analyzer should start here. Any child is forced to provide necessary xref and symbol tokenizers, if it fails to do so it will automatically behave like PlainAnalyzer.
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opengrok.indexer.analysis.AbstractAnalyzer
AbstractAnalyzer.Genre
Nested classes/interfaces inherited from class org.apache.lucene.analysis.Analyzer
org.apache.lucene.analysis.Analyzer.ReuseStrategy, org.apache.lucene.analysis.Analyzer.TokenStreamComponents
-
Field Summary
Fields inherited from class org.opengrok.indexer.analysis.AbstractAnalyzer
countsAggregator, ctags, DUMMY_READER, factory, foldingEnabled, project, scopesEnabled, symbolTokenizerFactory
Fields inherited from class org.apache.lucene.analysis.Analyzer
GLOBAL_REUSE_STRATEGY, PER_FIELD_REUSE_STRATEGY
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotected
AbstractSourceCodeAnalyzer
(AnalyzerFactory factory, Supplier<JFlexTokenizer> symbolTokenizerFactory) Creates a new instance of abstract analyzer. -
Method Summary
Methods inherited from class org.opengrok.indexer.analysis.plain.PlainAnalyzer
analyze, getCtagsLang, getReader, getSpecializedVersionNo
Methods inherited from class org.opengrok.indexer.analysis.TextAnalyzer
writeXref
Methods inherited from class org.opengrok.indexer.analysis.FileAnalyzer
addNumLinesLOC, createComponents, getFileTypeName, getVersionNo, normalize, supportsScopes
Methods inherited from class org.opengrok.indexer.analysis.AbstractAnalyzer
getFactory, getGenre, setCountsAggregator, setCtags, setFoldingEnabled, setProject, setScopesEnabled
Methods inherited from class org.apache.lucene.analysis.Analyzer
attributeFactory, close, getOffsetGap, getPositionIncrementGap, getReuseStrategy, initReader, initReaderForNormalization, normalize, tokenStream, tokenStream
-
Constructor Details
-
AbstractSourceCodeAnalyzer
protected AbstractSourceCodeAnalyzer(AnalyzerFactory factory, Supplier<JFlexTokenizer> symbolTokenizerFactory) Creates a new instance of abstract analyzer.- Parameters:
factory
- defined instance for the analyzersymbolTokenizerFactory
- defined instance for the analyzer
-
-
Method Details
-
newXref
Create an xref for the language supported by this analyzer.- Overrides:
newXref
in classPlainAnalyzer
- Parameters:
reader
- the data to produce xref for- Returns:
- an xref instance
-