Class JavaParserUtil
- java.lang.Object
-
- org.checkerframework.framework.util.JavaParserUtil
-
public class JavaParserUtil extends java.lang.ObjectUtility methods for working with JavaParser. It is a replacement for StaticJavaParser that does not leak memory, and it provides some other methods.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classJavaParserUtil.StringLiteralConcatenateVisitorVisitor that combines added String literals, seeconcatenateAddedStringLiterals(com.github.javaparser.ast.Node).
-
Field Summary
Fields Modifier and Type Field Description static com.github.javaparser.ParserConfiguration.LanguageLevelDEFAULT_LANGUAGE_LEVELThe Language Level to use when parsing if a specific level isn't applied.
-
Constructor Summary
Constructors Constructor Description JavaParserUtil()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static voidclearAnnotations(com.github.javaparser.ast.Node node)Side-effectsnodeby removing all annotations from anywhere inside its subtree.static voidconcatenateAddedStringLiterals(com.github.javaparser.ast.Node node)Side-effects node by combining any added String literals in node's subtree into their concatenation.static com.github.javaparser.ParserConfiguration.LanguageLevelgetCurrentSourceVersion(javax.annotation.processing.ProcessingEnvironment env)Returns theParserConfiguration.LanguageLevelcorresponding to the current source version.static java.lang.StringgetFullyQualifiedName(com.github.javaparser.ast.body.TypeDeclaration<?> type, com.github.javaparser.ast.CompilationUnit compilationUnit)Returns the fully qualified name of a type appearing in a given compilation unit.static com.github.javaparser.ast.body.TypeDeclaration<?>getTypeDeclarationByName(com.github.javaparser.ast.CompilationUnit root, java.lang.String name)Given the compilation unit node for a source file, returns the top level type definition with the given name.static com.github.javaparser.ast.CompilationUnitparseCompilationUnit(java.io.File file)Parses the Java code contained in theFileand returns aCompilationUnitthat represents it.static com.github.javaparser.ast.CompilationUnitparseCompilationUnit(java.io.InputStream inputStream)Parses the Java code contained in theInputStreamand returns aCompilationUnitthat represents it.static com.github.javaparser.ast.CompilationUnitparseCompilationUnit(java.lang.String javaSource)Parses the Java code contained in theStringand returns aCompilationUnitthat represents it.static com.github.javaparser.ast.expr.ExpressionparseExpression(java.lang.String expression)Parses theexpressionand returns anExpressionthat represents it.static com.github.javaparser.ast.expr.ExpressionparseExpression(java.lang.String expression, com.github.javaparser.ParserConfiguration.LanguageLevel languageLevel)Parses theexpressionand returns anExpressionthat represents it.static com.github.javaparser.ast.StubUnitparseStubUnit(java.io.InputStream inputStream)Parses the stub file contained in theInputStreamand returns aStubUnitthat represents it.
-
-
-
Method Detail
-
parseCompilationUnit
public static com.github.javaparser.ast.CompilationUnit parseCompilationUnit(java.io.InputStream inputStream)
Parses the Java code contained in theInputStreamand returns aCompilationUnitthat represents it.This is like
StaticJavaParser.parse, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
inputStream- the Java source code- Returns:
- CompilationUnit representing the Java source code
- Throws:
com.github.javaparser.ParseProblemException- if the source code has parser errors
-
parseCompilationUnit
public static com.github.javaparser.ast.CompilationUnit parseCompilationUnit(java.io.File file) throws java.io.FileNotFoundExceptionParses the Java code contained in theFileand returns aCompilationUnitthat represents it.This is like
StaticJavaParser.parse, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
file- the Java source code- Returns:
- CompilationUnit representing the Java source code
- Throws:
com.github.javaparser.ParseProblemException- if the source code has parser errorsjava.io.FileNotFoundException- if the file was not found
-
parseCompilationUnit
public static com.github.javaparser.ast.CompilationUnit parseCompilationUnit(java.lang.String javaSource)
Parses the Java code contained in theStringand returns aCompilationUnitthat represents it.This is like
StaticJavaParser.parse, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
javaSource- the Java source code- Returns:
- CompilationUnit representing the Java source code
- Throws:
com.github.javaparser.ParseProblemException- if the source code has parser errors
-
parseStubUnit
public static com.github.javaparser.ast.StubUnit parseStubUnit(java.io.InputStream inputStream)
Parses the stub file contained in theInputStreamand returns aStubUnitthat represents it.This is like
StaticJavaParser.parse, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
inputStream- the stub file- Returns:
- StubUnit representing the stub file
- Throws:
com.github.javaparser.ParseProblemException- if the source code has parser errors
-
parseExpression
public static com.github.javaparser.ast.expr.Expression parseExpression(java.lang.String expression)
Parses theexpressionand returns anExpressionthat represents it.This is like
StaticJavaParser.parseExpression, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
expression- the expression string- Returns:
- the parsed expression
- Throws:
com.github.javaparser.ParseProblemException- if the expression has parser errors
-
parseExpression
public static com.github.javaparser.ast.expr.Expression parseExpression(java.lang.String expression, com.github.javaparser.ParserConfiguration.LanguageLevel languageLevel)Parses theexpressionand returns anExpressionthat represents it.This is like
StaticJavaParser.parseExpression, but it does not lead to memory leaks because it creates a new instance of JavaParser each time it is invoked. Re-usingStaticJavaParsercauses memory problems because it retains too much memory.- Parameters:
expression- the expression stringlanguageLevel- the language level to use when parsing the Java source- Returns:
- the parsed expression
- Throws:
com.github.javaparser.ParseProblemException- if the expression has parser errors
-
getTypeDeclarationByName
public static com.github.javaparser.ast.body.TypeDeclaration<?> getTypeDeclarationByName(com.github.javaparser.ast.CompilationUnit root, java.lang.String name)Given the compilation unit node for a source file, returns the top level type definition with the given name.- Parameters:
root- compilation unit to searchname- name of a top level type declaration inroot- Returns:
- a top level type declaration in
rootnamedname
-
getFullyQualifiedName
public static java.lang.String getFullyQualifiedName(com.github.javaparser.ast.body.TypeDeclaration<?> type, com.github.javaparser.ast.CompilationUnit compilationUnit)Returns the fully qualified name of a type appearing in a given compilation unit.- Parameters:
type- a type declarationcompilationUnit- the compilation unit containingtype- Returns:
- the fully qualified name of
typeifcompilationUnitcontains a package declaration, or just the name oftypeotherwise
-
clearAnnotations
public static void clearAnnotations(com.github.javaparser.ast.Node node)
Side-effectsnodeby removing all annotations from anywhere inside its subtree.- Parameters:
node- a JavaParser Node
-
concatenateAddedStringLiterals
public static void concatenateAddedStringLiterals(com.github.javaparser.ast.Node node)
Side-effects node by combining any added String literals in node's subtree into their concatenation. For example, the expression"a" + "b"becomes"ab". This occurs even if, when reading from left to right, the two string literals are not added directly. For example, the expression1 + "a" + "b"parses as(1 + "a") + "b"}, but it is transformed into1 + "ab".This is the same transformation performed by javac automatically. Javac seems to ignore string literals surrounded in parentheses, so this method does as well.
- Parameters:
node- a JavaParser Node
-
getCurrentSourceVersion
public static com.github.javaparser.ParserConfiguration.LanguageLevel getCurrentSourceVersion(javax.annotation.processing.ProcessingEnvironment env)
Returns theParserConfiguration.LanguageLevelcorresponding to the current source version.- Parameters:
env- processing environment used to get source version- Returns:
- the current source version
-
-