package io.vertx.core.http.impl.ws;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.util.CharsetUtil;
import io.netty.util.ReferenceCounted;
import io.vertx.core.buffer.Buffer;
import io.vertx.core.http.WebSocketFrame;
import io.vertx.core.http.impl.FrameType;
import java.nio.charset.StandardCharsets;
public class WebSocketFrameImpl implements WebSocketFrameInternal, ReferenceCounted {
public static WebSocketFrame binaryFrame(Buffer data, boolean isFinal) {
return new WebSocketFrameImpl(FrameType.BINARY, data.getByteBuf(), isFinal);
}
public static WebSocketFrame textFrame(String str, boolean isFinal) {
return new WebSocketFrameImpl(str, isFinal);
}
public static WebSocketFrame continuationFrame(Buffer data, boolean isFinal) {
return new WebSocketFrameImpl(FrameType.CONTINUATION, data.getByteBuf(), isFinal);
}
public static WebSocketFrame pingFrame(Buffer data) {
return new WebSocketFrameImpl(FrameType.PING, data.getByteBuf(), true);
}
public static WebSocketFrame pongFrame(Buffer data) {
return new WebSocketFrameImpl(FrameType.PONG, data.getByteBuf(), true);
}
private final FrameType type;
private final boolean isFinalFrame;
private ByteBuf binaryData;
private boolean closeParsed = false;
private short closeStatusCode;
private String closeReason;
public WebSocketFrameImpl() {
this(null, Unpooled.EMPTY_BUFFER, true);
}
public WebSocketFrameImpl(FrameType frameType) {
this(frameType, Unpooled.EMPTY_BUFFER, true);
}
public WebSocketFrameImpl(String textData) {
this(textData, true);
}
public WebSocketFrameImpl(String textData, boolean isFinalFrame) {
this.type = FrameType.TEXT;
this.isFinalFrame = isFinalFrame;
this.binaryData = Unpooled.copiedBuffer(textData, CharsetUtil.UTF_8);
}
public WebSocketFrameImpl(FrameType type, ByteBuf binaryData) {
this(type, binaryData, true);
}
public WebSocketFrameImpl(FrameType type, ByteBuf binaryData, boolean isFinalFrame) {
this.type = type;
this.isFinalFrame = isFinalFrame;
this.binaryData = Unpooled.unreleasableBuffer(binaryData);
}
public boolean isText() {
return this.type == FrameType.TEXT;
}
public boolean isBinary() {
return this.type == FrameType.BINARY;
}
public boolean isContinuation() {
return this.type == FrameType.CONTINUATION;
}
public boolean isClose() { return this.type == FrameType.CLOSE; }
public ByteBuf getBinaryData() {
return binaryData;
}
public String textData() {
return getBinaryData().toString(CharsetUtil.UTF_8);
}
public Buffer binaryData() {
return Buffer.buffer(binaryData);
}
public void setBinaryData(ByteBuf binaryData) {
if (this.binaryData != null) {
this.binaryData.release();
}
this.binaryData = binaryData;
}
public void setTextData(String textData) {
if (this.binaryData != null) {
this.binaryData.release();
}
this.binaryData = Unpooled.copiedBuffer(textData, CharsetUtil.UTF_8);
}
@Override
public int length() {
return binaryData.readableBytes();
}
@Override
public String toString() {
return getClass().getSimpleName() +
"(type: " + type + ", " + "data: " + getBinaryData() + ')';
}
@Override
public int refCnt() {
return binaryData.refCnt();
}
@Override
public ReferenceCounted retain() {
return binaryData.retain();
}
@Override
public ReferenceCounted retain(int increment) {
return binaryData.retain(increment);
}
@Override
public boolean release() {
return binaryData.release();
}
@Override
public boolean release(int decrement) {
return binaryData.release(decrement);
}
@Override
public ReferenceCounted touch() {
binaryData.touch();
return this;
}
@Override
public ReferenceCounted touch(Object hint) {
binaryData.touch(hint);
return this;
}
@Override
public boolean isFinal() {
return isFinalFrame;
}
private void parseCloseFrame() {
int length = length();
if (length < 2) {
closeStatusCode = 1000;
closeReason = null;
} else {
int index = binaryData.readerIndex();
closeStatusCode = binaryData.getShort(index);
if (length == 2) {
closeReason = null;
} else {
closeReason = binaryData.toString(index + 2, length - 2, StandardCharsets.UTF_8);
}
}
}
private void checkClose() {
if (!isClose())
throw new IllegalStateException("This should be a close frame");
}
@Override
public short closeStatusCode() {
checkClose();
if (!closeParsed)
parseCloseFrame();
return this.closeStatusCode;
}
@Override
public String closeReason() {
checkClose();
if (!closeParsed)
parseCloseFrame();
return this.closeReason;
}
@Override
public FrameType type() {
return type;
}
}