mirror of
https://github.com/servalproject/serval-dna.git
synced 2025-01-02 03:16:45 +00:00
101 lines
2.9 KiB
Java
101 lines
2.9 KiB
Java
/**
|
|
* Copyright (C) 2014 Serval Project Inc.
|
|
*
|
|
* This file is part of Serval Software (http://www.servalproject.org)
|
|
*
|
|
* Serval Software is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This source code is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this source code; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
package org.servalproject.servaldna.meshms;
|
|
|
|
import org.servalproject.servaldna.Subscriber;
|
|
import org.servalproject.servaldna.SubscriberId;
|
|
import org.servalproject.servaldna.ServalDInterfaceException;
|
|
|
|
public class MeshMSMessage {
|
|
|
|
public enum Type {
|
|
MESSAGE_SENT,
|
|
MESSAGE_RECEIVED,
|
|
ACK_RECEIVED
|
|
};
|
|
|
|
public final int _rowNumber;
|
|
public final Type type;
|
|
public final Subscriber me;
|
|
@Deprecated
|
|
public final SubscriberId mySid;
|
|
public final Subscriber them;
|
|
@Deprecated
|
|
public final SubscriberId theirSid;
|
|
public final long offset;
|
|
public final String token;
|
|
public final String text;
|
|
public final boolean isDelivered;
|
|
public final boolean isRead;
|
|
public final Long timestamp;
|
|
public final Long ackOffset;
|
|
|
|
protected MeshMSMessage(int rowNumber,
|
|
Type type,
|
|
Subscriber me,
|
|
Subscriber them,
|
|
long offset,
|
|
String token,
|
|
String text,
|
|
boolean delivered,
|
|
boolean read,
|
|
Long timestamp,
|
|
Long ack_offset) throws ServalDInterfaceException
|
|
{
|
|
if (me == null)
|
|
throw new ServalDInterfaceException("me is null");
|
|
if (them == null)
|
|
throw new ServalDInterfaceException("them is null");
|
|
if (type != Type.ACK_RECEIVED && text == null)
|
|
throw new ServalDInterfaceException("text is null");
|
|
if (token == null)
|
|
throw new ServalDInterfaceException("token is null");
|
|
if (type == Type.ACK_RECEIVED && ack_offset == null)
|
|
throw new ServalDInterfaceException("ack_offset is null");
|
|
if (type != Type.ACK_RECEIVED && timestamp == null)
|
|
throw new ServalDInterfaceException("timestamp is null");
|
|
this._rowNumber = rowNumber;
|
|
this.type = type;
|
|
this.me = me;
|
|
this.mySid = me.sid;
|
|
this.them = them;
|
|
this.theirSid = them.sid;
|
|
this.offset = offset;
|
|
this.token = token;
|
|
this.text = text;
|
|
this.isDelivered = delivered;
|
|
this.isRead = read;
|
|
this.timestamp = timestamp;
|
|
this.ackOffset = ack_offset;
|
|
}
|
|
|
|
public long getId(){
|
|
switch (type){
|
|
default:
|
|
return offset;
|
|
case MESSAGE_RECEIVED:
|
|
return -offset;
|
|
case ACK_RECEIVED:
|
|
return 0;
|
|
}
|
|
}
|
|
}
|