All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.api.internal.toplink.remoting.NettyRemotingProtocolHandle Maven / Gradle / Ivy

The newest version!
package com.taobao.api.internal.toplink.remoting;

import java.util.HashMap;

import org.jboss.netty.buffer.ChannelBuffer;
import org.jboss.netty.buffer.ChannelBuffers;

import com.taobao.api.internal.toplink.protocol.NotSupportedException;
import com.taobao.api.internal.toplink.remoting.protocol.RemotingTcpProtocolHandle;

public class NettyRemotingProtocolHandle extends RemotingTcpProtocolHandle {
	// use netty's channelbuffer
	private ChannelBuffer buffer;

	public String preamble;
	public int majorVersion;
	public int minorVersion;
	public short operation;
	public short contentDelimiter;
	public HashMap transportHeaders;

	public void setContentLength(int l) {
		this._contentLength = l;
	}

	public void setContentBuffer(ChannelBuffer buffer) {
		this.buffer = buffer;
	}

	public NettyRemotingProtocolHandle(ChannelBuffer buffer) {
		super(null);
		this.setContentBuffer(buffer);
		this.majorVersion = this.minorVersion = -1;
		this.operation = this.contentDelimiter = -1;
	}

	@Override
	public String ReadPreamble() {
		return this.preamble != null ? this.preamble : super.ReadPreamble();
	}

	@Override
	public int ReadMajorVersion() {
		return this.majorVersion > -1 ? this.majorVersion : super.ReadMajorVersion();
	}

	@Override
	public int ReadMinorVersion() {
		return this.minorVersion > -1 ? this.minorVersion : super.ReadMinorVersion();
	}

	@Override
	public short ReadOperation() {
		return this.operation > -1 ? this.operation : super.ReadOperation();
	}

	@Override
	public short ReadContentDelimiter() {
		return this.contentDelimiter > -1 ? this.contentDelimiter : super.ReadContentDelimiter();
	}

	@Override
	public int ReadContentLength() {
		return this._contentLength > -1 ? this._contentLength : super.ReadContentLength();
	}

	@Override
	public HashMap ReadTransportHeaders() throws NotSupportedException {
		return this.transportHeaders != null ? this.transportHeaders : super.ReadTransportHeaders();
	}

	@Override
	protected int ReadByte() {
		byte b = this.buffer.readByte();
		if (b > -1)
			return b;
		else
			return -1;
	}

	@Override
	protected void WriteByte(byte value) {
		this.buffer.writeByte(value);
	}

	@Override
	protected byte[] ReadBytes(int length) {
		byte[] buffer = new byte[length];
		this.buffer.readBytes(buffer, 0, length);
		return buffer;
	}

	@Override
	protected void WriteBytes(byte[] value) {
		this.buffer.writeBytes(value, 0, value.length);
	}

	@Override
	protected int ReadInt32() {
		// care about big edian
		int value = ChannelBuffers.swapInt(this.buffer.readInt());
		return value;
	}

	@Override
	protected void WriteInt32(int value) {
		this.buffer.writeInt(ChannelBuffers.swapInt(value));
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy