⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 channelbuffer.java

📁 mysql的jdbc驱动
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* Copyright (C) 2002-2004 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as  published by the Free Software Foundation. There are special exceptions to the terms and conditions of the GPL  as it is applied to this software. View the full text of the  exception in file EXCEPTIONS-CONNECTOR-J in the directory of this  software distribution. This program 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 program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package com.mysql.jdbc;import java.io.UnsupportedEncodingException;import java.nio.ByteBuffer;import java.sql.SQLException;/** * Buffer contains code to read and write packets from/to the MySQL server. *  * @version $Id: ChannelBuffer.java 4054 2005-08-11 20:16:51Z mmatthews $ * @author Mark Matthews */class ChannelBuffer extends Buffer {	private byte[] asBytes = null;	// private int position = 0;	private int bufLength = 0;	private ByteBuffer directBuffer;	private boolean dirty = true;	ChannelBuffer(byte[] buf) {		this.directBuffer = ByteBuffer.wrap(buf);		setBufLength(buf.length);	}	ChannelBuffer(int size, boolean direct) {		if (direct) {			this.directBuffer = ByteBuffer.allocateDirect(size);		} else {			this.directBuffer = ByteBuffer.allocate(size);		}		// this.directBuffer.limit(size);		setBufLength(size);		// this.position = MysqlIO.HEADER_LENGTH;		this.directBuffer.position(MysqlIO.HEADER_LENGTH);	}	private byte[] bufferToArray() {		if (!this.dirty) {			return this.asBytes;		} else if (this.directBuffer.hasArray()) {			this.asBytes = this.directBuffer.array();			this.dirty = false;			return this.asBytes;		} else {			int bufferLength = this.directBuffer.limit();			this.asBytes = new byte[bufferLength];			int oldPosition = getPosition();			this.directBuffer.position(0);			this.directBuffer.get(this.asBytes, 0, bufferLength);			this.directBuffer.position(oldPosition);			this.dirty = false;			return this.asBytes;		}	}	final void clear() {		this.directBuffer.position(MysqlIO.HEADER_LENGTH);	}	final void ensureCapacity(int additionalData) throws SQLException {		int bufferCapacity = this.directBuffer.capacity();		int currentPosition = this.directBuffer.position();		if ((currentPosition + additionalData) > getBufLength()) {			if ((currentPosition + additionalData) < bufferCapacity) {				// byteBuffer.length is != getBufLength() all of the time				// due to re-using of packets (we don't shrink them)				//				// If we can, don't re-alloc, just set buffer length				// to size of current buffer				setBufLength(currentPosition + additionalData);			} else {				//				// Otherwise, re-size, and pad so we can avoid				// allocing again in the near future				//				int newLength = (int) (bufferCapacity * 1.25);				if (newLength < 4096) {					newLength = 4096;				}				if (newLength < (bufferCapacity + additionalData)) {					newLength = bufferCapacity + (int) (additionalData * 1.25);				}				if (newLength < bufferCapacity) {					newLength = bufferCapacity + additionalData;				}				ByteBuffer largerBuffer = ByteBuffer.allocateDirect(newLength);				this.directBuffer.position(0);				largerBuffer.put(this.directBuffer);				this.directBuffer = largerBuffer;				this.directBuffer.position(currentPosition);				bufferCapacity = this.directBuffer.capacity(); // re-alloc'd				setBufLength(bufferCapacity);			}		}	}	/**	 * Skip over a length-encoded string	 * 	 * @return The position past the end of the string	 */	public int fastSkipLenString() {		long len = this.readFieldLength();		// position += len;		this.directBuffer.position((int) (this.directBuffer.position() + len));		return (int) len; // this is safe, as this is only	}	int getBufLength() {		return this.directBuffer.limit();	}	/**	 * Returns the array of bytes this Buffer is using to read from.	 * 	 * @return byte array being read from	 */	public byte[] getByteBuffer() {		return bufferToArray();	}	final byte[] getBytes(int len) {		byte[] b = new byte[len];		byte[] nioByteBuffer = bufferToArray();		try {			System.arraycopy(nioByteBuffer, this.directBuffer.position(), b, 0,					len);			// this.position += len; // update cursor			this.directBuffer.position((this.directBuffer.position() + len));		} catch (ArrayIndexOutOfBoundsException aiobex) {			throw aiobex;		}		return b;	}	/*	 * (non-Javadoc)	 * 	 * @see com.mysql.jdbc.Buffer#getBytes(int, int)	 */	byte[] getBytes(int offset, int len) {		byte[] b = new byte[len];		byte[] nioByteBuffer = bufferToArray();		try {			System.arraycopy(nioByteBuffer, offset, b, 0, len);			// this.position += len; // update cursor			this.directBuffer.position((offset + len));		} catch (ArrayIndexOutOfBoundsException aiobex) {			throw aiobex;		}		return b;	}	int getCapacity() {		return this.directBuffer.capacity();	}	public ByteBuffer getNioBuffer() {		return this.directBuffer;	}	/**	 * Returns the current position to write to/ read from	 * 	 * @return the current position to write to/ read from	 */	public int getPosition() {		// if (directBuffer.position() != this.position) {		// System.err.println("WARN: directBuffer position != this.position");		// }		return this.directBuffer.position();	}	// 2000-06-05 Changed	final boolean isLastDataPacket() {		boolean hasMarker = ((this.directBuffer.get(0) & 0xff) == 254);		return (hasMarker && this.bufLength < 9);	}	final long newReadLength() {		int sw = this.directBuffer.get(this.directBuffer.position()) & 0xff;		this.directBuffer.position(this.directBuffer.position() + 1);		switch (sw) {		case 251:			return 0;		case 252:			return readInt();		case 253:			return readLongInt();		case 254: // changed for 64 bit lengths			return readLongLong();		default:			return sw;		}	}	final byte readByte() {		byte b = this.directBuffer.get();		return b;	}	final byte readByte(int readAt) {		return this.directBuffer.get(readAt);	}	final long readFieldLength() {		int sw = this.directBuffer.get() & 0xff;		switch (sw) {		case 251:			return NULL_LENGTH;		case 252:			return readInt();		case 253:			return readLongInt();		case 254:			return readLongLong();		default:			return sw;		}	}	final int readInt() {		return (this.directBuffer.get() & 0xff)				| ((this.directBuffer.get() & 0xff) << 8);	}	final int readIntAsLong() {		int i = (this.directBuffer.get() & 0xff)				| ((this.directBuffer.get() & 0xff) << 8)				| ((this.directBuffer.get() & 0xff) << 16)				| ((this.directBuffer.get() & 0xff) << 24);		// this.directBuffer.position(this.position);		return i;	}	final byte[] readLenByteArray(int offset) {		long len = this.readFieldLength();		if (len == NULL_LENGTH) {			return null;		}		if (len == 0) {			return Constants.EMPTY_BYTE_ARRAY;		}		this.directBuffer.position(this.directBuffer.position() + offset);		// this.directBuffer.position(this.position);		return getBytes((int) len);	}	final long readLength() {		int sw = this.directBuffer.get() & 0xff;		// this.directBuffer.position(this.position);		switch (sw) {		case 251:			return 0;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -