public class GeneralUtils
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
static Token |
AND |
static Token |
ASSIGN |
static Token |
CMP |
static Token |
EQ |
static Token |
LT |
static Token |
NE |
static Token |
OR |
Constructor and Description |
---|
GeneralUtils() |
Modifier and Type | Method and Description |
---|---|
static BinaryExpression |
andX(Expression lhv,
Expression rhv) |
static ArgumentListExpression |
args(Expression... expressions) |
static ArgumentListExpression |
args(java.util.List<Expression> expressions) |
static ArgumentListExpression |
args(Parameter[] parameters) |
static ArgumentListExpression |
args(java.lang.String... names) |
static Statement |
assignS(Expression target,
Expression value) |
static Expression |
assignX(Expression target,
Expression value) |
static Expression |
attrX(Expression oe,
Expression prop) |
static BinaryExpression |
binX(Expression left,
Token token,
Expression right) |
static BlockStatement |
block(Statement... stmts) |
static BlockStatement |
block(VariableScope varScope,
java.util.List<Statement> stmts) |
static BlockStatement |
block(VariableScope varScope,
Statement... stmts) |
static BooleanExpression |
boolX(Expression boolExpr) |
static MethodCallExpression |
callSuperX(java.lang.String methodName) |
static MethodCallExpression |
callSuperX(java.lang.String methodName,
Expression args) |
static MethodCallExpression |
callThisX(java.lang.String methodName) |
static MethodCallExpression |
callThisX(java.lang.String methodName,
Expression args) |
static StaticMethodCallExpression |
callX(ClassNode receiver,
java.lang.String methodName) |
static StaticMethodCallExpression |
callX(ClassNode receiver,
java.lang.String methodName,
Expression args) |
static MethodCallExpression |
callX(Expression receiver,
Expression method,
Expression args) |
static MethodCallExpression |
callX(Expression receiver,
java.lang.String methodName) |
static MethodCallExpression |
callX(Expression receiver,
java.lang.String methodName,
Expression args) |
static CastExpression |
castX(ClassNode type,
Expression expression) |
static CastExpression |
castX(ClassNode type,
Expression expression,
boolean ignoreAutoboxing) |
static CatchStatement |
catchS(Parameter variable,
Statement code) |
static ListExpression |
classList2args(java.util.List<java.lang.String> args) |
static ClassExpression |
classX(java.lang.Class clazz) |
static ClassExpression |
classX(ClassNode clazz) |
static Parameter[] |
cloneParams(Parameter[] source) |
static ClosureExpression |
closureX(Parameter[] params,
Statement code) |
static ClosureExpression |
closureX(Statement code) |
static BinaryExpression |
cmpX(Expression lhv,
Expression rhv)
Build a binary expression that compares two values
|
static ConstantExpression |
constX(java.lang.Object val) |
static ConstantExpression |
constX(java.lang.Object val,
boolean keepPrimitive) |
static java.lang.String |
convertASTToSource(ReaderSource readerSource,
ASTNode expression)
Converts an expression into the String source.
|
static void |
copyAnnotatedNodeAnnotations(AnnotatedNode annotatedNode,
java.util.List<AnnotationNode> copied,
java.util.List<AnnotationNode> notCopied)
Copies all candidateAnnotations with retention policy
RetentionPolicy.RUNTIME
and RetentionPolicy.CLASS . |
static boolean |
copyStatementsWithSuperAdjustment(ClosureExpression pre,
BlockStatement body) |
static Statement |
createConstructorStatementDefault(FieldNode fNode) |
static Statement |
ctorSuperS() |
static Statement |
ctorSuperS(Expression args) |
static Statement |
ctorThisS() |
static Statement |
ctorThisS(Expression args) |
static ConstructorCallExpression |
ctorX(ClassNode type) |
static ConstructorCallExpression |
ctorX(ClassNode type,
Expression args) |
static Statement |
declS(Expression target,
Expression init) |
static MapEntryExpression |
entryX(Expression key,
Expression value) |
static BooleanExpression |
equalsNullX(Expression argExpr) |
static BinaryExpression |
eqX(Expression lhv,
Expression rhv) |
static FieldExpression |
fieldX(ClassNode owner,
java.lang.String fieldName) |
static FieldExpression |
fieldX(FieldNode fieldNode) |
static Expression |
findArg(java.lang.String argName) |
static java.util.List<MethodNode> |
getAllMethods(ClassNode type) |
static java.util.List<PropertyNode> |
getAllProperties(ClassNode type) |
static java.util.List<PropertyNode> |
getAllProperties(java.util.Set<java.lang.String> names,
ClassNode cNode,
boolean includeProperties,
boolean includeFields,
boolean includePseudoGetters,
boolean includePseudoSetters,
boolean traverseSuperClasses,
boolean skipReadonly) |
static java.util.List<PropertyNode> |
getAllProperties(java.util.Set<java.lang.String> names,
ClassNode origType,
ClassNode cNode,
boolean includeProperties,
boolean includeFields,
boolean includePseudoGetters,
boolean includePseudoSetters,
boolean traverseSuperClasses,
boolean skipReadonly) |
static java.util.List<PropertyNode> |
getAllProperties(java.util.Set<java.lang.String> names,
ClassNode origType,
ClassNode cNode,
boolean includeProperties,
boolean includeFields,
boolean includePseudoGetters,
boolean includePseudoSetters,
boolean traverseSuperClasses,
boolean skipReadonly,
boolean reverse,
boolean allNames,
boolean includeStatic) |
static java.lang.String |
getGetterName(PropertyNode pNode) |
static java.util.List<java.lang.String> |
getInstanceNonPropertyFieldNames(ClassNode cNode) |
static java.util.List<FieldNode> |
getInstanceNonPropertyFields(ClassNode cNode) |
static java.util.List<PropertyNode> |
getInstanceProperties(ClassNode cNode) |
static java.util.List<FieldNode> |
getInstancePropertyFields(ClassNode cNode) |
static java.util.List<java.lang.String> |
getInstancePropertyNames(ClassNode cNode) |
static java.util.Set<ClassNode> |
getInterfacesAndSuperInterfaces(ClassNode type) |
static java.lang.String |
getSetterName(java.lang.String name) |
static java.util.List<FieldNode> |
getSuperNonPropertyFields(ClassNode cNode) |
static java.util.List<FieldNode> |
getSuperPropertyFields(ClassNode cNode) |
static Expression |
getterThisX(ClassNode annotatedNode,
PropertyNode pNode)
This method is similar to
propX(Expression, Expression) but will make sure that if the property
being accessed is defined inside the classnode provided as a parameter, then a getter call is generated
instead of a field access. |
static Expression |
getterX(ClassNode annotatedNode,
Expression receiver,
PropertyNode pNode)
This method is similar to
propX(Expression, Expression) but will make sure that if the property
being accessed is defined inside the classnode provided as a parameter, then a getter call is generated
instead of a field access. |
static BinaryExpression |
hasClassX(Expression instance,
ClassNode cNode) |
static boolean |
hasDeclaredMethod(ClassNode cNode,
java.lang.String name,
int argsCount) |
static BinaryExpression |
hasEqualFieldX(FieldNode fNode,
Expression other) |
static BinaryExpression |
hasEqualPropertyX(ClassNode annotatedNode,
PropertyNode pNode,
VariableExpression other) |
static BinaryExpression |
hasEqualPropertyX(PropertyNode pNode,
Expression other)
Deprecated.
|
static BooleanExpression |
hasSameFieldX(FieldNode fNode,
Expression other) |
static BooleanExpression |
hasSamePropertyX(PropertyNode pNode,
Expression other) |
static Statement |
ifElseS(Expression cond,
Statement thenStmt,
Statement elseStmt) |
static Statement |
ifS(Expression cond,
Expression trueExpr) |
static Statement |
ifS(Expression cond,
Statement trueStmt) |
static Expression |
indexX(Expression target,
Expression value) |
static boolean |
inSamePackage(java.lang.Class first,
java.lang.Class second) |
static boolean |
inSamePackage(ClassNode first,
ClassNode second) |
static boolean |
isDefaultVisibility(int modifiers) |
static BooleanExpression |
isInstanceOfX(Expression objectExpression,
ClassNode cNode) |
static BooleanExpression |
isOneX(Expression expr) |
static boolean |
isOrImplements(ClassNode type,
ClassNode interfaceType) |
static BooleanExpression |
isTrueX(Expression argExpr) |
static BooleanExpression |
isZeroX(Expression expr) |
static ListExpression |
list2args(java.util.List args) |
static ListExpression |
listX(java.util.List<Expression> args) |
static VariableExpression |
localVarX(java.lang.String name) |
static BinaryExpression |
ltX(Expression lhv,
Expression rhv) |
static java.lang.String |
makeDescriptorWithoutReturnType(MethodNode mn)
Deprecated.
use MethodNodeUtils#methodDescriptorWithoutReturnType(MethodNode) instead
|
static MapExpression |
mapX(java.util.List<MapEntryExpression> expressions) |
static BinaryExpression |
neX(Expression lhv,
Expression rhv) |
static BooleanExpression |
notNullX(Expression argExpr) |
static NotExpression |
notX(Expression expr) |
static BinaryExpression |
orX(Expression lhv,
Expression rhv) |
static Parameter |
param(ClassNode type,
java.lang.String name) |
static Parameter |
param(ClassNode type,
java.lang.String name,
Expression initialExpression) |
static Parameter[] |
params(Parameter... params) |
static BinaryExpression |
plusX(Expression lhv,
Expression rhv) |
static Expression |
propX(Expression owner,
Expression property) |
static Expression |
propX(Expression owner,
java.lang.String property) |
static Statement |
returnS(Expression expr) |
static Statement |
safeExpression(Expression fieldExpr,
Expression expression) |
static BooleanExpression |
sameX(Expression self,
Expression other) |
static Statement |
stmt(Expression expr) |
static TernaryExpression |
ternaryX(Expression cond,
Expression trueExpr,
Expression elseExpr) |
static ThrowStatement |
throwS(Expression expr) |
static VariableExpression |
varX(java.lang.String name) |
static VariableExpression |
varX(java.lang.String name,
ClassNode type) |
static VariableExpression |
varX(Variable variable) |
public static final Token ASSIGN
public static final Token EQ
public static final Token NE
public static final Token LT
public static final Token AND
public static final Token OR
public static final Token CMP
public static BinaryExpression andX(Expression lhv, Expression rhv)
public static ArgumentListExpression args(Expression... expressions)
public static ArgumentListExpression args(java.util.List<Expression> expressions)
public static ArgumentListExpression args(Parameter[] parameters)
public static ArgumentListExpression args(java.lang.String... names)
public static Statement assignS(Expression target, Expression value)
public static Expression assignX(Expression target, Expression value)
public static Expression attrX(Expression oe, Expression prop)
public static BinaryExpression binX(Expression left, Token token, Expression right)
public static BlockStatement block(VariableScope varScope, Statement... stmts)
public static BlockStatement block(VariableScope varScope, java.util.List<Statement> stmts)
public static BlockStatement block(Statement... stmts)
public static MethodCallExpression callSuperX(java.lang.String methodName, Expression args)
public static MethodCallExpression callSuperX(java.lang.String methodName)
public static MethodCallExpression callThisX(java.lang.String methodName, Expression args)
public static MethodCallExpression callThisX(java.lang.String methodName)
public static MethodCallExpression callX(Expression receiver, java.lang.String methodName, Expression args)
public static MethodCallExpression callX(Expression receiver, Expression method, Expression args)
public static MethodCallExpression callX(Expression receiver, java.lang.String methodName)
public static StaticMethodCallExpression callX(ClassNode receiver, java.lang.String methodName, Expression args)
public static StaticMethodCallExpression callX(ClassNode receiver, java.lang.String methodName)
public static CastExpression castX(ClassNode type, Expression expression)
public static BooleanExpression boolX(Expression boolExpr)
public static CastExpression castX(ClassNode type, Expression expression, boolean ignoreAutoboxing)
public static ClassExpression classX(ClassNode clazz)
public static ClassExpression classX(java.lang.Class clazz)
public static ClosureExpression closureX(Parameter[] params, Statement code)
public static ClosureExpression closureX(Statement code)
public static BinaryExpression cmpX(Expression lhv, Expression rhv)
lhv
- expression for the value to compare fromrhv
- expression for the value value to compare topublic static ConstantExpression constX(java.lang.Object val)
public static ConstantExpression constX(java.lang.Object val, boolean keepPrimitive)
public static void copyAnnotatedNodeAnnotations(AnnotatedNode annotatedNode, java.util.List<AnnotationNode> copied, java.util.List<AnnotationNode> notCopied)
RetentionPolicy.RUNTIME
and RetentionPolicy.CLASS
.
Annotations with GeneratedClosure
members are not supported at present.
public static Statement createConstructorStatementDefault(FieldNode fNode)
public static ConstructorCallExpression ctorX(ClassNode type, Expression args)
public static ConstructorCallExpression ctorX(ClassNode type)
public static Statement ctorSuperS(Expression args)
public static Statement ctorThisS(Expression args)
public static Statement ctorSuperS()
public static Statement ctorThisS()
public static Statement declS(Expression target, Expression init)
public static BinaryExpression eqX(Expression lhv, Expression rhv)
public static BooleanExpression equalsNullX(Expression argExpr)
public static FieldExpression fieldX(FieldNode fieldNode)
public static FieldExpression fieldX(ClassNode owner, java.lang.String fieldName)
public static Expression findArg(java.lang.String argName)
public static java.util.List<MethodNode> getAllMethods(ClassNode type)
public static java.util.List<PropertyNode> getAllProperties(ClassNode type)
public static java.lang.String getGetterName(PropertyNode pNode)
public static java.util.List<FieldNode> getInstanceNonPropertyFields(ClassNode cNode)
public static java.util.List<java.lang.String> getInstanceNonPropertyFieldNames(ClassNode cNode)
public static java.util.List<PropertyNode> getInstanceProperties(ClassNode cNode)
public static java.util.List<java.lang.String> getInstancePropertyNames(ClassNode cNode)
public static java.util.List<FieldNode> getInstancePropertyFields(ClassNode cNode)
public static java.util.Set<ClassNode> getInterfacesAndSuperInterfaces(ClassNode type)
public static java.util.List<FieldNode> getSuperNonPropertyFields(ClassNode cNode)
public static java.util.List<FieldNode> getSuperPropertyFields(ClassNode cNode)
public static java.util.List<PropertyNode> getAllProperties(java.util.Set<java.lang.String> names, ClassNode cNode, boolean includeProperties, boolean includeFields, boolean includePseudoGetters, boolean includePseudoSetters, boolean traverseSuperClasses, boolean skipReadonly)
public static java.util.List<PropertyNode> getAllProperties(java.util.Set<java.lang.String> names, ClassNode origType, ClassNode cNode, boolean includeProperties, boolean includeFields, boolean includePseudoGetters, boolean includePseudoSetters, boolean traverseSuperClasses, boolean skipReadonly)
public static java.util.List<PropertyNode> getAllProperties(java.util.Set<java.lang.String> names, ClassNode origType, ClassNode cNode, boolean includeProperties, boolean includeFields, boolean includePseudoGetters, boolean includePseudoSetters, boolean traverseSuperClasses, boolean skipReadonly, boolean reverse, boolean allNames, boolean includeStatic)
public static BinaryExpression hasClassX(Expression instance, ClassNode cNode)
public static boolean hasDeclaredMethod(ClassNode cNode, java.lang.String name, int argsCount)
public static BinaryExpression hasEqualFieldX(FieldNode fNode, Expression other)
public static BinaryExpression hasEqualPropertyX(ClassNode annotatedNode, PropertyNode pNode, VariableExpression other)
@Deprecated public static BinaryExpression hasEqualPropertyX(PropertyNode pNode, Expression other)
public static BooleanExpression hasSameFieldX(FieldNode fNode, Expression other)
public static BooleanExpression hasSamePropertyX(PropertyNode pNode, Expression other)
public static Statement ifElseS(Expression cond, Statement thenStmt, Statement elseStmt)
public static Statement ifS(Expression cond, Expression trueExpr)
public static Statement ifS(Expression cond, Statement trueStmt)
public static Expression indexX(Expression target, Expression value)
public static BooleanExpression isInstanceOfX(Expression objectExpression, ClassNode cNode)
public static BooleanExpression isOneX(Expression expr)
public static BooleanExpression isTrueX(Expression argExpr)
public static BooleanExpression isZeroX(Expression expr)
public static ListExpression listX(java.util.List<Expression> args)
public static ListExpression list2args(java.util.List args)
public static ListExpression classList2args(java.util.List<java.lang.String> args)
public static VariableExpression localVarX(java.lang.String name)
public static BinaryExpression ltX(Expression lhv, Expression rhv)
public static MapExpression mapX(java.util.List<MapEntryExpression> expressions)
public static MapEntryExpression entryX(Expression key, Expression value)
@Deprecated public static java.lang.String makeDescriptorWithoutReturnType(MethodNode mn)
public static BinaryExpression neX(Expression lhv, Expression rhv)
public static BooleanExpression notNullX(Expression argExpr)
public static NotExpression notX(Expression expr)
public static BinaryExpression orX(Expression lhv, Expression rhv)
public static Parameter param(ClassNode type, java.lang.String name, Expression initialExpression)
public static BinaryExpression plusX(Expression lhv, Expression rhv)
public static Expression propX(Expression owner, java.lang.String property)
public static Expression propX(Expression owner, Expression property)
public static Statement returnS(Expression expr)
public static Statement safeExpression(Expression fieldExpr, Expression expression)
public static BooleanExpression sameX(Expression self, Expression other)
public static Statement stmt(Expression expr)
public static TernaryExpression ternaryX(Expression cond, Expression trueExpr, Expression elseExpr)
public static VariableExpression varX(java.lang.String name)
public static VariableExpression varX(Variable variable)
public static VariableExpression varX(java.lang.String name, ClassNode type)
public static ThrowStatement throwS(Expression expr)
public static CatchStatement catchS(Parameter variable, Statement code)
public static Expression getterThisX(ClassNode annotatedNode, PropertyNode pNode)
propX(Expression, Expression)
but will make sure that if the property
being accessed is defined inside the classnode provided as a parameter, then a getter call is generated
instead of a field access.annotatedNode
- the class node where the property node is accessed frompNode
- the property being accessedpublic static Expression getterX(ClassNode annotatedNode, Expression receiver, PropertyNode pNode)
propX(Expression, Expression)
but will make sure that if the property
being accessed is defined inside the classnode provided as a parameter, then a getter call is generated
instead of a field access.annotatedNode
- the class node where the property node is accessed fromreceiver
- the object having the propertypNode
- the property being accessedpublic static java.lang.String convertASTToSource(ReaderSource readerSource, ASTNode expression) throws java.lang.Exception
readerSource
- a sourceexpression
- an expression. Can't be nulljava.lang.IllegalArgumentException
- when expression is nulljava.lang.Exception
- when closure can't be read from sourcepublic static boolean copyStatementsWithSuperAdjustment(ClosureExpression pre, BlockStatement body)
public static java.lang.String getSetterName(java.lang.String name)
public static boolean isDefaultVisibility(int modifiers)
public static boolean inSamePackage(java.lang.Class first, java.lang.Class second)