All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mobius.software.mqttsn.parser.util.ValuesValidator Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.mobius.software.mqttsn.parser.util;

import io.netty.buffer.ByteBuf;

import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;

public class ValuesValidator
{
	private static final Set RESERVED_MESSAGE_IDS = new HashSet(Arrays.asList(new Integer[]
	{ 0x0000 }));
	private static final Set RESERVED_TOPIC_IDS = new HashSet(Arrays.asList(new Integer[]
	{ 0x0000, 0xFFFF }));

	public static boolean validateMessageID(int messageID)
	{
		return messageID > 0 && !RESERVED_MESSAGE_IDS.contains(messageID);
	}

	public static boolean validateTopicID(int topicID)
	{
		return topicID > 0 && !RESERVED_TOPIC_IDS.contains(topicID);
	}

	public static boolean validateRegistrationTopicID(int topicID)
	{
		return topicID >= 0;
	}

	public static boolean canRead(ByteBuf buf, int bytesLeft)
	{
		return buf.isReadable() && bytesLeft > 0;
	}

	public static boolean validateClientID(String clientID)
	{
		return clientID != null && !clientID.isEmpty();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy