All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.snapscript.studio.agent.debug.ValueDataBuilder Maven / Gradle / Ivy
package org.snapscript.studio.agent.debug;
import org.snapscript.core.Context;
import org.snapscript.core.scope.instance.Instance;
import org.snapscript.core.type.Type;
import org.snapscript.studio.agent.debug.ArrayStringBuilder;
import org.snapscript.studio.agent.debug.ValueData;
public class ValueDataBuilder {
private static final int MAX_LENGTH = 1024;
private final ArrayStringBuilder builder;
private final int limit;
public ValueDataBuilder(Context context) {
this(context, MAX_LENGTH);
}
public ValueDataBuilder(Context context, int limit) {
this.builder = new ArrayStringBuilder(context, limit);
this.limit = limit;
}
public ValueData createNull(String key, Object value, int modifiers, int depth) {
return new ValueData(key, "", "null", "null", false, modifiers, depth);
}
public ValueData createArray(String key, Object value, int modifiers, int depth) {
StringBuilder dimensions = new StringBuilder();
Class type = value.getClass();
Class entry = type.getComponentType();
String text = "";
if(type == byte[].class) {
text = builder.toString((byte[])value);
} else if(type == int[].class) {
text = builder.toString((int[])value);
} else if(type == long[].class) {
text = builder.toString((long[])value);
} else if(type == double[].class) {
text = builder.toString((double[])value);
} else if(type == float[].class) {
text = builder.toString((float[])value);
} else if(type == short[].class) {
text = builder.toString((short[])value);
} else if(type == char[].class) {
text = builder.toString((char[])value);
} else if(type == boolean[].class) {
text = builder.toString((boolean[])value);
} else {
text = builder.toString((Object[])value);
}
while(entry != null) {
dimensions.append("[]");
type = entry;
entry = type.getComponentType();
}
String name = type.getSimpleName();
int length = text.length();
if(length > limit) {
text = text.substring(0, limit) + "..."; // truncate value
}
return new ValueData(key, name + dimensions, "", text, true, modifiers, depth);
}
public ValueData createObject(String key, Object value, int modifiers, int depth) {
Class type = value.getClass();
String name = type.getSimpleName();
String text = String.valueOf(value);
int length = text.length();
if(length > limit) {
text = text.substring(0, limit) + "..."; // truncate value
}
return new ValueData(key, name, "", text, true, modifiers, depth);
}
public ValueData createPrimitive(String key, Object value, int modifiers,int depth) {
Class type = value.getClass();
String name = type.getSimpleName();
String text = String.valueOf(value);
int length = text.length();
if(length > limit) {
text = text.substring(0, limit) + "..."; // truncate value
}
return new ValueData(key, name, text, text, false, modifiers, depth);
}
public ValueData createScope(String key, Object value, int modifiers, int depth) {
Instance instance = (Instance)value;
Type type = instance.getType();
String name = type.getName();
return new ValueData(key, name, "", "", true, modifiers, depth);
}
}