radio logger plugin facelift: display the original packet data instead of only the converted data.
this allows viewing all bytes sent from for example sky motes, including radio/mac headers
This commit is contained in:
parent
2ac3662ea8
commit
188ce975ca
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007, Swedish Institute of Computer Science.
|
* Copyright (c) 2009, Swedish Institute of Computer Science.
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* Redistribution and use in source and binary forms, with or without
|
* Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: RadioLogger.java,v 1.15 2009/04/01 13:53:37 fros4943 Exp $
|
* $Id: RadioLogger.java,v 1.16 2009/04/01 23:40:00 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.plugins;
|
package se.sics.cooja.plugins;
|
||||||
|
@ -45,38 +45,32 @@ import se.sics.cooja.interfaces.Radio;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Radio logger listens to the simulation radio medium and lists all transmitted
|
* Radio logger listens to the simulation radio medium and lists all transmitted
|
||||||
* data in a table. By overriding the transformDataToString method, protocol
|
* data in a table.
|
||||||
* specific data can be interpreted.
|
|
||||||
*
|
*
|
||||||
* @see #transformDataToString(byte[])
|
|
||||||
* @author Fredrik Osterlind
|
* @author Fredrik Osterlind
|
||||||
*/
|
*/
|
||||||
@ClassDescription("Radio Logger")
|
@ClassDescription("Radio Logger")
|
||||||
@PluginType(PluginType.SIM_PLUGIN)
|
@PluginType(PluginType.SIM_PLUGIN)
|
||||||
public class RadioLogger extends VisPlugin {
|
public class RadioLogger extends VisPlugin {
|
||||||
private static final long serialVersionUID = 1L;
|
|
||||||
|
|
||||||
private final int DATAPOS_TIME = 0;
|
|
||||||
private final int DATAPOS_CONNECTION = 1;
|
|
||||||
private final int DATAPOS_PACKET = 2;
|
|
||||||
|
|
||||||
private final int COLUMN_TIME = 0;
|
|
||||||
private final int COLUMN_FROM = 1;
|
|
||||||
private final int COLUMN_TO = 2;
|
|
||||||
private final int COLUMN_DATA = 3;
|
|
||||||
|
|
||||||
private static Logger logger = Logger.getLogger(RadioLogger.class);
|
private static Logger logger = Logger.getLogger(RadioLogger.class);
|
||||||
|
|
||||||
|
private final static int COLUMN_TIME = 0;
|
||||||
|
private final static int COLUMN_FROM = 1;
|
||||||
|
private final static int COLUMN_TO = 2;
|
||||||
|
private final static int COLUMN_DATA = 3;
|
||||||
|
|
||||||
|
private final static String[] COLUMN_NAMES = {
|
||||||
|
"Time",
|
||||||
|
"From",
|
||||||
|
"To",
|
||||||
|
"Data"
|
||||||
|
};
|
||||||
|
|
||||||
private Simulation simulation;
|
private Simulation simulation;
|
||||||
|
//private ArrayList<Object[]> rowData = new ArrayList<Object[]>();
|
||||||
private Vector<String> columnNames = new Vector<String>();
|
private ArrayList<RadioConnectionLog> connections = new ArrayList<RadioConnectionLog>();
|
||||||
|
|
||||||
private Vector<Object[]> rowData = new Vector<Object[]>();
|
|
||||||
|
|
||||||
private JTable dataTable = null;
|
private JTable dataTable = null;
|
||||||
|
|
||||||
private RadioMedium radioMedium;
|
private RadioMedium radioMedium;
|
||||||
|
|
||||||
private Observer radioMediumObserver;
|
private Observer radioMediumObserver;
|
||||||
|
|
||||||
public RadioLogger(final Simulation simulationToControl, final GUI gui) {
|
public RadioLogger(final Simulation simulationToControl, final GUI gui) {
|
||||||
|
@ -84,54 +78,50 @@ public class RadioLogger extends VisPlugin {
|
||||||
simulation = simulationToControl;
|
simulation = simulationToControl;
|
||||||
radioMedium = simulation.getRadioMedium();
|
radioMedium = simulation.getRadioMedium();
|
||||||
|
|
||||||
columnNames.add("Time");
|
|
||||||
columnNames.add("From");
|
|
||||||
columnNames.add("To");
|
|
||||||
columnNames.add("Data");
|
|
||||||
|
|
||||||
final AbstractTableModel model = new AbstractTableModel() {
|
final AbstractTableModel model = new AbstractTableModel() {
|
||||||
public String getColumnName(int col) {
|
public String getColumnName(int col) {
|
||||||
return columnNames.get(col).toString();
|
return COLUMN_NAMES[col];
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getRowCount() {
|
public int getRowCount() {
|
||||||
return rowData.size();
|
return connections.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getColumnCount() {
|
public int getColumnCount() {
|
||||||
return columnNames.size();
|
return COLUMN_NAMES.length;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Object getValueAt(int row, int col) {
|
public Object getValueAt(int row, int col) {
|
||||||
|
RadioConnectionLog conn = connections.get(row);
|
||||||
if (col == COLUMN_TIME) {
|
if (col == COLUMN_TIME) {
|
||||||
return rowData.get(row)[DATAPOS_TIME];
|
return conn.startTime;
|
||||||
} else if (col == COLUMN_FROM) {
|
} else if (col == COLUMN_FROM) {
|
||||||
return ((RadioConnection)rowData.get(row)[DATAPOS_CONNECTION]).getSource().getMote();
|
return conn.connection.getSource().getMote();
|
||||||
} else if (col == COLUMN_TO) {
|
} else if (col == COLUMN_TO) {
|
||||||
return "[" + ((RadioConnection)rowData.get(row)[DATAPOS_CONNECTION]).getDestinations().length + " motes]";
|
Radio[] dests = conn.connection.getDestinations();
|
||||||
} else if (col == COLUMN_DATA) {
|
if (dests.length == 1) {
|
||||||
RadioPacket packet = (RadioPacket) rowData.get(row)[DATAPOS_PACKET];
|
return dests[0].getMote();
|
||||||
if (packet == null) {
|
|
||||||
return "[null]";
|
|
||||||
}
|
}
|
||||||
|
return "[" + dests.length + " motes]";
|
||||||
return transformDataToString(packet.getPacketData());
|
} else if (col == COLUMN_DATA) {
|
||||||
} else {
|
if (conn.data == null) {
|
||||||
logger.fatal("Bad row/col: " + row + "/" + col);
|
prepareDataString(connections.get(row));
|
||||||
|
}
|
||||||
|
return conn.data;
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isCellEditable(int row, int col) {
|
public boolean isCellEditable(int row, int col) {
|
||||||
if (col == COLUMN_FROM) {
|
if (col == COLUMN_FROM) {
|
||||||
// Try to highligt selected mote
|
/* Highlight source */
|
||||||
gui.signalMoteHighlight(
|
gui.signalMoteHighlight(connections.get(row).connection.getSource().getMote());
|
||||||
((RadioConnection)rowData.get(row)[DATAPOS_CONNECTION]).getSource().getMote()
|
return false;
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (col == COLUMN_TO) {
|
if (col == COLUMN_TO) {
|
||||||
Radio dests[] = ((RadioConnection)rowData.get(row)[DATAPOS_CONNECTION]).getDestinations();
|
/* Highlight all destinations */
|
||||||
|
Radio dests[] = connections.get(row).connection.getDestinations();
|
||||||
for (Radio dest: dests) {
|
for (Radio dest: dests) {
|
||||||
gui.signalMoteHighlight(dest.getMote());
|
gui.signalMoteHighlight(dest.getMote());
|
||||||
}
|
}
|
||||||
|
@ -145,26 +135,26 @@ public class RadioLogger extends VisPlugin {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
final JComboBox comboBox = new JComboBox();
|
final JComboBox destinationComboBox = new JComboBox();
|
||||||
|
|
||||||
dataTable = new JTable(model) {
|
dataTable = new JTable(model) {
|
||||||
public TableCellEditor getCellEditor(int row, int column) {
|
public TableCellEditor getCellEditor(int row, int column) {
|
||||||
// Populate combo box
|
/* Reset destination box */
|
||||||
comboBox.removeAllItems();
|
destinationComboBox.removeAllItems();
|
||||||
if (row < 0 || row >= rowData.size()) {
|
if (row < 0 || row >= connections.size()) {
|
||||||
return super.getCellEditor(row, column);
|
return super.getCellEditor(row, column);
|
||||||
}
|
}
|
||||||
|
|
||||||
RadioConnection conn = (RadioConnection) rowData.get(row)[DATAPOS_CONNECTION];
|
RadioConnection conn = connections.get(row).connection;
|
||||||
if (conn == null) {
|
if (conn == null) {
|
||||||
return super.getCellEditor(row, column);
|
return super.getCellEditor(row, column);
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Radio destRadio: conn.getDestinations()) {
|
for (Radio destRadio: conn.getDestinations()) {
|
||||||
if (destRadio.getMote() != null) {
|
if (destRadio.getMote() != null) {
|
||||||
comboBox.addItem(destRadio.getMote());
|
destinationComboBox.addItem(destRadio.getMote());
|
||||||
} else {
|
} else {
|
||||||
comboBox.addItem("[standalone radio]");
|
destinationComboBox.addItem("[standalone radio]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,63 +167,72 @@ public class RadioLogger extends VisPlugin {
|
||||||
int colIndex = columnAtPoint(p);
|
int colIndex = columnAtPoint(p);
|
||||||
int realColumnIndex = convertColumnIndexToModel(colIndex);
|
int realColumnIndex = convertColumnIndexToModel(colIndex);
|
||||||
|
|
||||||
String tip = "";
|
RadioConnectionLog conn = connections.get(rowIndex);
|
||||||
if (realColumnIndex == COLUMN_DATA) {
|
if (realColumnIndex == COLUMN_TIME) {
|
||||||
RadioPacket packet = (RadioPacket) rowData.get(rowIndex)[DATAPOS_PACKET];
|
return
|
||||||
if (packet != null) {
|
"<html>" +
|
||||||
byte[] data = packet.getPacketData();
|
"Start time: " + conn.startTime +
|
||||||
|
"<br>" +
|
||||||
LoggedPacket logPacket = analyzePacket(data);
|
"End time: " + conn.endTime +
|
||||||
if (logPacket != null) {
|
"<br><br>" +
|
||||||
tip = logPacket.getToolTip();
|
"Duration: " + (conn.endTime - conn.startTime)+
|
||||||
}
|
"</html>";
|
||||||
}
|
} else if (realColumnIndex == COLUMN_FROM) {
|
||||||
|
return conn.connection.getSource().getMote().toString();
|
||||||
|
} else if (realColumnIndex == COLUMN_TO) {
|
||||||
} else {
|
String tip = "<html>";
|
||||||
tip = super.getToolTipText(e);
|
Radio[] dests = conn.connection.getDestinations();
|
||||||
|
for (Radio radio: dests) {
|
||||||
|
tip += radio.getMote() + "<br>";
|
||||||
}
|
}
|
||||||
|
tip += "</html>";
|
||||||
return tip;
|
return tip;
|
||||||
|
} else if (realColumnIndex == COLUMN_DATA) {
|
||||||
|
if (conn.tooltip == null) {
|
||||||
|
prepareTooltipString(conn);
|
||||||
|
}
|
||||||
|
return conn.tooltip;
|
||||||
|
}
|
||||||
|
return super.getToolTipText(e);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// Set data column width greedy
|
// Set data column width greedy
|
||||||
dataTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
|
dataTable.setAutoResizeMode(JTable.AUTO_RESIZE_LAST_COLUMN);
|
||||||
dataTable.getColumnModel().getColumn(COLUMN_TIME).setPreferredWidth(55);
|
dataTable.getColumnModel().getColumn(COLUMN_TIME).setPreferredWidth(150);
|
||||||
dataTable.getColumnModel().getColumn(COLUMN_FROM).setPreferredWidth(130);
|
dataTable.getColumnModel().getColumn(COLUMN_TIME).setResizable(false);
|
||||||
dataTable.getColumnModel().getColumn(COLUMN_TO).setPreferredWidth(100);
|
dataTable.getColumnModel().getColumn(COLUMN_FROM).setPreferredWidth(250);
|
||||||
|
dataTable.getColumnModel().getColumn(COLUMN_TO).setPreferredWidth(250);
|
||||||
|
dataTable.getColumnModel().getColumn(COLUMN_DATA).setPreferredWidth(1500);
|
||||||
|
|
||||||
dataTable.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
|
dataTable.getSelectionModel().setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
|
||||||
|
|
||||||
TableColumn destColumn = dataTable.getColumnModel().getColumn(COLUMN_TO);
|
TableColumn destColumn = dataTable.getColumnModel().getColumn(COLUMN_TO);
|
||||||
destColumn.setCellEditor(new DefaultCellEditor(comboBox));
|
destColumn.setCellEditor(new DefaultCellEditor(destinationComboBox));
|
||||||
|
|
||||||
final JScrollPane scrollPane = new JScrollPane(dataTable);
|
|
||||||
// dataTable.setFillsViewportHeight(true);
|
|
||||||
|
|
||||||
add(scrollPane);
|
|
||||||
|
|
||||||
simulation.getRadioMedium().addRadioMediumObserver(radioMediumObserver = new Observer() {
|
simulation.getRadioMedium().addRadioMediumObserver(radioMediumObserver = new Observer() {
|
||||||
public void update(Observable obs, Object obj) {
|
public void update(Observable obs, Object obj) {
|
||||||
RadioConnection[] newConnections = radioMedium.getLastTickConnections();
|
RadioConnection[] conns = radioMedium.getLastTickConnections();
|
||||||
if (newConnections == null) {
|
if (conns == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
for (RadioConnection newConnection: newConnections) {
|
for (RadioConnection conn : conns) {
|
||||||
Object[] data = new Object[3];
|
RadioConnectionLog loggedConn = new RadioConnectionLog();
|
||||||
data[DATAPOS_TIME] = new Long(simulation.getSimulationTime());
|
loggedConn.startTime = conn.getStartTime();
|
||||||
data[DATAPOS_CONNECTION] = newConnection;
|
loggedConn.endTime = simulation.getSimulationTime();
|
||||||
|
loggedConn.connection = conn;
|
||||||
data[DATAPOS_PACKET] = newConnection.getSource().getLastPacketTransmitted();
|
loggedConn.packet = conn.getSource().getLastPacketTransmitted();
|
||||||
|
connections.add(loggedConn);
|
||||||
rowData.add(data);
|
|
||||||
}
|
}
|
||||||
model.fireTableRowsInserted(rowData.size() - newConnections.length + 1, rowData.size());
|
model.fireTableRowsInserted(connections.size() - conns.length + 1, connections.size());
|
||||||
setTitle("Radio Logger: " + rowData.size() + " packets");
|
setTitle("Radio Logger: " + connections.size() + " packets");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
add(new JScrollPane(dataTable));
|
||||||
|
|
||||||
|
setSize(500, 300);
|
||||||
try {
|
try {
|
||||||
setSelected(true);
|
setSelected(true);
|
||||||
} catch (java.beans.PropertyVetoException e) {
|
} catch (java.beans.PropertyVetoException e) {
|
||||||
|
@ -241,423 +240,56 @@ public class RadioLogger extends VisPlugin {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
private void prepareDataString(RadioConnectionLog conn) {
|
||||||
* Transform transmitted data to representable object, such as a string.
|
byte[] data;
|
||||||
*
|
if (conn.packet instanceof ConvertedRadioPacket) {
|
||||||
* @param data Transmitted data
|
data = ((ConvertedRadioPacket)conn.packet).getOriginalPacketData();
|
||||||
* @return Representable object
|
|
||||||
*/
|
|
||||||
public Object transformDataToString(byte[] data) {
|
|
||||||
if (data == null) {
|
|
||||||
return "[unknown data]";
|
|
||||||
}
|
|
||||||
|
|
||||||
LoggedPacket packet = analyzePacket(data);
|
|
||||||
if (packet == null) {
|
|
||||||
return "Unknown packet, size " + data.length;
|
|
||||||
} else {
|
} else {
|
||||||
return packet.getShortDescription();
|
data = conn.packet.getPacketData();
|
||||||
|
}
|
||||||
|
if (data == null) {
|
||||||
|
conn.data = "[unknown data]";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
conn.data = "";
|
||||||
|
for (byte b: data) {
|
||||||
|
String hexB = "0" + Integer.toHexString(b);
|
||||||
|
hexB = hexB.substring(hexB.length() - 2);
|
||||||
|
conn.data += "0x" + hexB + " ";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static abstract class LoggedPacket {
|
private void prepareTooltipString(RadioConnectionLog conn) {
|
||||||
public abstract String getShortDescription();
|
RadioPacket packet = conn.packet;
|
||||||
public abstract String getToolTip();
|
if (packet == null) {
|
||||||
|
conn.tooltip = "";
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
static class PacketAODV_RREQ extends LoggedPacket {
|
byte[] data;
|
||||||
public final static int SIZE = 52;
|
if (packet instanceof ConvertedRadioPacket) {
|
||||||
public final static int HEADER_SIZE = 24;
|
data = ((ConvertedRadioPacket)packet).getOriginalPacketData();
|
||||||
public final static int TYPE = 1;
|
} else {
|
||||||
|
data = packet.getPacketData();
|
||||||
private byte[] data;
|
|
||||||
public PacketAODV_RREQ(byte[] packetData) {
|
|
||||||
this.data = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, data, 0, HEADER_SIZE);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getType() {
|
conn.tooltip = "<html><b>Packet data</b><br>";
|
||||||
return data[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getFlags() {
|
|
||||||
return data[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getReserved() {
|
|
||||||
return data[2];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getHopCount() {
|
|
||||||
return data[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getID() {
|
|
||||||
int id =
|
|
||||||
((data[4] & 0xFF) << 24) +
|
|
||||||
((data[5] & 0xFF) << 16) +
|
|
||||||
((data[6] & 0xFF) << 8) +
|
|
||||||
((data[7] & 0xFF) << 0);
|
|
||||||
return id;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDestAddr() {
|
|
||||||
return (0xff&data[8]) + "." + (0xff&data[9]) + "." + (0xff&data[10]) + "." + (0xff&data[11]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDestSeqNo() {
|
|
||||||
int seqNo =
|
|
||||||
((data[12] & 0xFF) << 24) +
|
|
||||||
((data[13] & 0xFF) << 16) +
|
|
||||||
((data[14] & 0xFF) << 8) +
|
|
||||||
((data[15] & 0xFF) << 0);
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrigAddr() {
|
|
||||||
return (0xff&data[16]) + "." + (0xff&data[17]) + "." + (0xff&data[18]) + "." + (0xff&data[19]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getOrigSeqNo() {
|
|
||||||
int seqNo =
|
|
||||||
((data[20] & 0xFF) << 24) +
|
|
||||||
((data[21] & 0xFF) << 16) +
|
|
||||||
((data[22] & 0xFF) << 8) +
|
|
||||||
((data[23] & 0xFF) << 0);
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "AODV RREQ to " + getDestAddr() + " from " + getOrigAddr();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getToolTip() {
|
|
||||||
return "<html>" +
|
|
||||||
"AODV RREQ type: " + getType() + "<br>" +
|
|
||||||
"AODV RREQ flags: " + getFlags() + "<br>" +
|
|
||||||
"AODV RREQ reserved: " + getReserved() + "<br>" +
|
|
||||||
"AODV RREQ hop_count: " + getHopCount() + "<br>" +
|
|
||||||
"AODV RREQ id: " + getID() + "<br>" +
|
|
||||||
"AODV RREQ dest_addr: " + getDestAddr() + "<br>" +
|
|
||||||
"AODV RREQ dest_seqno: " + getDestSeqNo() + "<br>" +
|
|
||||||
"AODV RREQ orig_addr: " + getOrigAddr() + "<br>" +
|
|
||||||
"AODV RREQ orig_seqno: " + getOrigSeqNo() +
|
|
||||||
"</html>";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean dataFits(byte[] packetData) {
|
|
||||||
if (packetData.length != SIZE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] dataNoHeader = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, dataNoHeader, 0, HEADER_SIZE);
|
|
||||||
|
|
||||||
if (dataNoHeader[0] != TYPE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
static class PacketAODV_RREP extends LoggedPacket {
|
|
||||||
public final static int SIZE = 56;
|
|
||||||
public final static int HEADER_SIZE = 20;
|
|
||||||
public final static int TYPE = 2;
|
|
||||||
|
|
||||||
private byte[] data;
|
|
||||||
|
|
||||||
public PacketAODV_RREP(byte[] packetData) {
|
|
||||||
this.data = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, data, 0, HEADER_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getType() {
|
|
||||||
return data[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getFlags() {
|
|
||||||
return data[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getPrefix() {
|
|
||||||
return data[2];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getHopCount() {
|
|
||||||
return data[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getDestAddr() {
|
|
||||||
return (0xff&data[4]) + "." + (0xff&data[5]) + "." + (0xff&data[6]) + "." + (0xff&data[7]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDestSeqNo() {
|
|
||||||
int seqNo =
|
|
||||||
((data[8] & 0xFF) << 24) +
|
|
||||||
((data[9] & 0xFF) << 16) +
|
|
||||||
((data[10] & 0xFF) << 8) +
|
|
||||||
((data[11] & 0xFF) << 0);
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getOrigAddr() {
|
|
||||||
return (0xff&data[12]) + "." + (0xff&data[13]) + "." + (0xff&data[14]) + "." + (0xff&data[15]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getLifetime() {
|
|
||||||
int seqNo =
|
|
||||||
((data[16] & 0xFF) << 24) +
|
|
||||||
((data[17] & 0xFF) << 16) +
|
|
||||||
((data[18] & 0xFF) << 8) +
|
|
||||||
((data[19] & 0xFF) << 0);
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "AODV RREP to " + getDestAddr() + " from " + getOrigAddr();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getToolTip() {
|
|
||||||
return "<html>" +
|
|
||||||
"AODV RREP type: " + getType() + "<br>" +
|
|
||||||
"AODV RREP flags: " + getFlags() + "<br>" +
|
|
||||||
"AODV RREP prefix: " + getPrefix() + "<br>" +
|
|
||||||
"AODV RREP hop_count: " + getHopCount() + "<br>" +
|
|
||||||
"AODV RREP dest_addr: " + getDestAddr() + "<br>" +
|
|
||||||
"AODV RREP dest_seqno: " + getDestSeqNo() + "<br>" +
|
|
||||||
"AODV RREP orig_addr: " + getOrigAddr() + "<br>" +
|
|
||||||
"AODV RREP lifetime: " + getLifetime() + "<br>" +
|
|
||||||
"</html>";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean dataFits(byte[] packetData) {
|
|
||||||
if (packetData.length != SIZE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] dataNoHeader = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, dataNoHeader, 0, HEADER_SIZE);
|
|
||||||
|
|
||||||
if (dataNoHeader[0] != TYPE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
static class PacketAODV_RERR extends LoggedPacket {
|
|
||||||
public final static int SIZE = 40;
|
|
||||||
public final static int HEADER_SIZE = 12;
|
|
||||||
public final static int TYPE = 3;
|
|
||||||
|
|
||||||
private byte[] data;
|
|
||||||
public PacketAODV_RERR(byte[] packetData) {
|
|
||||||
this.data = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, data, 0, HEADER_SIZE);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getType() {
|
|
||||||
return data[0];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getFlags() {
|
|
||||||
return data[1];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getReserved() {
|
|
||||||
return data[2];
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getDestCount() {
|
|
||||||
return data[3];
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getUnreachAddr() {
|
|
||||||
return (0xff&data[4]) + "." + (0xff&data[5]) + "." + (0xff&data[6]) + "." + (0xff&data[7]);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getUnreachSeqNo() {
|
|
||||||
int seqNo =
|
|
||||||
((data[8] & 0xFF) << 24) +
|
|
||||||
((data[9] & 0xFF) << 16) +
|
|
||||||
((data[10] & 0xFF) << 8) +
|
|
||||||
((data[11] & 0xFF) << 0);
|
|
||||||
return seqNo;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "AODV RERR for " + getUnreachAddr();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getToolTip() {
|
|
||||||
return "<html>" +
|
|
||||||
"AODV RERR type: " + getType() + "<br>" +
|
|
||||||
"AODV RERR flags: " + getFlags() + "<br>" +
|
|
||||||
"AODV RERR reserved: " + getReserved() + "<br>" +
|
|
||||||
"AODV RERR dest_count: " + getDestCount() + "<br>" +
|
|
||||||
"AODV RERR unreach_addr: " + getUnreachAddr() + "<br>" +
|
|
||||||
"AODV RERR unreach_seqno: " + getUnreachSeqNo() + "<br>" +
|
|
||||||
"</html>";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean dataFits(byte[] packetData) {
|
|
||||||
if (packetData.length != SIZE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
byte[] dataNoHeader = new byte[HEADER_SIZE];
|
|
||||||
System.arraycopy(packetData, packetData.length - HEADER_SIZE, dataNoHeader, 0, HEADER_SIZE);
|
|
||||||
|
|
||||||
if (dataNoHeader[0] != TYPE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
static class AckPacket extends LoggedPacket {
|
|
||||||
public final static int SIZE = 5;
|
|
||||||
|
|
||||||
private byte[] data;
|
|
||||||
public AckPacket(byte[] packetData) {
|
|
||||||
this.data = packetData;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getChecksum() {
|
|
||||||
int checksum =
|
|
||||||
((data[3] & 0xFF) << 8) +
|
|
||||||
((data[4] & 0xFF) << 0);
|
|
||||||
return checksum;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "ACK";
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getToolTip() {
|
|
||||||
return "<html>" +
|
|
||||||
"ACK checksum: " + getChecksum() + "<br>" +
|
|
||||||
"</html>";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean dataFits(byte[] packetData) {
|
|
||||||
if (packetData.length != SIZE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[0] != (byte) 'a') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[1] != (byte) 'C') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[2] != (byte) 'k') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
static class ForwardedPacketUnknown extends PacketUnknown {
|
|
||||||
public final static int MINIMUM_SIZE = 4;
|
|
||||||
|
|
||||||
public ForwardedPacketUnknown(byte[] data) {
|
|
||||||
super(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "(FWD) " + super.getShortDescription();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static boolean dataFits(byte[] packetData) {
|
|
||||||
if (packetData.length < ForwardedPacketUnknown.MINIMUM_SIZE) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[0] != (byte) 'f') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[1] != (byte) 'W') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[2] != (byte) 'd') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (packetData[3] != (byte) ':') {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static class PacketUnknown extends LoggedPacket {
|
|
||||||
private byte[] data = null;
|
|
||||||
|
|
||||||
public PacketUnknown(byte[] data) {
|
|
||||||
this.data = data;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getShortDescription() {
|
|
||||||
return "Data packet, size " + data.length;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getToolTip() {
|
|
||||||
String toolTip = "<html><b>Data packet</b><br>";
|
|
||||||
|
|
||||||
int byteCounter = 0;
|
int byteCounter = 0;
|
||||||
for (byte b: data) {
|
for (byte b: data) {
|
||||||
String hexB = "0" + Integer.toHexString(b);
|
String hexB = "0" + Integer.toHexString(b);
|
||||||
hexB = hexB.substring(hexB.length() - 2);
|
hexB = hexB.substring(hexB.length() - 2);
|
||||||
toolTip += "0x" + hexB + " ";
|
conn.tooltip += "0x" + hexB + " ";
|
||||||
if (byteCounter++ > 2) {
|
if (byteCounter++ > 2) {
|
||||||
toolTip += "<br>";
|
conn.tooltip += "<br>";
|
||||||
byteCounter = 0;
|
byteCounter = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
toolTip += "<br><br>";
|
conn.tooltip += "<br><br>";
|
||||||
for (byte b: data) {
|
for (byte b: data) {
|
||||||
toolTip += (char) b;
|
conn.tooltip += (char) b;
|
||||||
}
|
}
|
||||||
toolTip += "</html>";
|
conn.tooltip += "</html>";
|
||||||
return toolTip;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private LoggedPacket analyzePacket(byte[] data) {
|
|
||||||
|
|
||||||
if (PacketAODV_RREQ.dataFits(data)) {
|
|
||||||
return new PacketAODV_RREQ(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PacketAODV_RREP.dataFits(data)) {
|
|
||||||
return new PacketAODV_RREP(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (PacketAODV_RERR.dataFits(data)) {
|
|
||||||
return new PacketAODV_RERR(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ForwardedPacketUnknown.dataFits(data)) {
|
|
||||||
return new ForwardedPacketUnknown(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (AckPacket.dataFits(data)) {
|
|
||||||
return new AckPacket(data);
|
|
||||||
}
|
|
||||||
|
|
||||||
return new PacketUnknown(data);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void closePlugin() {
|
public void closePlugin() {
|
||||||
|
@ -675,4 +307,13 @@ public class RadioLogger extends VisPlugin {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private class RadioConnectionLog {
|
||||||
|
long startTime;
|
||||||
|
long endTime;
|
||||||
|
RadioConnection connection;
|
||||||
|
RadioPacket packet;
|
||||||
|
|
||||||
|
String data = null;
|
||||||
|
String tooltip = null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue