207 lines
6.3 KiB
Java
207 lines
6.3 KiB
Java
/*
|
|
* Copyright (c) 2010, Swedish Institute of Computer Science.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $Id: MoteAttributes.java,v 1.3 2010/05/17 14:21:51 fros4943 Exp $
|
|
*/
|
|
|
|
package se.sics.cooja.interfaces;
|
|
|
|
import java.awt.BorderLayout;
|
|
import java.util.Collection;
|
|
import java.util.HashMap;
|
|
import java.util.Observable;
|
|
import java.util.Observer;
|
|
|
|
import javax.swing.JPanel;
|
|
import javax.swing.JTextArea;
|
|
|
|
import org.apache.log4j.Logger;
|
|
import org.jdom.Element;
|
|
|
|
import se.sics.cooja.ClassDescription;
|
|
import se.sics.cooja.Mote;
|
|
import se.sics.cooja.MoteInterface;
|
|
import se.sics.cooja.SimEventCentral.LogOutputEvent;
|
|
import se.sics.cooja.SimEventCentral.LogOutputListener;
|
|
import se.sics.cooja.plugins.skins.AttributeVisualizerSkin;
|
|
|
|
/**
|
|
* MoteAttributes used to store mote attributes for debugging and statistics
|
|
* The interface is write-only: the simulated Contiki has no knowledge of current attributes
|
|
* with other motes. The Contiki application can, however, add and remove attributes.
|
|
*
|
|
* A Contiki application adds/removes a relation by outputting a simple messages on its log interface,
|
|
* typically via printf()'s of the serial port.
|
|
*
|
|
* Mote attributes are visualized by {@link AttributeVisualizerSkin}.
|
|
*
|
|
* Syntax:
|
|
* "#A <Attribute Name>=<Attribute Value>"
|
|
* "#A <Attribute Name>=<Attribute Value>;<Color>"
|
|
*
|
|
* Example, add an attribute 'sent' with value 41:
|
|
* "#A sent=41"
|
|
*
|
|
* Example, add an attribute 'sent' with value 41, visualized in red:
|
|
* "#A sent=41;RED"
|
|
*
|
|
* Example, remove attribute 'sent' (if any):
|
|
* "#A sent"
|
|
*
|
|
* Special attribute example, visualizes mote in red:
|
|
* "#A color=RED"
|
|
*
|
|
* @see AttributeVisualizerSkin
|
|
* @author Joakim Eriksson
|
|
*/
|
|
@ClassDescription("Mote Attributes")
|
|
public class MoteAttributes extends MoteInterface {
|
|
private static Logger logger = Logger.getLogger(MoteAttributes.class);
|
|
private Mote mote = null;
|
|
|
|
private HashMap<String, Object> attributes = new HashMap<String, Object>();
|
|
|
|
private LogOutputListener logListener;
|
|
|
|
public MoteAttributes(Mote mote) {
|
|
this.mote = mote;
|
|
|
|
mote.getSimulation().getEventCentral().addLogOutputListener(logListener = new LogOutputListener() {
|
|
public void moteWasAdded(Mote mote) {
|
|
/* Ignored */
|
|
}
|
|
public void moteWasRemoved(Mote mote) {
|
|
/* Ignored */
|
|
}
|
|
public void newLogOutput(LogOutputEvent ev) {
|
|
if (ev.getMote() != MoteAttributes.this.mote) {
|
|
return;
|
|
}
|
|
handleNewLog(ev.msg);
|
|
}
|
|
public void removedLogOutput(LogOutputEvent ev) {
|
|
/* Ignored */
|
|
}
|
|
});
|
|
}
|
|
|
|
public void removed() {
|
|
super.removed();
|
|
mote.getSimulation().getEventCentral().removeLogOutputListener(logListener);
|
|
}
|
|
|
|
private void handleNewLog(String msg) {
|
|
if (msg == null) {
|
|
return;
|
|
}
|
|
|
|
if (msg.startsWith("DEBUG: ")) {
|
|
msg = msg.substring("DEBUG: ".length());
|
|
}
|
|
|
|
if (!msg.startsWith("#A ")) {
|
|
return;
|
|
}
|
|
/* remove "#A " */
|
|
msg = msg.substring(3);
|
|
|
|
setAttributes(msg);
|
|
|
|
setChanged();
|
|
notifyObservers();
|
|
}
|
|
|
|
private void setAttributes(String att) {
|
|
if (att.indexOf(",") >= 0) {
|
|
/* Handle each attribute separately */
|
|
String[] atts = att.split(",");
|
|
for (int i = 0; i < atts.length; i++) {
|
|
setAttributes(atts[i]);
|
|
}
|
|
return;
|
|
}
|
|
|
|
String[] args = att.split("=");
|
|
if (args.length == 2) {
|
|
attributes.put(args[0], args[1]);
|
|
} else if (args.length == 1) {
|
|
attributes.remove(args[0]);
|
|
} else {
|
|
/* ignore */
|
|
logger.warn(mote + ": Malformed attribute was ignored: " + att);
|
|
}
|
|
}
|
|
|
|
public String getText() {
|
|
StringBuffer sb = new StringBuffer();
|
|
Object[] keys = attributes.keySet().toArray();
|
|
for (int i = 0; i < keys.length; i++) {
|
|
sb.append(keys[i]).append("=").append(attributes.get(keys[i])).append("\n");
|
|
}
|
|
return sb.toString();
|
|
}
|
|
|
|
public JPanel getInterfaceVisualizer() {
|
|
JPanel panel = new JPanel();
|
|
panel.setLayout(new BorderLayout());
|
|
|
|
final JTextArea attributes = new JTextArea();
|
|
attributes.setEditable(false);
|
|
panel.add(attributes);
|
|
attributes.setText(getText());
|
|
|
|
Observer observer;
|
|
this.addObserver(observer = new Observer() {
|
|
public void update(Observable obs, Object obj) {
|
|
attributes.setText(getText());
|
|
}
|
|
});
|
|
|
|
// Saving observer reference for releaseInterfaceVisualizer
|
|
panel.putClientProperty("intf_obs", observer);
|
|
|
|
return panel;
|
|
}
|
|
|
|
public void releaseInterfaceVisualizer(JPanel panel) {
|
|
Observer observer = (Observer) panel.getClientProperty("intf_obs");
|
|
if (observer == null) {
|
|
logger.fatal("Error when releasing panel, observer is null");
|
|
return;
|
|
}
|
|
this.deleteObserver(observer);
|
|
}
|
|
|
|
public Collection<Element> getConfigXML() {
|
|
return null;
|
|
}
|
|
|
|
public void setConfigXML(Collection<Element> configXML, boolean visAvailable) {
|
|
}
|
|
|
|
}
|