Class JavaClassAnalyzer

java.lang.Object
org.apache.lucene.analysis.Analyzer
org.opengrok.indexer.analysis.AbstractAnalyzer
org.opengrok.indexer.analysis.FileAnalyzer
org.opengrok.indexer.analysis.executables.JavaClassAnalyzer
All Implemented Interfaces:
Closeable, AutoCloseable

public class JavaClassAnalyzer extends FileAnalyzer
Analyzes Java Class files. Created on September 23, 2005
Author:
Chandan, Lubos Kosco , January 2010 , updated bcel, comment on thread safety
  • Constructor Details

    • JavaClassAnalyzer

      protected JavaClassAnalyzer(AnalyzerFactory factory)
      Creates a new instance of JavaClassAnalyzer.
      Parameters:
      factory - The factory that creates JavaClassAnalyzers
  • Method Details

    • getCtagsLang

      public String getCtagsLang()
      Description copied from class: AbstractAnalyzer
      Subclasses should override to return the case-insensitive name aligning with either a built-in Universal Ctags language name or an OpenGrok custom language name.
      Overrides:
      getCtagsLang in class FileAnalyzer
      Returns:
      null as there is no aligned language
    • getSpecializedVersionNo

      protected int getSpecializedVersionNo()
      Gets a version number to be used to tag processed documents so that re-analysis can be re-done later if a stored version number is different from the current implementation.
      Overrides:
      getSpecializedVersionNo in class AbstractAnalyzer
      Returns:
      20180612_00
    • analyze

      public void analyze(org.apache.lucene.document.Document doc, StreamSource src, Writer xrefOut) throws IOException
      Description copied from class: FileAnalyzer
      Analyze the contents of a source file. This includes populating the Lucene document with fields to add to the index, and writing the cross-referenced data to the specified destination.
      Overrides:
      analyze in class FileAnalyzer
      Parameters:
      doc - the Lucene document
      src - the input data source
      xrefOut - where to write the xref (may be null)
      Throws:
      IOException - if any I/O error
    • linkPath

      protected String linkPath(String path)
    • linkDef

      protected String linkDef(String def)
    • tagDef

      protected String tagDef(String def)
    • constantToString

      public String constantToString(org.apache.bcel.classfile.Constant c, org.apache.bcel.classfile.ConstantPool cp, int[] v) throws org.apache.bcel.classfile.ClassFormatException
      Throws:
      org.apache.bcel.classfile.ClassFormatException