public boolean setConfigXML( Simulation simulation, Collection<Element> configXML, boolean visAvailable) { for (Element element : configXML) { String name = element.getName(); if (name.equals("motetype_identifier")) { setSimulation(simulation); myMoteType = (MspMoteType) simulation.getMoteType(element.getText()); getType().setIdentifier(element.getText()); initEmulator(myMoteType.getContikiFirmwareFile()); myMoteInterfaceHandler = createMoteInterfaceHandler(); } else if (name.equals("interface_config")) { String intfClass = element.getText().trim(); if (intfClass.equals("se.sics.cooja.mspmote.interfaces.MspIPAddress")) { intfClass = IPAddress.class.getName(); } Class<? extends MoteInterface> moteInterfaceClass = simulation.getGUI().tryLoadClass(this, MoteInterface.class, intfClass); if (moteInterfaceClass == null) { logger.fatal("Could not load mote interface class: " + intfClass); return false; } MoteInterface moteInterface = getInterfaces().getInterfaceOfType(moteInterfaceClass); moteInterface.setConfigXML(element.getChildren(), visAvailable); } } return true; }
public boolean setConfigXML( Simulation simulation, Collection<Element> configXML, boolean visAvailable) { setSimulation(simulation); myMoteInterfaceHandler = createMoteInterfaceHandler(); /* Create watchpoint container */ try { breakpointsContainer = new MspBreakpointContainer(this, ((MspMoteType) getType()).getFirmwareDebugInfo()); } catch (IOException e) { throw (RuntimeException) new RuntimeException("Error: " + e.getMessage()).initCause(e); } for (Element element : configXML) { String name = element.getName(); if (name.equals("motetype_identifier")) { /* Ignored: handled by simulation */ } else if ("breakpoints".equals(element.getName())) { breakpointsContainer.setConfigXML(element.getChildren(), visAvailable); } else if (name.equals("interface_config")) { String intfClass = element.getText().trim(); if (intfClass.equals("se.sics.cooja.mspmote.interfaces.MspIPAddress")) { intfClass = IPAddress.class.getName(); } if (intfClass.equals("se.sics.cooja.mspmote.interfaces.ESBLog")) { intfClass = MspSerial.class.getName(); } if (intfClass.equals("se.sics.cooja.mspmote.interfaces.SkySerial")) { intfClass = MspSerial.class.getName(); } Class<? extends MoteInterface> moteInterfaceClass = simulation.getGUI().tryLoadClass(this, MoteInterface.class, intfClass); if (moteInterfaceClass == null) { logger.fatal("Could not load mote interface class: " + intfClass); return false; } MoteInterface moteInterface = getInterfaces().getInterfaceOfType(moteInterfaceClass); moteInterface.setConfigXML(element.getChildren(), visAvailable); } } /* Schedule us immediately */ requestImmediateWakeup(); return true; }
private static void generate(File config, File jar) { if (!config.exists()) { throw new RuntimeException("Simulation config not found: " + config.getAbsolutePath()); } /* Load simulation */ logger.info("Loading " + config); GUI.externalToolsUserSettingsFile = new File(System.getProperty("user.home"), GUI.EXTERNAL_TOOLS_USER_SETTINGS_FILENAME); Simulation s = GUI.quickStartSimulationConfig(config, false, null); if (s == null) { throw new RuntimeException("Error when creating simulation"); } s.stopSimulation(); try { buildExecutableJAR(s.getGUI(), jar); } catch (RuntimeException e) { logger.fatal(e.getMessage(), e); System.exit(1); } System.exit(0); }