Please wait. This can take some minutes ...
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.
com.crankuptheamps.client.XMLMessage Maven / Gradle / Ivy
////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010-2024 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;
import java.nio.BufferOverflowException;
import java.nio.ByteBuffer;
import java.nio.charset.Charset;
import java.nio.charset.CharsetDecoder;
import java.nio.charset.CharsetEncoder;
import java.nio.charset.StandardCharsets;
import com.crankuptheamps.client.fields.AckTypeField;
import com.crankuptheamps.client.fields.BooleanField;
import com.crankuptheamps.client.fields.CommandField;
import com.crankuptheamps.client.fields.Field;
import com.crankuptheamps.client.fields.IntegerField;
import com.crankuptheamps.client.fields.LongField;
import com.crankuptheamps.client.fields.ReasonField;
import com.crankuptheamps.client.fields.StatusField;
import com.crankuptheamps.client.fields.StringField;
import com.crankuptheamps.client.fields.BookmarkField;
/**
* A message subclass used by {@link XMLProtocolParser} to aid in building Message instances parsed from the {@link XMLProtocol}.
* Generally not used by end user.
*/
public class XMLMessage extends Message
{
/* Example message
20070212-15:50:31-0500
1
publish
trade
xml
jmb
*/
private static final Charset LATIN1 = StandardCharsets.ISO_8859_1;
private static byte[] TG_XML_MESSAGE_PROLOG = null;
private static byte[] TG_XML_MESSAGE_MID = null;
private static byte[] TG_XML_MESSAGE_EPILOG = null;
private static byte[] TG_ACKTYPE = null;
private static byte[] TG_ACKTYPE_X = null;
private static byte[] TG_BATCHSIZE = null;
private static byte[] TG_BATCHSIZE_X = null;
private static byte[] TG_BOOKMARK = null;
private static byte[] TG_BOOKMARK_X = null;
private static byte[] TG_CLIENTNAME = null;
private static byte[] TG_CLIENTNAME_X = null;
private static byte[] TG_COMMAND = null;
private static byte[] TG_COMMAND_X = null;
private static byte[] TG_COMMANDID = null;
private static byte[] TG_COMMANDID_X = null;
private static byte[] TG_CORRELATION_ID = null;
private static byte[] TG_CORRELATION_ID_X = null;
private static byte[] TG_EXPIRATION = null;
private static byte[] TG_EXPIRATION_X = null;
private static byte[] TG_FILTER = null;
private static byte[] TG_FILTER_X = null;
private static byte[] TG_ORDERBY = null;
private static byte[] TG_ORDERBY_X = null;
private static byte[] TG_MAXMESSAGES = null;
private static byte[] TG_MAXMESSAGES_X = null;
private static byte[] TG_OPTIONS = null;
private static byte[] TG_OPTIONS_X = null;
private static byte[] TG_QUERYID = null;
private static byte[] TG_QUERYID_X = null;
private static byte[] TG_RECORDSINSERTED = null;
private static byte[] TG_RECORDSINSERTED_X = null;
private static byte[] TG_RECORDSUPDATED = null;
private static byte[] TG_RECORDSUPDATED_X = null;
private static byte[] TG_RECORDSDELETED = null;
private static byte[] TG_RECORDSDELETED_X = null;
private static byte[] TG_RECORDSRETURNED = null;
private static byte[] TG_RECORDSRETURNED_X = null;
private static byte[] TG_SENDEMPTIES = null;
private static byte[] TG_SENDEMPTIES_X = null;
private static byte[] TG_SENDMATCHINGIDS = null;
private static byte[] TG_SENDMATCHINGIDS_X = null;
private static byte[] TG_SENDOOF = null;
private static byte[] TG_SENDOOF_X = null;
private static byte[] TG_SEQUENCE = null;
private static byte[] TG_SEQUENCE_X = null;
private static byte[] TG_SOW_KEY = null;
private static byte[] TG_SOW_KEY_X = null;
private static byte[] TG_SOWKEYS = null;
private static byte[] TG_SOWKEYS_X = null;
private static byte[] TG_STATUS = null;
private static byte[] TG_STATUS_X = null;
private static byte[] TG_SUBID = null;
private static byte[] TG_SUBID_X = null;
private static byte[] TG_TIMESTAMP = null;
private static byte[] TG_TIMESTAMP_X = null;
private static byte[] TG_TOPIC = null;
private static byte[] TG_TOPIC_X = null;
private static byte[] TG_TOPN = null;
private static byte[] TG_TOPN_X = null;
private static byte[] TG_USERID = null;
private static byte[] TG_USERID_X = null;
private static byte[] TG_PASSWORD = null;
private static byte[] TG_PASSWORD_X = null;
private static byte[] TG_VERSION = null;
private static byte[] TG_VERSION_X = null;
static
{
//TG_XML_MESSAGE_PROLOG = "".getBytes(LATIN1);
TG_XML_MESSAGE_PROLOG = "".getBytes(LATIN1);
TG_XML_MESSAGE_MID = " ".getBytes(LATIN1);
TG_XML_MESSAGE_EPILOG = " ".getBytes(LATIN1);
TG_ACKTYPE = "".getBytes(LATIN1);
TG_ACKTYPE_X = " ".getBytes(LATIN1);
TG_BATCHSIZE = "".getBytes(LATIN1);
TG_BATCHSIZE_X = " ".getBytes(LATIN1);
TG_BOOKMARK = "".getBytes(LATIN1);
TG_BOOKMARK_X = " ".getBytes(LATIN1);
TG_CLIENTNAME = " ".getBytes(LATIN1);
TG_COMMAND = "".getBytes(LATIN1);
TG_COMMAND_X = " ".getBytes(LATIN1);
TG_COMMANDID = "".getBytes(LATIN1);
TG_COMMANDID_X = " ".getBytes(LATIN1);
TG_CORRELATION_ID = " ".getBytes(LATIN1);
TG_EXPIRATION = "".getBytes(LATIN1);
TG_EXPIRATION_X = " ".getBytes(LATIN1);
TG_FILTER = " ".getBytes(LATIN1);
TG_ORDERBY = "".getBytes(LATIN1);
TG_ORDERBY_X = " ".getBytes(LATIN1);
TG_OPTIONS = "".getBytes(LATIN1);
TG_OPTIONS_X = " ".getBytes(LATIN1);
TG_QUERYID = "".getBytes(LATIN1);
TG_QUERYID_X = " ".getBytes(LATIN1);
TG_RECORDSINSERTED = "".getBytes(LATIN1);
TG_RECORDSINSERTED_X = " ".getBytes(LATIN1);
TG_RECORDSUPDATED = "".getBytes(LATIN1);
TG_RECORDSUPDATED_X = " ".getBytes(LATIN1);
TG_RECORDSDELETED = "".getBytes(LATIN1);
TG_RECORDSDELETED_X = " ".getBytes(LATIN1);
TG_RECORDSRETURNED = "".getBytes(LATIN1);
TG_RECORDSRETURNED_X = " ".getBytes(LATIN1);
TG_SEQUENCE = "".getBytes(LATIN1);
TG_SEQUENCE_X = " ".getBytes(LATIN1);
TG_SOW_KEY = "".getBytes(LATIN1);
TG_SOW_KEY_X = " ".getBytes(LATIN1);
TG_SOWKEYS = "".getBytes(LATIN1);
TG_SOWKEYS_X = " ".getBytes(LATIN1);
TG_STATUS = "".getBytes(LATIN1);
TG_STATUS_X = " ".getBytes(LATIN1);
TG_SUBID = " ".getBytes(LATIN1);
TG_TIMESTAMP = "".getBytes(LATIN1);
TG_TIMESTAMP_X = " ".getBytes(LATIN1);
TG_TOPIC = " ".getBytes(LATIN1);
TG_TOPN = "".getBytes(LATIN1);
TG_TOPN_X = " ".getBytes(LATIN1);
TG_USERID = " ".getBytes(LATIN1);
TG_PASSWORD = " ".getBytes(LATIN1);
TG_VERSION = "".getBytes(LATIN1);
TG_VERSION_X = " ".getBytes(LATIN1);
}
public XMLMessage(CharsetEncoder encoder,
CharsetDecoder decoder)
{
super(encoder, decoder);
}
final private void serializeMessageProperty(ByteBuffer b,
byte[] opentag,
byte[] endtag,
Field field)
{
if(field.buffer != null)
{
b.put(opentag);
b.put(field.buffer,field.position,field.length);
b.put(endtag);
}
}
/**
* Serializes the XML message properties.
*/
public SerializationResult serialize(ByteBuffer b)
{
try
{
b.put(TG_XML_MESSAGE_PROLOG);
serializeMessageProperty(b,TG_COMMAND,TG_COMMAND_X,_Command);
serializeMessageProperty(b,TG_TOPIC,TG_TOPIC_X,_Topic);
serializeMessageProperty(b,TG_COMMANDID,TG_COMMANDID_X,_CommandId);
serializeMessageProperty(b,TG_CLIENTNAME,TG_CLIENTNAME_X,_ClientName);
serializeMessageProperty(b,TG_CORRELATION_ID,TG_CORRELATION_ID_X,_CorrelationId);
serializeMessageProperty(b,TG_USERID,TG_USERID_X,_UserId);
serializeMessageProperty(b,TG_PASSWORD,TG_PASSWORD_X,_Password);
serializeMessageProperty(b,TG_FILTER,TG_FILTER_X,_Filter);
serializeMessageProperty(b,TG_ORDERBY,TG_ORDERBY_X,_OrderBy);
serializeMessageProperty(b,TG_ACKTYPE,TG_ACKTYPE_X,_AckType);
serializeMessageProperty(b,TG_OPTIONS,TG_OPTIONS_X,_Options);
serializeMessageProperty(b,TG_SUBID,TG_SUBID_X,_SubId);
serializeMessageProperty(b,TG_VERSION,TG_VERSION_X,_Version);
serializeMessageProperty(b,TG_EXPIRATION,TG_EXPIRATION_X,_Expiration);
serializeMessageProperty(b,TG_STATUS,TG_STATUS_X,_Status);
serializeMessageProperty(b,TG_QUERYID,TG_QUERYID_X,_QueryId);
serializeMessageProperty(b,TG_SEQUENCE,TG_SEQUENCE_X,_Sequence);
serializeMessageProperty(b,TG_BATCHSIZE,TG_BATCHSIZE_X,_BatchSize);
serializeMessageProperty(b,TG_BOOKMARK,TG_BOOKMARK_X,_Bookmark);
serializeMessageProperty(b,TG_TOPN,TG_TOPN_X,_TopN);
serializeMessageProperty(b,TG_SOWKEYS,TG_SOW_KEY_X,_SowKey);
serializeMessageProperty(b,TG_SOWKEYS,TG_SOWKEYS_X,_SowKeys);
b.put(TG_XML_MESSAGE_MID);
if(_Data.buffer != null)
{
b.put(_Data.buffer,_Data.position,_Data.length);
}
b.put(TG_XML_MESSAGE_EPILOG);
//dumpBuffer("SENDING> ",b.array(),4,b.position()-4);
}
catch(BufferOverflowException e)
{
return SerializationResult.BufferTooSmall;
}
return SerializationResult.OK;
}
/* Comment since not used.
static private void dumpBuffer(String prefix,byte[] buffer,int start,int length)
{
System.err.print(prefix);
for(int j = start; j < start+length; ++j)
{
try
{
System.err.print(new String(buffer,j,1,LATIN1));
}
catch(Exception e)
{
System.err.print("{error}");
}
}
System.out.println();
}
*/
/**
* Method used to copy an existing XML message to a new XML message.
* @return Returns new XML message
*/
public Message copy()
{
XMLMessage m = new XMLMessage(this.encoder, this.decoder);
_copyTo(m);
return m;
}
}