/org.eclipse.paho.mqttv5.common/src/main/java/org/eclipse/paho/mqttv5/common/packet/MqttSubAck.java

http://github.com/eclipse/paho.mqtt.java · Java · 134 lines · 91 code · 23 blank · 20 comment · 6 complexity · a2cbe01e9ac843b915b2a15b86ab3a26 MD5 · raw file

  1. /*******************************************************************************
  2. * Copyright (c) 2016 IBM Corp.
  3. *
  4. * All rights reserved. This program and the accompanying materials
  5. * are made available under the terms of the Eclipse Public License v2.0
  6. * and Eclipse Distribution License v1.0 which accompany this distribution.
  7. *
  8. * The Eclipse Public License is available at
  9. * https://www.eclipse.org/legal/epl-2.0
  10. * and the Eclipse Distribution License is available at
  11. * https://www.eclipse.org/org/documents/edl-v10.php
  12. *
  13. * Contributors:
  14. * Dave Locke - Original MQTTv3 implementation
  15. * James Sutton - Initial MQTTv5 implementation
  16. */
  17. package org.eclipse.paho.mqttv5.common.packet;
  18. import java.io.ByteArrayInputStream;
  19. import java.io.ByteArrayOutputStream;
  20. import java.io.DataInputStream;
  21. import java.io.DataOutputStream;
  22. import java.io.IOException;
  23. import java.util.Arrays;
  24. import org.eclipse.paho.mqttv5.common.MqttException;
  25. import org.eclipse.paho.mqttv5.common.packet.util.CountingInputStream;
  26. public class MqttSubAck extends MqttAck {
  27. private static final int[] validReturnCodes = { MqttReturnCode.RETURN_CODE_MAX_QOS_0,
  28. MqttReturnCode.RETURN_CODE_MAX_QOS_1, MqttReturnCode.RETURN_CODE_MAX_QOS_2,
  29. MqttReturnCode.RETURN_CODE_UNSPECIFIED_ERROR, MqttReturnCode.RETURN_CODE_IMPLEMENTATION_SPECIFIC_ERROR,
  30. MqttReturnCode.RETURN_CODE_NOT_AUTHORIZED, MqttReturnCode.RETURN_CODE_TOPIC_FILTER_NOT_VALID,
  31. MqttReturnCode.RETURN_CODE_PACKET_ID_IN_USE, MqttReturnCode.RETURN_CODE_SHARED_SUB_NOT_SUPPORTED };
  32. private static final Byte[] validProperties = { MqttProperties.REASON_STRING_IDENTIFIER,
  33. MqttProperties.USER_DEFINED_PAIR_IDENTIFIER };
  34. // Fields
  35. private MqttProperties properties;
  36. public MqttSubAck(byte[] data) throws IOException, MqttException {
  37. super(MqttWireMessage.MESSAGE_TYPE_SUBACK);
  38. properties = new MqttProperties(validProperties);
  39. ByteArrayInputStream bais = new ByteArrayInputStream(data);
  40. CountingInputStream counter = new CountingInputStream(bais);
  41. DataInputStream inputStream = new DataInputStream(counter);
  42. msgId = inputStream.readUnsignedShort();
  43. this.properties.decodeProperties(inputStream);
  44. int remainingLength = data.length - counter.getCounter();
  45. reasonCodes = new int[remainingLength];
  46. for (int i = 0; i < remainingLength; i++) {
  47. int returnCode = inputStream.readUnsignedByte();
  48. validateReturnCode(returnCode, validReturnCodes);
  49. reasonCodes[i] = returnCode;
  50. }
  51. inputStream.close();
  52. }
  53. public MqttSubAck(int[] returnCodes, MqttProperties properties) throws MqttException {
  54. super(MqttWireMessage.MESSAGE_TYPE_SUBACK);
  55. for (int returnCode : returnCodes) {
  56. validateReturnCode(returnCode, validReturnCodes);
  57. }
  58. this.reasonCodes = returnCodes;
  59. if (properties != null) {
  60. this.properties = properties;
  61. } else {
  62. this.properties = new MqttProperties();
  63. }
  64. this.properties.setValidProperties(validProperties);
  65. }
  66. @Override
  67. protected byte[] getVariableHeader() throws MqttException {
  68. try {
  69. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  70. DataOutputStream outputStream = new DataOutputStream(baos);
  71. // Encode the Message ID
  72. outputStream.writeShort(msgId);
  73. // Write Identifier / Value Fields
  74. byte[] identifierValueFieldsByteArray = this.properties.encodeProperties();
  75. // Write Identifier / Value Fields
  76. outputStream.write(identifierValueFieldsByteArray);
  77. outputStream.flush();
  78. return baos.toByteArray();
  79. } catch (IOException ioe) {
  80. throw new MqttException(ioe);
  81. }
  82. }
  83. @Override
  84. public byte[] getPayload() throws MqttException {
  85. try {
  86. ByteArrayOutputStream baos = new ByteArrayOutputStream();
  87. DataOutputStream outputStream = new DataOutputStream(baos);
  88. for (int returnCode : reasonCodes) {
  89. outputStream.writeByte(returnCode);
  90. }
  91. outputStream.flush();
  92. return baos.toByteArray();
  93. } catch (IOException ioe) {
  94. throw new MqttException(ioe);
  95. }
  96. }
  97. public int[] getReturnCodes() {
  98. return reasonCodes;
  99. }
  100. public void setReturnCodes(int[] returnCodes) {
  101. this.reasonCodes = returnCodes;
  102. }
  103. @Override
  104. public MqttProperties getProperties() {
  105. return this.properties;
  106. }
  107. @Override
  108. public String toString() {
  109. return "MqttSubAck [returnCodes=" + Arrays.toString(reasonCodes) + ", properties=" + properties + "]";
  110. }
  111. }