2007-10-03 17:39:37 +00:00
|
|
|
/*******************************************************************************
|
|
|
|
|
* Copyright (c) 2007 LuaJ. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
package lua.debug;
|
|
|
|
|
|
2007-10-12 01:36:28 +00:00
|
|
|
import java.io.DataInputStream;
|
|
|
|
|
import java.io.DataOutputStream;
|
|
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.Vector;
|
2007-10-09 00:25:44 +00:00
|
|
|
|
2007-10-04 21:04:38 +00:00
|
|
|
import lua.Lua;
|
2007-10-03 17:39:37 +00:00
|
|
|
import lua.value.LTable;
|
|
|
|
|
import lua.value.LValue;
|
|
|
|
|
|
2007-10-12 01:36:28 +00:00
|
|
|
public class TableVariable extends Variable {
|
2007-10-03 17:39:37 +00:00
|
|
|
protected String[] keys;
|
|
|
|
|
protected Object[] values;
|
|
|
|
|
|
2007-10-04 21:04:38 +00:00
|
|
|
public TableVariable(int index, String name, int type, LTable table) {
|
2007-10-03 17:39:37 +00:00
|
|
|
super(index, name, type, null);
|
|
|
|
|
|
|
|
|
|
int size = table.size();
|
|
|
|
|
DebugUtils.println("table size:" + size);
|
2007-10-12 01:36:28 +00:00
|
|
|
Vector keyArray = new Vector();
|
|
|
|
|
Vector valueArray = new Vector();
|
2007-10-03 17:39:37 +00:00
|
|
|
LValue[] keyValues = table.getKeys();
|
|
|
|
|
for (int i = 0; i < size; i++) {
|
2007-10-09 00:25:44 +00:00
|
|
|
|
2007-10-03 17:39:37 +00:00
|
|
|
LValue value = table.get(keyValues[i]);
|
2007-10-09 00:25:44 +00:00
|
|
|
if (value == table) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
keyArray.add(keyValues[i].toString());
|
2007-10-03 17:39:37 +00:00
|
|
|
if (value instanceof LTable) {
|
2007-10-09 00:25:44 +00:00
|
|
|
DebugUtils.println("table: value[" + i + "]=" + value.toString());
|
|
|
|
|
valueArray.add(new TableVariable(i, "element[" + keyValues[i].toString() + "]", Lua.LUA_TTABLE, (LTable)value));
|
2007-10-03 17:39:37 +00:00
|
|
|
} else {
|
2007-10-09 00:25:44 +00:00
|
|
|
valueArray.add(value.toString());
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|
2007-10-09 00:25:44 +00:00
|
|
|
DebugUtils.println("["+ keyValues[i].toString() + "," + value.toString() + "]");
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|
2007-10-09 00:25:44 +00:00
|
|
|
|
|
|
|
|
this.keys = (String[])keyArray.toArray(new String[0]);
|
2007-10-12 01:36:28 +00:00
|
|
|
this.values = (Object[]) valueArray.toArray(new Object[0]);
|
|
|
|
|
if (this.keys.length != this.values.length) {
|
|
|
|
|
throw new RuntimeException("Internal Error: key.length must equal to values.length");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TableVariable(int index, String name, int type, String[] keys, Object[] values) {
|
|
|
|
|
super(index, name, type, null);
|
|
|
|
|
this.keys = keys;
|
|
|
|
|
this.values = values;
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String[] getKeys() {
|
2007-10-12 01:36:28 +00:00
|
|
|
return this.keys == null ? new String[0] : this.keys;
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Object[] getValues() {
|
2007-10-12 01:36:28 +00:00
|
|
|
return this.values == null ? new Object[0] : this.values;
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|
2007-10-12 01:36:28 +00:00
|
|
|
|
|
|
|
|
public static void serialize(DataOutputStream out, TableVariable variable) throws IOException {
|
|
|
|
|
out.writeInt(variable.getIndex());
|
|
|
|
|
out.writeUTF(variable.getName());
|
|
|
|
|
out.writeInt(variable.getType());
|
|
|
|
|
|
|
|
|
|
String[] keys = variable.getKeys();
|
|
|
|
|
out.writeInt(keys.length);
|
|
|
|
|
for (int i = 0; keys != null && i < keys.length; i++) {
|
|
|
|
|
SerializationHelper.serialize(new NullableString(keys[i]), out);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Object[] values = variable.getValues();
|
|
|
|
|
for (int i = 0; values != null && i < values.length; i++) {
|
|
|
|
|
if (values[i] instanceof String) {
|
|
|
|
|
SerializationHelper.serialize(new NullableString((String)values[i]), out);
|
|
|
|
|
} else if (values[i] instanceof TableVariable) {
|
|
|
|
|
SerializationHelper.serialize((TableVariable)values[i], out);
|
|
|
|
|
} else {
|
|
|
|
|
throw new RuntimeException("Internal Error: values array should only contain String and TableVariable");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Variable deserialize(DataInputStream in) throws IOException {
|
|
|
|
|
int index = in.readInt();
|
|
|
|
|
String name = in.readUTF();
|
|
|
|
|
int type = in.readInt();
|
|
|
|
|
|
|
|
|
|
String[] keys = null;
|
|
|
|
|
Object[] values = null;
|
|
|
|
|
int count = in.readInt();
|
|
|
|
|
keys = new String[count];
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
|
keys[i] = ((NullableString) SerializationHelper.deserialize(in)).getRawString();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
values = new Object[count];
|
|
|
|
|
for (int i = 0; i < count; i++) {
|
|
|
|
|
int serialType = in.readInt();
|
|
|
|
|
if (serialType == SerializationHelper.SERIAL_TYPE_NullableString) {
|
|
|
|
|
values[i] = NullableString.deserialize(in).getRawString();
|
|
|
|
|
} else if (serialType == SerializationHelper.SERIAL_TYPE_TableVariable) {
|
|
|
|
|
values[i] = TableVariable.deserialize(in);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TableVariable variable = new TableVariable(index, name, type, keys, values);
|
|
|
|
|
return variable;
|
|
|
|
|
}
|
2007-10-03 17:39:37 +00:00
|
|
|
}
|