Package org.apache.sysds.parser
Class Expression
java.lang.Object
org.apache.sysds.parser.Expression
- All Implemented Interfaces:
ParseInfo
- Direct Known Subclasses:
BinaryExpression,BooleanExpression,ExpressionList,Identifier,IterablePredicate,RelationalExpression
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumBinary operators.static enumBoolean operators.static enumData operators.static enumFunction call operators.static enumRelational operators. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Types.DataTypecomputeDataType(Expression expression1, Expression expression2, boolean cast) Compute data type based on expressions.static Types.DataTypecomputeDataType(Identifier identifier1, Identifier identifier2, boolean cast) Compute data type based on identifiers.static Types.ValueTypecomputeValueType(Expression expr1, Types.ValueType v1, Types.ValueType v2, boolean cast) static Types.ValueTypecomputeValueType(Expression expression1, Expression expression2, boolean cast) Compute value type based on expressions.static Types.ValueTypecomputeValueType(Identifier identifier1, Identifier identifier2, boolean cast) Compute value type based on identifiers.static Types.FileFormatconvertFormatType(String format) Convert string format type toHop.FileFormatTypes.booleanintintstatic MatrixCharacteristicsgetBinaryMatrixCharacteristics(Expression expression1, Expression expression2) Returns the matrix characteristics for scalar-scalar, scalar-matrix, matrix-scalar, matrix-matrix operations.static Expression.BinaryOpgetBinaryOp(String val) Convert string value to binary operator.static Expression.BooleanOpgetBooleanOp(String val) Convert string value to boolean operator.intintObtain identifier.Obtain identifiers.static Expression.RelationalOpgetRelationalOp(String val) Convert string value to relational operator.static StringObtain temporary name ("parsertemp" + _tempId) for expression.getText()inthashCode()Return info message containing the filename, the beginning line position, and the beginning column position.voidraiseValidateError(String message) Throw a LanguageException with the message.voidraiseValidateError(String message, boolean conditional) Throw a LanguageException with the message if conditional isfalse; otherwise log the message as a warning.voidraiseValidateError(String msg, boolean conditional, String errorCode) Throw a LanguageException with the message (and optional error code) if conditional isfalse; otherwise log the message as a warning.abstract ExpressionrewriteExpression(String prefix) voidsetBeginColumn(int passed) voidsetBeginLine(int passed) voidsetCtxValues(org.antlr.v4.runtime.ParserRuleContext ctx) Set ParserRuleContext values (begin line, begin column, end line, end column, and text).voidsetCtxValuesAndFilename(org.antlr.v4.runtime.ParserRuleContext ctx, String filename) Set ParserRuleContext values (begin line, begin column, end line, end column, and text) and file name.voidsetEndColumn(int passed) voidsetEndLine(int passed) voidsetFilename(String passed) voidsetOutput(Identifier output) voidsetParseExceptionList(ArrayList<String> passed) voidsetParseInfo(ParseInfo parseInfo) Set parse information.voidvoidvalidateExpression(HashMap<String, DataIdentifier> ids, HashMap<String, ConstIdentifier> currConstVars, boolean conditional) voidvalidateExpression(MultiAssignmentStatement mas, HashMap<String, DataIdentifier> ids, HashMap<String, ConstIdentifier> currConstVars, boolean conditional) abstract VariableSetabstract VariableSet
-
Constructor Details
-
Expression
public Expression()
-
-
Method Details
-
rewriteExpression
-
setOutput
-
getOutput
Obtain identifier.- Returns:
- Identifier
-
getOutputs
Obtain identifiers.- Returns:
- Identifiers
-
validateExpression
public void validateExpression(HashMap<String, DataIdentifier> ids, HashMap<String, ConstIdentifier> currConstVars, boolean conditional) -
validateExpression
public void validateExpression(MultiAssignmentStatement mas, HashMap<String, DataIdentifier> ids, HashMap<String, ConstIdentifier> currConstVars, boolean conditional) -
getBinaryOp
Convert string value to binary operator.- Parameters:
val- String value ('+', '-', '*', '/', '%%', '%/%', '^', %*%')- Returns:
- Binary operator (
BinaryOp.PLUS,BinaryOp.MINUS,BinaryOp.MULT,BinaryOp.DIV,BinaryOp.MODULUS,BinaryOp.INTDIV,BinaryOp.POW,BinaryOp.MATMULT). ReturnsBinaryOp.INVALIDif string value not recognized.
-
getRelationalOp
Convert string value to relational operator.- Parameters:
val- String value ('<', '<=', '>', '>=', '==', '!=')- Returns:
- Relational operator (
RelationalOp.LESS,RelationalOp.LESSEQUAL,RelationalOp.GREATER,RelationalOp.GREATEREQUAL,RelationalOp.EQUAL,RelationalOp.NOTEQUAL). ReturnsRelationalOp.INVALIDif string value not recognized.
-
getBooleanOp
Convert string value to boolean operator.- Parameters:
val- String value ('&&', '&', '||', '|', '!')- Returns:
- Boolean operator (
BooleanOp.CONDITIONALAND,BooleanOp.LOGICALAND,BooleanOp.CONDITIONALOR,BooleanOp.LOGICALOR,BooleanOp.NOT). ReturnsBooleanOp.INVALIDif string value not recognized.
-
convertFormatType
Convert string format type toHop.FileFormatTypes.- Parameters:
format- String format type ("text", "binary", "mm", "csv")- Returns:
- Format as
Hop.FileFormatTypes. Can beFileFormatTypes.TEXT,FileFormatTypes.BINARY,FileFormatTypes.MM, orFileFormatTypes.CSV. Unrecognized type is set toFileFormatTypes.TEXT.
-
getTempName
Obtain temporary name ("parsertemp" + _tempId) for expression. Used to construct Hops from parse tree.- Returns:
- Temporary name of expression.
-
variablesRead
-
variablesUpdated
-
computeDataType
public static Types.DataType computeDataType(Expression expression1, Expression expression2, boolean cast) Compute data type based on expressions. The identifier for each expression is obtained and passed tocomputeDataType(Identifier, Identifier, boolean). If the identifiers have the same data type, the shared data type is returned. Otherwise, ifcastistrueand one of the identifiers is a matrix and the other identifier is a scalar, returnDataType.MATRIX. Otherwise, throw a LanguageException.- Parameters:
expression1- First expressionexpression2- Second expressioncast- Whether a cast should potentially be performed- Returns:
- The data type (
Types.DataType)
-
computeDataType
public static Types.DataType computeDataType(Identifier identifier1, Identifier identifier2, boolean cast) Compute data type based on identifiers. If the identifiers have the same data type, the shared data type is returned. Otherwise, ifcastistrueand one of the identifiers is a matrix and the other identifier is a scalar, returnDataType.MATRIX. Otherwise, throw a LanguageException.- Parameters:
identifier1- First identifieridentifier2- Second identifiercast- Whether a cast should potentially be performed- Returns:
- The data type (
Types.DataType)
-
computeValueType
public static Types.ValueType computeValueType(Expression expression1, Expression expression2, boolean cast) Compute value type based on expressions. The identifier for each expression is obtained and passed tocomputeValueType(Identifier, Identifier, boolean). If the identifiers have the same value type, the shared value type is returned. Otherwise, ifcastistrueand one value type is a double and the other is an int, returnValueType.DOUBLE. Ifcastistrueand one value type is a string or the other value type is a string, returnValueType.STRING. Otherwise, throw a LanguageException.- Parameters:
expression1- First expressionexpression2- Second expressioncast- Whether a cast should potentially be performed- Returns:
- The value type (
Types.ValueType)
-
computeValueType
public static Types.ValueType computeValueType(Identifier identifier1, Identifier identifier2, boolean cast) Compute value type based on identifiers. If the identifiers have the same value type, the shared value type is returned. Otherwise, ifcastistrueand one value type is a double and the other is an int, returnValueType.DOUBLE. Ifcastistrueand one value type is a string or the other value type is a string, returnValueType.STRING. Otherwise, throw a LanguageException.- Parameters:
identifier1- First identifieridentifier2- Second identifiercast- Whether a cast should potentially be performed- Returns:
- The value type (
Types.ValueType)
-
computeValueType
public static Types.ValueType computeValueType(Expression expr1, Types.ValueType v1, Types.ValueType v2, boolean cast) -
equals
-
hashCode
public int hashCode() -
raiseValidateError
Throw a LanguageException with the message.- Parameters:
message- the error message
-
raiseValidateError
Throw a LanguageException with the message if conditional isfalse; otherwise log the message as a warning.- Parameters:
message- the error (or warning) messageconditional- iftrue, display log warning message. Otherwise, the message will be thrown as a LanguageException
-
raiseValidateError
Throw a LanguageException with the message (and optional error code) if conditional isfalse; otherwise log the message as a warning.- Parameters:
msg- the error (or warning) messageconditional- iftrue, display log warning message. Otherwise, the message (and optional error code) will be thrown as a LanguageExceptionerrorCode- optional error code
-
getBinaryMatrixCharacteristics
public static MatrixCharacteristics getBinaryMatrixCharacteristics(Expression expression1, Expression expression2) Returns the matrix characteristics for scalar-scalar, scalar-matrix, matrix-scalar, matrix-matrix operations. This method is aware of potentially unknowns and matrix-vector (col/row) operations.- Parameters:
expression1- The first expressionexpression2- The second expression- Returns:
- matrix characteristics [1] is the number of columns (clen), [2] is the number of rows in a block (blen), and [3] is the number of columns in a block (blen). Default (unknown) values are -1. Scalar values are all 0.
-
setFilename
- Specified by:
setFilenamein interfaceParseInfo
-
setBeginLine
public void setBeginLine(int passed) - Specified by:
setBeginLinein interfaceParseInfo
-
setBeginColumn
public void setBeginColumn(int passed) - Specified by:
setBeginColumnin interfaceParseInfo
-
setEndLine
public void setEndLine(int passed) - Specified by:
setEndLinein interfaceParseInfo
-
setEndColumn
public void setEndColumn(int passed) - Specified by:
setEndColumnin interfaceParseInfo
-
setText
-
setParseExceptionList
-
setParseInfo
Set parse information.- Parameters:
parseInfo- parse information, such as beginning line position, beginning column position, ending line position, ending column position, text, and filename
-
setCtxValues
public void setCtxValues(org.antlr.v4.runtime.ParserRuleContext ctx) Set ParserRuleContext values (begin line, begin column, end line, end column, and text).- Parameters:
ctx- the antlr ParserRuleContext
-
setCtxValuesAndFilename
Set ParserRuleContext values (begin line, begin column, end line, end column, and text) and file name.- Parameters:
ctx- the antlr ParserRuleContextfilename- the filename (if it exists)
-
getFilename
- Specified by:
getFilenamein interfaceParseInfo
-
getBeginLine
public int getBeginLine()- Specified by:
getBeginLinein interfaceParseInfo
-
getBeginColumn
public int getBeginColumn()- Specified by:
getBeginColumnin interfaceParseInfo
-
getEndLine
public int getEndLine()- Specified by:
getEndLinein interfaceParseInfo
-
getEndColumn
public int getEndColumn()- Specified by:
getEndColumnin interfaceParseInfo
-
getText
-
getParseExceptionList
-
printErrorLocation
-
printWarningLocation
-
printInfoLocation
Return info message containing the filename, the beginning line position, and the beginning column position.- Returns:
- the info message
-