You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.3 KiB
139 lines
3.3 KiB
7 years ago
|
/**
|
||
|
* Copyright 2012 Nikita Koksharov
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
package com.fr.third.socketio.protocol;
|
||
|
|
||
|
import com.fr.third.socketio.namespace.Namespace;
|
||
|
import io.netty.buffer.ByteBuf;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.Collections;
|
||
|
import java.util.List;
|
||
|
|
||
|
public class Packet implements Serializable {
|
||
|
|
||
|
private static final long serialVersionUID = 4560159536486711426L;
|
||
|
|
||
|
private PacketType type;
|
||
|
private PacketType subType;
|
||
|
private Long ackId;
|
||
|
private String name;
|
||
|
private String nsp = Namespace.DEFAULT_NAME;
|
||
|
private Object data;
|
||
|
|
||
|
private ByteBuf dataSource;
|
||
|
private int attachmentsCount;
|
||
|
private List<ByteBuf> attachments = Collections.emptyList();
|
||
|
|
||
|
protected Packet() {
|
||
|
}
|
||
|
|
||
|
public Packet(PacketType type) {
|
||
|
super();
|
||
|
this.type = type;
|
||
|
}
|
||
|
|
||
|
public PacketType getSubType() {
|
||
|
return subType;
|
||
|
}
|
||
|
|
||
|
public void setSubType(PacketType subType) {
|
||
|
this.subType = subType;
|
||
|
}
|
||
|
|
||
|
public PacketType getType() {
|
||
|
return type;
|
||
|
}
|
||
|
|
||
|
public void setData(Object data) {
|
||
|
this.data = data;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get packet data
|
||
|
*
|
||
|
* @param <T> the type data
|
||
|
*
|
||
|
* <pre>
|
||
|
* @return <b>json object</b> for PacketType.JSON type
|
||
|
* <b>message</b> for PacketType.MESSAGE type
|
||
|
* </pre>
|
||
|
*/
|
||
|
public <T> T getData() {
|
||
|
return (T)data;
|
||
|
}
|
||
|
|
||
|
public void setNsp(String endpoint) {
|
||
|
this.nsp = endpoint;
|
||
|
}
|
||
|
|
||
|
public String getNsp() {
|
||
|
return nsp;
|
||
|
}
|
||
|
|
||
|
public String getName() {
|
||
|
return name;
|
||
|
}
|
||
|
|
||
|
public void setName(String name) {
|
||
|
this.name = name;
|
||
|
}
|
||
|
|
||
|
public Long getAckId() {
|
||
|
return ackId;
|
||
|
}
|
||
|
|
||
|
public void setAckId(Long ackId) {
|
||
|
this.ackId = ackId;
|
||
|
}
|
||
|
|
||
|
public boolean isAckRequested() {
|
||
|
return getAckId() != null;
|
||
|
}
|
||
|
|
||
|
public void initAttachments(int attachmentsCount) {
|
||
|
this.attachmentsCount = attachmentsCount;
|
||
|
this.attachments = new ArrayList<ByteBuf>(attachmentsCount);
|
||
|
}
|
||
|
public void addAttachment(ByteBuf attachment) {
|
||
|
if (this.attachments.size() < attachmentsCount) {
|
||
|
this.attachments.add(attachment);
|
||
|
}
|
||
|
}
|
||
|
public List<ByteBuf> getAttachments() {
|
||
|
return attachments;
|
||
|
}
|
||
|
public boolean hasAttachments() {
|
||
|
return attachmentsCount != 0;
|
||
|
}
|
||
|
public boolean isAttachmentsLoaded() {
|
||
|
return this.attachments.size() == attachmentsCount;
|
||
|
}
|
||
|
|
||
|
public ByteBuf getDataSource() {
|
||
|
return dataSource;
|
||
|
}
|
||
|
public void setDataSource(ByteBuf dataSource) {
|
||
|
this.dataSource = dataSource;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String toString() {
|
||
|
return "Packet [type=" + type + ", ackId=" + ackId + "]";
|
||
|
}
|
||
|
|
||
|
}
|