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.
jadex.platform.service.message.streams.StreamSendTask Maven / Gradle / Ivy
package jadex.platform.service.message.streams;
import java.util.HashMap;
import java.util.Map;
import jadex.base.Starter;
import jadex.bridge.IComponentIdentifier;
import jadex.bridge.ITransportComponentIdentifier;
import jadex.bridge.service.types.message.ICodec;
import jadex.bridge.service.types.message.MessageType;
import jadex.commons.SUtil;
import jadex.commons.Tuple;
import jadex.platform.service.message.AbstractSendTask;
import jadex.platform.service.message.ISendTask;
import jadex.platform.service.message.transport.ITransport;
/**
* Task to send data via streams.
*/
public class StreamSendTask extends AbstractSendTask implements ISendTask
{
//-------- constants ----------
/** The message type for streams. */
public static final byte MESSAGE_TYPE_STREAM = 99;
// /** The minimal lease time. */
// Todo: individual value transmitted to remote platforms and used for each connection separately.
// public static long MIN_LEASETIME;
/** Constants for message types. */
/** Init a connection. */
public static final String INIT = "INIT";
/** Acknowledge init. */
public static final String ACKINIT = "ACKINIT";
/** Send data message. */
public static final String DATA = "DATA";
/** Acknowledge data message. */
public static final String ACKDATA = "ACKDATA";
/** Close the connection. */
public static final String CLOSE = "CLOSE";
/** Acknowledge the close message. */
public static final String ACKCLOSE = "ACKCLOSE";
/** Close request (from participant which cannot close itself). */
public static final String CLOSEREQ = "CLOSEREQ";
/** Acknowledge the close request. */
public static final String ACKCLOSEREQ = "ACKCLOSEREQ";
/** The alive message. */
public static final String ALIVE = "ALIVE";
/** Create virtual output connection - from initiator. */
public static final byte INIT_OUTPUT_INITIATOR = 1;
/** Ack the init - from initiator. */
public static final byte ACKINIT_OUTPUT_PARTICIPANT = 2;
/** Send data - from initiator. */
public static final byte DATA_OUTPUT_INITIATOR = 3;
/** Ack data/close - from participant .*/
public static final byte ACKDATA_OUTPUT_PARTICIPANT = 4;
/** Request close connection - from participant. */
public static final byte CLOSEREQ_OUTPUT_PARTICIPANT = 5;
/** Ack for close request - from initiator .*/
public static final byte ACKCLOSEREQ_OUTPUT_INITIATOR = 6;
/** Close connection - from initiator. */
public static final byte CLOSE_OUTPUT_INITIATOR = 7;
/** Ack data/close - from participant .*/
public static final byte ACKCLOSE_OUTPUT_PARTICIPANT = 8;
/** Create virtual input connection - from initiator. */
public static final byte INIT_INPUT_INITIATOR = 11;
/** Ack the init - from participant. */
public static final byte ACKINIT_INPUT_PARTICIPANT = 12;
/** Send data - from participant. */
public static final byte DATA_INPUT_PARTICIPANT = 13;
/** Ack data - from participant .*/
public static final byte ACKDATA_INPUT_INITIATOR = 14;
/** Close request connection - from initiator. */
public static final byte CLOSEREQ_INPUT_INITIATOR = 15;
/** Ack for close request - from initiator .*/
public static final byte ACKCLOSEREQ_INPUT_PARTICIPANT = 16;
/** Close connection - from participant. */
public static final byte CLOSE_INPUT_PARTICIPANT = 17;
/** Ack for close - from initiator .*/
public static final byte ACKCLOSE_INPUT_INITIATOR = 18;
/** Alive message - from initiator. */
public static final byte ALIVE_INITIATOR = 20;
/** Alive message - from participant. */
public static final byte ALIVE_PARTICIPANT = 21;
/** String type, boolean input, boolean initiator. */
public static final Map MESSAGETYPES;
public static final byte[] EMPTY_BYTE_ARRAY = new byte[0];
static
{
MESSAGETYPES = new HashMap();
MESSAGETYPES.put(new Tuple(INIT, false, true), Byte.valueOf(INIT_OUTPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(ACKINIT, false, false), Byte.valueOf(ACKINIT_OUTPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(DATA, false, true), Byte.valueOf(DATA_OUTPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(ACKDATA, false, false), Byte.valueOf(ACKDATA_OUTPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(CLOSE, false, true), Byte.valueOf(CLOSE_OUTPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(ACKCLOSE, false, false), Byte.valueOf(ACKCLOSE_OUTPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(CLOSEREQ, false, false), Byte.valueOf(CLOSEREQ_OUTPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(ACKCLOSEREQ, false, true), Byte.valueOf(ACKCLOSEREQ_OUTPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(INIT, true, true), Byte.valueOf(INIT_INPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(ACKINIT, true, false), Byte.valueOf(ACKINIT_INPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(DATA, true, false), Byte.valueOf(DATA_INPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(ACKDATA, true, true), Byte.valueOf(ACKDATA_INPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(CLOSE, true, false), Byte.valueOf(CLOSE_INPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(ACKCLOSE, true, true), Byte.valueOf(ACKCLOSE_INPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(CLOSEREQ, true, true), Byte.valueOf(CLOSEREQ_INPUT_INITIATOR));
MESSAGETYPES.put(new Tuple(ACKCLOSEREQ, true, false), Byte.valueOf(ACKCLOSEREQ_INPUT_PARTICIPANT));
MESSAGETYPES.put(new Tuple(ALIVE, true, true), Byte.valueOf(ALIVE_INITIATOR));
MESSAGETYPES.put(new Tuple(ALIVE, false, true), Byte.valueOf(ALIVE_INITIATOR));
MESSAGETYPES.put(new Tuple(ALIVE, true, false), Byte.valueOf(ALIVE_PARTICIPANT));
MESSAGETYPES.put(new Tuple(ALIVE, false, false), Byte.valueOf(ALIVE_PARTICIPANT));
}
//-------- attributes --------
/** The binary message part. */
protected Object message;
/** The stream id. */
protected int streamid;
/** The type of message (init, data, close). */
protected byte type;
/** The sequence number. */
protected Integer seqnumber;
//-------- constructors ---------
/**
* Create a new manager send task.
*/
public StreamSendTask(byte type, Object message, int streamid, ITransportComponentIdentifier[] receivers,
ITransport[] transports, ICodec[] codecs, Integer seqnumber, Map nonfunc)
{
super(receivers, transports, codecs, nonfunc);
this.type = type;
this.message = message;
this.streamid = streamid;
this.seqnumber = seqnumber;
}
/**
* Create a shallow copy.
*/
public StreamSendTask(StreamSendTask task)
{
super(task);
this.type = task.type;
this.message = task.message;
this.streamid = task.streamid;
this.seqnumber = task.seqnumber;
}
//-------- methods used by message service --------
/**
* Get the message.
* @return the message.
*/
public Object getMessage()
{
byte[] prolog = getProlog();
byte[] data = getData();
byte[] msg = new byte[prolog.length+data.length];
System.arraycopy(prolog, 0, msg, 0, prolog.length);
System.arraycopy(data, 0, msg, prolog.length, data.length);
return msg;
}
/**
* Get the messagetype.
* @return the messagetype.
*/
public MessageType getMessageType()
{
return null;
}
/**
* Get the sequence number.
* @return the sequence number.
*/
public Integer getSequenceNumber()
{
return seqnumber;
}
/**
* Get the encoded message.
*/
protected byte[] fetchData()
{
Object enc_msg = message;
for(int i=0; i, Void> send)
// {
// System.out.println("ready "+System.currentTimeMillis()+": "+getSequenceNumber()+", "+send);
// super.ready(send);
// }
}