Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/src/de/fernflower/modules/decompiler/exps/ConstExprent.java

369 lines
11 KiB

/*
* Fernflower - The Analytical Java Decompiler
* http://www.reversed-java.com
*
* (C) 2008 - 2010, Stiver
*
* This software is NEITHER public domain NOR free software
* as per GNU License. See license.txt for more details.
*
* This software is distributed WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR
* A PARTICULAR PURPOSE.
*/
package de.fernflower.modules.decompiler.exps;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import de.fernflower.code.CodeConstants;
import de.fernflower.main.DecompilerContext;
import de.fernflower.main.extern.IFernflowerPreferences;
import de.fernflower.modules.decompiler.ExprProcessor;
import de.fernflower.struct.gen.FieldDescriptor;
import de.fernflower.struct.gen.VarType;
import de.fernflower.util.InterpreterUtil;
public class ConstExprent extends Exprent {
private static final HashMap<Integer, String> escapes = new HashMap<Integer, String>();
static {
escapes.put(new Integer(0x8), "\\b"); /* \u0008: backspace BS */
escapes.put(new Integer(0x9), "\\t"); /* \u0009: horizontal tab HT */
escapes.put(new Integer(0xA), "\\n"); /* \u000a: linefeed LF */
escapes.put(new Integer(0xC), "\\f"); /* \u000c: form feed FF */
escapes.put(new Integer(0xD), "\\r"); /* \u000d: carriage return CR */
escapes.put(new Integer(0x22), "\\\""); /* \u0022: double quote " */
escapes.put(new Integer(0x27), "\\\'"); /* \u0027: single quote ' */
escapes.put(new Integer(0x5C), "\\\\"); /* \u005c: backslash \ */
}
private VarType consttype;
private Object value;
private boolean boolPermitted;
{
this.type = EXPRENT_CONST;
}
public ConstExprent(int val, boolean boolPermitted) {
this.boolPermitted = boolPermitted;
if(boolPermitted) {
consttype = VarType.VARTYPE_BOOLEAN;
if(val != 0 && val != 1) {
consttype = consttype.copy();
consttype.convinfo |= VarType.FALSEBOOLEAN;
}
} else {
if(0 <= val && val <= 127) {
consttype = VarType.VARTYPE_BYTECHAR;
} else if(-128 <= val && val <= 127) {
consttype = VarType.VARTYPE_BYTE;
} else if(0 <= val && val <= 32767) {
consttype = VarType.VARTYPE_SHORTCHAR;
} else if(-32768 <= val && val <= 32767) {
consttype = VarType.VARTYPE_SHORT;
} else if(0 <= val && val <= 0xFFFF) {
consttype = VarType.VARTYPE_CHAR;
} else {
consttype = VarType.VARTYPE_INT;
}
}
value = new Integer(val);
}
public ConstExprent(VarType consttype, Object value) {
this.consttype = consttype;
this.value = value;
}
public Exprent copy() {
return new ConstExprent(consttype, value);
}
public VarType getExprType() {
return consttype;
}
public int getExprentUse() {
return Exprent.MULTIPLE_USES | Exprent.SIDE_EFFECTS_FREE;
}
public List<Exprent> getAllExprents() {
return new ArrayList<Exprent>();
}
public String toJava(int indent) {
boolean literal = DecompilerContext.getOption(IFernflowerPreferences.LITERALS_AS_IS);
boolean ascii = DecompilerContext.getOption(IFernflowerPreferences.ASCII_STRING_CHARACTERS);
if(consttype.type != CodeConstants.TYPE_NULL && value == null) {
return ExprProcessor.getCastTypeName(consttype);
} else {
switch(consttype.type) {
case CodeConstants.TYPE_BOOLEAN:
return new Boolean(((Integer)value).intValue() != 0).toString();
case CodeConstants.TYPE_CHAR:
Integer val = (Integer)value;
String ret = escapes.get(val);
if(ret == null) {
if(!ascii || val.intValue() >= 32 && val.intValue() < 127) {
ret = String.valueOf((char)val.intValue());
} else {
ret = InterpreterUtil.charToUnicodeLiteral(val);
}
}
return "\'"+ret+"\'";
case CodeConstants.TYPE_BYTE:
case CodeConstants.TYPE_BYTECHAR:
case CodeConstants.TYPE_SHORT:
case CodeConstants.TYPE_SHORTCHAR:
case CodeConstants.TYPE_INT:
int ival = ((Integer)value).intValue();
String intfield;
if(literal) {
return value.toString();
} else if(ival == Integer.MAX_VALUE) {
intfield = "MAX_VALUE";
} else if(ival == Integer.MIN_VALUE) {
intfield = "MIN_VALUE";
} else {
return value.toString();
}
return new FieldExprent(intfield, "java/lang/Integer", true, null, FieldDescriptor.INTEGER_DESCRIPTOR).toJava(0);
case CodeConstants.TYPE_LONG:
long lval = ((Long)value).longValue();
String longfield;
if(literal) {
return value.toString()+"L";
} else if(lval == Long.MAX_VALUE) {
longfield = "MAX_VALUE";
} else if(lval == Long.MIN_VALUE) {
longfield = "MIN_VALUE";
} else {
return value.toString()+"L";
}
return new FieldExprent(longfield, "java/lang/Long", true, null, FieldDescriptor.LONG_DESCRIPTOR).toJava(0);
case CodeConstants.TYPE_DOUBLE:
double dval = ((Double)value).doubleValue();
String doublefield;
if(literal) {
if(Double.isNaN(dval)) {
return "0.0D / 0.0";
} else if(dval == Double.POSITIVE_INFINITY) {
return "1.0D / 0.0";
} else if(dval == Double.NEGATIVE_INFINITY) {
return "-1.0D / 0.0";
} else {
return value.toString() + "D";
}
} else if(Double.isNaN(dval)) {
doublefield = "NaN";
} else if(dval == Double.POSITIVE_INFINITY) {
doublefield = "POSITIVE_INFINITY";
} else if(dval == Double.NEGATIVE_INFINITY) {
doublefield = "NEGATIVE_INFINITY";
} else if(dval == Double.MAX_VALUE) {
doublefield = "MAX_VALUE";
} else if(dval == Double.MIN_VALUE) {
doublefield = "MIN_VALUE";
} else {
return value.toString()+"D";
}
return new FieldExprent(doublefield, "java/lang/Double", true, null, FieldDescriptor.DOUBLE_DESCRIPTOR).toJava(0);
case CodeConstants.TYPE_FLOAT:
float fval = ((Float)value).floatValue();
String floatfield;
if(literal) {
if(Double.isNaN(fval)) {
return "0.0F / 0.0";
} else if(fval == Double.POSITIVE_INFINITY) {
return "1.0F / 0.0";
} else if(fval == Double.NEGATIVE_INFINITY) {
return "-1.0F / 0.0";
} else {
return value.toString() + "F";
}
} else if(Float.isNaN(fval)) {
floatfield = "NaN";
} else if(fval == Float.POSITIVE_INFINITY) {
floatfield = "POSITIVE_INFINITY";
} else if(fval == Float.NEGATIVE_INFINITY) {
floatfield = "NEGATIVE_INFINITY";
} else if(fval == Float.MAX_VALUE) {
floatfield = "MAX_VALUE";
} else if(fval == Float.MIN_VALUE) {
floatfield = "MIN_VALUE";
} else {
return value.toString()+"F";
}
return new FieldExprent(floatfield, "java/lang/Float", true, null, FieldDescriptor.FLOAT_DESCRIPTOR).toJava(0);
case CodeConstants.TYPE_NULL:
return "null";
case CodeConstants.TYPE_OBJECT:
if(consttype.equals(VarType.VARTYPE_STRING)) {
return "\""+convertStringToJava(value.toString(), ascii)+"\"";
} else if(consttype.equals(VarType.VARTYPE_CLASS)) {
String strval = value.toString();
VarType classtype;
if(strval.startsWith("[")) { // array of simple type
classtype = new VarType(strval, false);
} else { // class
classtype = new VarType(strval, true);
}
return ExprProcessor.getCastTypeName(classtype)+".class";
}
}
}
throw new RuntimeException("invalid constant type");
}
private String convertStringToJava(String value, boolean ascii) {
char[] arr = value.toCharArray();
StringBuilder buffer = new StringBuilder(arr.length);
for(char c: arr){
switch(c) {
case '\\': // u005c: backslash \
buffer.append("\\\\");
break;
case 0x8: // "\\\\b"); // u0008: backspace BS
buffer.append("\\b");
break;
case 0x9: //"\\\\t"); // u0009: horizontal tab HT
buffer.append("\\t");
break;
case 0xA: //"\\\\n"); // u000a: linefeed LF
buffer.append("\\n");
break;
case 0xC: //"\\\\f"); // u000c: form feed FF
buffer.append("\\f");
break;
case 0xD: //"\\\\r"); // u000d: carriage return CR
buffer.append("\\r");
break;
case 0x22: //"\\\\\""); // u0022: double quote "
buffer.append("\\\"");
break;
case 0x27: //"\\\\'"); // u0027: single quote '
buffer.append("\\\'");
break;
default:
if(!ascii || (c >= 32 && c < 127)) {
buffer.append(c);
} else {
buffer.append(InterpreterUtil.charToUnicodeLiteral(c));
}
}
}
return buffer.toString();
}
public boolean equals(Object o) {
if(o == this) return true;
if(o == null || !(o instanceof ConstExprent)) return false;
ConstExprent cn = (ConstExprent)o;
return InterpreterUtil.equalObjects(consttype, cn.getConsttype()) &&
InterpreterUtil.equalObjects(value, cn.getValue());
}
public boolean hasBooleanValue() {
switch(consttype.type) {
case CodeConstants.TYPE_BOOLEAN:
case CodeConstants.TYPE_CHAR:
case CodeConstants.TYPE_BYTE:
case CodeConstants.TYPE_BYTECHAR:
case CodeConstants.TYPE_SHORT:
case CodeConstants.TYPE_SHORTCHAR:
case CodeConstants.TYPE_INT:
Integer ival = (Integer)value;
return ival.intValue() == 0 ||
(DecompilerContext.getOption(IFernflowerPreferences.BOOLEAN_TRUE_ONE) && ival.intValue() == 1);
}
return false;
}
public boolean hasValueOne() {
switch(consttype.type) {
case CodeConstants.TYPE_BOOLEAN:
case CodeConstants.TYPE_CHAR:
case CodeConstants.TYPE_BYTE:
case CodeConstants.TYPE_BYTECHAR:
case CodeConstants.TYPE_SHORT:
case CodeConstants.TYPE_SHORTCHAR:
case CodeConstants.TYPE_INT:
return ((Integer)value).intValue() == 1;
case CodeConstants.TYPE_LONG:
return ((Long)value).intValue() == 1;
case CodeConstants.TYPE_DOUBLE:
return ((Double)value).intValue() == 1;
case CodeConstants.TYPE_FLOAT:
return ((Float)value).intValue() == 1;
}
return false;
}
public static ConstExprent getZeroConstant(int type) {
switch(type) {
case CodeConstants.TYPE_INT:
return new ConstExprent(VarType.VARTYPE_INT, new Integer(0));
case CodeConstants.TYPE_LONG:
return new ConstExprent(VarType.VARTYPE_LONG, new Long(0));
case CodeConstants.TYPE_DOUBLE:
return new ConstExprent(VarType.VARTYPE_DOUBLE, new Double(0));
case CodeConstants.TYPE_FLOAT:
return new ConstExprent(VarType.VARTYPE_FLOAT, new Float(0));
}
throw new RuntimeException("Invalid argument!");
}
public VarType getConsttype() {
return consttype;
}
public void setConsttype(VarType consttype) {
this.consttype = consttype;
}
public Object getValue() {
return value;
}
public int getIntValue() {
return ((Integer)value).intValue();
}
public boolean isBoolPermitted() {
return boolPermitted;
}
public void setBoolPermitted(boolean boolPermitted) {
this.boolPermitted = boolPermitted;
}
}