blob: 449ec8e2843056567e6754c0f8da579336ab6572 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2013 IBM Corp.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v1.0 which accompany this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* Ian Craggs - initial API and implementation and/or initial documentation
*******************************************************************************/
package org.eclipse.paho.mqttsn.udpclient.messages.mqttsn;
import java.io.UnsupportedEncodingException;
import org.eclipse.paho.mqttsn.udpclient.utils.Utils;
/**
* This object represents a Mqtts REGISTER message.
*
*
*/
public class MqttsRegister extends MqttsMessage {
//Mqtts REGISTER fields
private int topicId;
private int msgId;
private String topicName;
/**
* MqttsRegister constructor.Sets the appropriate message type.
*/
public MqttsRegister() {
msgType = MqttsMessage.REGISTER;
}
/**
* MqttsRegister constructor.Sets the appropriate message type and constructs
* a Mqtts REGISTER message from a received byte array.
* @param data: The buffer that contains the REGISTER message.
*/
public MqttsRegister(byte[] data) {
msgType = MqttsMessage.REGISTER;
topicId = 0;//send by the client hlt: ???
//hlt 6.3.08
topicId= ((data[2] & 0xFF) << 8) + (data[3] & 0xFF);
msgId = ((data[4] & 0xFF) << 8) + (data[5] & 0xFF);
int tlen = (data[0] & 0xFF) - 6;
byte[] byteTopicName = new byte[tlen];
System.arraycopy(data, 6, byteTopicName, 0, tlen);
try {
topicName = new String(byteTopicName, Utils.STRING_ENCODING);
} catch (UnsupportedEncodingException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* Method to convert this message to a byte array for transmission.
* @return A byte array containing the REGISTER message as it should appear on the wire.
*/
public byte[] toBytes() {
int length = 6 + topicName.length();
byte[] data = new byte[length];
data[0] = (byte)length;
data[1] = (byte)msgType;
data[2] = (byte)((topicId >> 8) & 0xFF);
data[3] = (byte)(topicId & 0xFF);
data[4] = (byte)((msgId >> 8) & 0xFF);
data[5] = (byte)(msgId & 0xFF);
System.arraycopy(topicName.getBytes(), 0, data, 6, topicName.length());
return data;
}
public int getMsgId() {
return msgId;
}
public void setMsgId(int msgId) {
this.msgId = msgId;
}
public int getTopicId() {
return topicId;
}
public void setTopicId(int topicId) {
this.topicId = topicId;
}
public String getTopicName() {
return topicName;
}
public void setTopicName(String topicName) {
this.topicName = topicName;
}
}