/** * Copyright (c) 2010-2016 by the respective copyright holders. * * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html */ package org.openhab.binding.zwave.internal.protocol.commandclass; import java.io.ByteArrayOutputStream; import java.io.UnsupportedEncodingException; import java.util.ArrayList; import java.util.Collection; import org.openhab.binding.zwave.internal.protocol.SerialMessage; import org.openhab.binding.zwave.internal.protocol.SerialMessage.SerialMessageClass; import org.openhab.binding.zwave.internal.protocol.SerialMessage.SerialMessagePriority; import org.openhab.binding.zwave.internal.protocol.SerialMessage.SerialMessageType; import org.openhab.binding.zwave.internal.protocol.ZWaveController; import org.openhab.binding.zwave.internal.protocol.ZWaveEndpoint; import org.openhab.binding.zwave.internal.protocol.ZWaveNode; import org.openhab.binding.zwave.internal.protocol.event.ZWaveCommandClassValueEvent; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.thoughtworks.xstream.annotations.XStreamAlias; import com.thoughtworks.xstream.annotations.XStreamOmitField; /** * Handles the Node Naming command class. * The Node Naming command class are used to assign names and locations to devices. * Setting name and location of devices is mainly an installer task, so this command class * is only used to configure the Z-Wave network and help troubleshoot it later by giving the installer * the means to specify where in the home a device is located and what friendly name it has instead * of working with just node numbers. * * An openHab administration tool like HABmin can set and read the nodes' names and locations. * * @author Pedro Paixao * @since 1.8.0 */ @XStreamAlias("nameLocationCommandClass") public class ZWaveNodeNamingCommandClass extends ZWaveCommandClass implements ZWaveCommandClassInitialization, ZWaveCommandClassDynamicState { @XStreamOmitField private static final Logger logger = LoggerFactory.getLogger(ZWaveNodeNamingCommandClass.class); private static final int NAME_SET = 0x01; private static final int NAME_GET = 0x02; private static final int NAME_REPORT = 0x03; private static final int LOCATION_SET = 0x04; private static final int LOCATION_GET = 0x05; private static final int LOCATION_REPORT = 0x06; private static final int ENCODING_ASCII = 0x00; private static final int ENCODING_EXTENDED_ASCII = 0x01; private static final int ENCODING_UTF16 = 0x02; private static final int MAX_STRING_LENGTH = 16; @XStreamOmitField private boolean initialiseDone = false; private boolean initialiseName = false; private boolean initialiseLocation = false; @XStreamOmitField private boolean dynamicDone = false; String name = new String(); String location = new String(); /** * Creates a new instance of the ZWaveNameLocationCommandClass class. * * @param node the node this command class belongs to * @param controller the controller to use * @param endpoint the endpoint this Command class belongs to */ public ZWaveNodeNamingCommandClass(ZWaveNode node, ZWaveController controller, ZWaveEndpoint endpoint) { super(node, controller, endpoint); } public String getName() { if (initialiseName) { return name; } return null; } public String getLocation() { if (initialiseLocation) { return location; } return null; } /** * {@inheritDoc} */ @Override public CommandClass getCommandClass() { return CommandClass.NODE_NAMING; } /** * {@inheritDoc} */ @Override public void handleApplicationCommandRequest(SerialMessage serialMessage, int offset, int endpoint) { logger.debug("NODE {}: Received NodeNaming Command Class Request", this.getNode().getNodeId()); int command = serialMessage.getMessagePayloadByte(offset); switch (command) { case NAME_SET: logger.debug("NODE {}: Name Set sent to the controller will be processed as Name Report", this.getNode().getNodeId()); // Process this as if it was a value report. processNameReport(serialMessage, offset, endpoint); initialiseName = true; break; case LOCATION_SET: logger.debug("NODE {}: Location Set sent to the controller will be processed as Location Report", this.getNode().getNodeId()); // Process this as if it was a value report. processLocationReport(serialMessage, offset, endpoint); initialiseLocation = true; break; case LOCATION_GET: case NAME_GET: logger.warn(String.format("Command 0x%02X not implemented.", command)); return; case NAME_REPORT: logger.trace("NODE {}: Process Name Report", this.getNode().getNodeId()); processNameReport(serialMessage, offset, endpoint); initialiseName = true; break; case LOCATION_REPORT: logger.trace("NODE {}: Process Location Report", this.getNode().getNodeId()); processLocationReport(serialMessage, offset, endpoint); initialiseLocation = true; break; default: logger.warn(String.format("Unsupported Command 0x%02X for command class %s (0x%02X).", command, this.getCommandClass().getLabel(), this.getCommandClass().getKey())); } // If both name and location have been initialized the initialization is done. initialiseDone = initialiseName && initialiseLocation; } /** * Get a string from the serial message * * @param serialMessage * @param offset * @return String */ protected String getString(SerialMessage serialMessage, int offset) { int charPresentation = serialMessage.getMessagePayloadByte(offset + 1); // First 5 bits are reserved so 0 them charPresentation = 0x07 & charPresentation; switch (charPresentation) { case ENCODING_ASCII: logger.debug("NODE {} : Node Name is encoded with standard ASCII codes", this.getNode().getNodeId()); break; case ENCODING_EXTENDED_ASCII: logger.debug("NODE {} : Node Name is encoded with standard and OEM Extended ASCII codes", this.getNode().getNodeId()); break; case ENCODING_UTF16: logger.debug("NODE {} : Node Name is encoded with Unicode UTF-16", this.getNode().getNodeId()); break; default: logger.error("NODE {} : Node Name encoding is unsupported. Encoding code {}", this.getNode().getNodeId(), charPresentation); return null; } int numBytes = serialMessage.getMessagePayload().length - (offset + 2); if (numBytes < 0) { logger.error("NODE {} : Node Name report error in message length ({})", this.getNode().getNodeId(), serialMessage.getMessagePayload().length); return null; } if (numBytes == 0) { return new String(); } // Maximum length is 16 bytes if (numBytes > MAX_STRING_LENGTH) { logger.warn("NODE {} : Node Name is too big; maximum is {} characters {}", this.getNode().getNodeId(), MAX_STRING_LENGTH, numBytes); numBytes = MAX_STRING_LENGTH; } if (charPresentation != ENCODING_ASCII) { logger.debug("NODE {}: Switching to using ASCII encoding", getNode().getNodeId()); charPresentation = ENCODING_ASCII; } ByteArrayOutputStream str = new ByteArrayOutputStream(); // Check for null terminations - ignore anything after the first null for (int c = 0; c < numBytes; c++) { if (serialMessage.getMessagePayloadByte(c + offset + 2) > 32 && serialMessage.getMessagePayloadByte(c + offset + 2) < 127) { str.write((byte) (serialMessage.getMessagePayloadByte(c + offset + 2))); } } try { return new String(str.toByteArray(), "ASCII"); } catch (UnsupportedEncodingException e) { return null; } /* * byte[] strBuffer = Arrays.copyOfRange(serialMessage.getMessagePayload(), offset + 2, offset + 2 + numBytes); * * String response = null; * try { * switch (charPresentation) { * case ENCODING_ASCII: * // Using standard ASCII codes. (values 128-255 are ignored) * break; * case ENCODING_EXTENDED_ASCII: * // Using standard and OEM Extended ASCII * response = new String(strBuffer, "ASCII"); * break; * * case ENCODING_UTF16: * // Unicode UTF-16 * String sTemp = new String(strBuffer, "UTF-16"); * response = new String(sTemp.getBytes("UTF-8"), "UTF-8"); * break; * } * } catch (UnsupportedEncodingException uee) { * System.out.println("Exception: " + uee); * } * if (response == null) { * return null; * } * * return response.replaceAll("\\p{C}", "?"); */ } /** * Processes a NAME_REPORT / NAME_SET message. * * @param serialMessage the incoming message to process. * @param offset the offset position from which to start message processing. * @param endpoint the endpoint or instance number this message is meant for. */ protected void processNameReport(SerialMessage serialMessage, int offset, int endpoint) { String name = getString(serialMessage, offset); if (name == null) { return; } this.name = name; logger.debug("NODE {}: Node name: {}", this.getNode().getNodeId(), name); ZWaveCommandClassValueEvent zEvent = new ZWaveCommandClassValueEvent(this.getNode().getNodeId(), endpoint, this.getCommandClass(), name); this.getController().notifyEventListeners(zEvent); } /** * Processes a LOCATION_REPORT / LOCATION_SET message. * * @param serialMessage the incoming message to process. * @param offset the offset position from which to start message processing. * @param endpoint the endpoint or instance number this message is meant for. */ protected void processLocationReport(SerialMessage serialMessage, int offset, int endpoint) { String location = getString(serialMessage, offset); if (name == null) { return; } this.location = location; logger.debug("NODE {}: Node location: {}", this.getNode().getNodeId(), location); ZWaveCommandClassValueEvent zEvent = new ZWaveCommandClassValueEvent(this.getNode().getNodeId(), endpoint, this.getCommandClass(), location); this.getController().notifyEventListeners(zEvent); } /** * Gets a SerialMessage with the NAME GET command * * @return the serial message */ public SerialMessage getNameMessage() { logger.debug("NODE {}: Creating new message for application command NAME_GET", this.getNode().getNodeId()); SerialMessage result = new SerialMessage(this.getNode().getNodeId(), SerialMessageClass.SendData, SerialMessageType.Request, SerialMessageClass.ApplicationCommandHandler, SerialMessagePriority.Get); byte[] newPayload = { (byte) this.getNode().getNodeId(), 2, (byte) getCommandClass().getKey(), (byte) NAME_GET }; result.setMessagePayload(newPayload); return result; } /** * Gets a SerialMessage with the NAME GET command * * @return the serial message */ public SerialMessage getLocationMessage() { logger.debug("NODE {}: Creating new message for application command LOCATION_GET", this.getNode().getNodeId()); SerialMessage result = new SerialMessage(this.getNode().getNodeId(), SerialMessageClass.SendData, SerialMessageType.Request, SerialMessageClass.ApplicationCommandHandler, SerialMessagePriority.Get); byte[] newPayload = { (byte) this.getNode().getNodeId(), 2, (byte) getCommandClass().getKey(), (byte) LOCATION_GET }; result.setMessagePayload(newPayload); return result; } /** * Gets a SerialMessage with the Name or Location SET command * * @param the level to set. * @return the serial message */ private SerialMessage setValueMessage(String str, int command) { byte[] nameBuffer = null; try { nameBuffer = str.getBytes("UTF-8"); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); return null; } int len = nameBuffer.length; if (len > 16) { len = 16; } SerialMessage result = new SerialMessage(this.getNode().getNodeId(), SerialMessageClass.SendData, SerialMessageType.Request, SerialMessageClass.SendData, SerialMessagePriority.Set); byte[] newPayload = { (byte) this.getNode().getNodeId(), (byte) ((byte) len + 3), (byte) getCommandClass().getKey(), (byte) command, (byte) ENCODING_UTF16 }; byte[] msg = new byte[newPayload.length + len]; System.arraycopy(newPayload, 0, msg, 0, newPayload.length); System.arraycopy(nameBuffer, 0, msg, newPayload.length, len); result.setMessagePayload(msg); return result; } public SerialMessage setNameMessage(String name) { logger.debug("NODE {}: Creating new message for application command NAME_SET to {}", this.getNode().getNodeId(), name); return setValueMessage(name, NAME_SET); } public SerialMessage setLocationMessage(String location) { logger.debug("NODE {}: Creating new message for application command LOCATION_SET to {}", this.getNode().getNodeId(), location); return setValueMessage(location, LOCATION_SET); } /** * Initializes the alarm sensor command class. Requests the supported alarm types. */ @Override public Collection<SerialMessage> initialize(boolean refresh) { ArrayList<SerialMessage> result = new ArrayList<SerialMessage>(); // If we're already initialized, then don't do it again unless we're refreshing if (refresh == true || initialiseDone == false) { result.add(this.getNameMessage()); result.add(this.getLocationMessage()); } return result; } @Override public Collection<SerialMessage> getDynamicValues(boolean refresh) { ArrayList<SerialMessage> result = new ArrayList<SerialMessage>(); if (refresh == true) { dynamicDone = false; } if (dynamicDone == true) { return null; } result.add(this.getNameMessage()); result.add(this.getLocationMessage()); return result; } }