Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010-2021 60East Technologies Inc., All Rights Reserved.
//
// This computer software is owned by 60East Technologies Inc. and is
// protected by U.S. copyright laws and other laws and by international
// treaties. This computer software is furnished by 60East Technologies
// Inc. pursuant to a written license agreement and may be used, copied,
// transmitted, and stored only in accordance with the terms of such
// license agreement and with the inclusion of the above copyright notice.
// This computer software or any other copies thereof may not be provided
// or otherwise made available to any other person.
//
// U.S. Government Restricted Rights. This computer software: (a) was
// developed at private expense and is in all respects the proprietary
// information of 60East Technologies Inc.; (b) was not developed with
// government funds; (c) is a trade secret of 60East Technologies Inc.
// for all purposes of the Freedom of Information Act; and (d) is a
// commercial item and thus, pursuant to Section 12.212 of the Federal
// Acquisition Regulations (FAR) and DFAR Supplement Section 227.7202,
// Government's use, duplication or disclosure of the computer software
// is subject to the restrictions set forth by 60East Technologies Inc..
//
////////////////////////////////////////////////////////////////////////////
package com.crankuptheamps.client.fields;
import java.io.UnsupportedEncodingException;
import java.nio.charset.StandardCharsets;
import com.crankuptheamps.client.Message;
import com.crankuptheamps.client.Message.Reason;
/**
* Field data for a {@link Message} consisting of a reason.
* This reason helps to provide more information about acknowledgements.
*/
public class ReasonField extends Field
{
/// NOTE THESE MUST MATCH the order in the Message.Reasons enum.
private static String[] reasonStrings = {
"",
"duplicate",
"bad filter",
"bad regex topic",
"subscription already exists",
"deleted",
"expired",
"match",
"invalid topic",
"name in use",
"auth failure",
"not entitled",
"authentication disabled",
"invalid bookmark",
"invalid orderby",
"subid in use",
"no topic",
"logon failed",
"logon required",
"invalid topic or filter",
"invalid subId",
"no topic or filter",
"no client name",
"bad filter",
"bad sow key",
"bad regex topic",
"regex topic not supported",
"sow store failed",
"parse error",
"not supported",
"tx store failure",
"duplicate logon attempt",
"tx replay failed",
"sow canceled",
"invalid options",
"invalid message type",
"orderby too large",
"rejected by transport filter",
"sow_delete command only supports one of: filter, sow_keys, bookmark, or data",
"publish filter no match"
};
/**
* This returns the value of this reason field as an integer reason code.
* @return The value of this reason field as an integer reason code.
* @see com.crankuptheamps.client.Message.Reason
*/
public int getValue()
{
if(this.buffer != null)
{
return decodeReason(this.buffer, this.position, this.length);
}
return Reason.None;
}
/**
* Returns the value of this reason field as a descriptive text string.
* @return The reason string.
*/
public String getText()
{
if(this.buffer != null)
{
return new String(this.buffer, this.position, this.length, StandardCharsets.ISO_8859_1);
}
return "";
}
private void set(String value)
{
set(value.getBytes(StandardCharsets.ISO_8859_1));
}
/**
* Sets the value of this reason field using the specified reason code integer.
* @param v The reason code integer.
* @see com.crankuptheamps.client.Message.Reason
*/
public void setValue(int v)
{
if(v == 0 || v> reasonStrings.length-1)
{
reset();
return;
}
set(reasonStrings[v]);
}
static final int decodeReason(byte[] buffer, int pos, int len)
{
String reasonBytes = new String(buffer, pos, len, StandardCharsets.ISO_8859_1);
for(int i = 0; i < reasonStrings.length; ++i)
{
if(reasonStrings[i].equals(reasonBytes)) return i;
}
return Message.Reason.Other;
}
/**
* Utility method that takes a reason code integer and returns the associated descriptive text.
* Returns "unknown" if the integer code is not known.
* @param r The reason code integer to be encoded.
* @return The descriptive text reason.
*/
static final public String encodeReason(int r)
{
if(r > reasonStrings.length-1) return "unknown";
return reasonStrings[r];
}
}