com.firenio.codec.protobase.ProtobaseCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of firenio-all Show documentation
Show all versions of firenio-all Show documentation
The all in one project of firenio
/*
* Copyright 2015 The FireNio Project
*
* 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.firenio.codec.protobase;
import java.io.IOException;
import com.firenio.buffer.ByteBuf;
import com.firenio.component.Channel;
import com.firenio.component.Frame;
import com.firenio.component.ProtocolCodec;
/**
*
* B0 : 0-1 : 0:tunnel, 1:broadcast, 2:ping, 3:pong
* B0 : 2 : 0:text, 1:binary
* B0 : 3 : 0:continue, 1:last
* B0 : 4-7 : ExtType
* B1-B3 : FrameLen
* B4-B7 : FrameId
* B8-B11: ChannelId
*
*
*/
public final class ProtobaseCodec extends ProtocolCodec {
public static final IOException ILLEGAL_PROTOCOL = EXCEPTION("illegal protocol");
public static final IOException OVER_LIMIT = EXCEPTION("over writeIndex");
static final ByteBuf PING;
static final ByteBuf PONG;
static final int PROTOCOL_HEADER = 12;
static final int PROTOCOL_PING = 0b1000_0000;
static final int PROTOCOL_PONG = 0b1100_0000;
static final int PROTOCOL_PONG_MASK = 0b1100_0000;
static {
PING = ByteBuf.buffer(4);
PONG = ByteBuf.buffer(4);
PING.writeInt(PROTOCOL_PING << 24);
PONG.writeInt(PROTOCOL_PONG << 24);
}
private final int limit;
public ProtobaseCodec() {
this(1024 * 64);
}
public ProtobaseCodec(int limit) {
this.limit = limit;
}
@Override
public Frame decode(Channel ch, ByteBuf src) throws IOException {
if (src.readableBytes() < 4) {
return null;
}
byte flags = src.getByteAbs(src.absReadIndex());
int len = src.readInt() & 0xffffff;
if (flags < 0) {
return decode_ping(ch, flags);
}
if (len > limit) {
throw OVER_LIMIT;
}
if (len > src.readableBytes()) {
src.skipRead(-4);
return null;
}
int frameId = src.readInt();
int channelId = src.readInt();
byte[] data = new byte[len - 8];
src.readBytes(data);
ProtobaseFrame f = new ProtobaseFrame();
f.setFlags(flags);
f.setChannelId(channelId);
f.setFrameId(frameId);
if (f.isText()) {
f.setContent(new String(data, ch.getCharset()));
} else {
f.setContent(data);
}
return f;
}
private Frame decode_ping(Channel ch, int type) throws IOException {
type &= PROTOCOL_PONG_MASK;
if (type == PROTOCOL_PING) {
log_ping_from(ch);
flush_pong(ch, PONG.duplicate());
} else if (type == PROTOCOL_PONG) {
log_pong_from(ch);
} else {
throw ILLEGAL_PROTOCOL;
}
return null;
}
@Override
protected ByteBuf getPingBuf() {
return PING.duplicate();
}
@Override
public ByteBuf encode(Channel ch, Frame frame) {
ProtobaseFrame f = (ProtobaseFrame) frame;
ByteBuf buf = f.getBufContent();
buf.setInt(0, (buf.writeIndex() - 4) | (f.getFlags() << 24));
buf.setInt(4, f.getFrameId());
buf.setInt(8, f.getChannelId());
return buf;
}
public int getLimit() {
return limit;
}
@Override
public String getProtocolId() {
return "Protobase";
}
@Override
public int getHeaderLength() {
return PROTOCOL_HEADER;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy