com.mysql.cj.protocol.a.SimplePacketReader Maven / Gradle / Ivy
/*
* Copyright (c) 2016, 2020, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, version 2.0, as published by the
* Free Software Foundation.
*
* This program is also distributed with certain software (including but not
* limited to OpenSSL) that is licensed under separate terms, as designated in a
* particular file or component or in included license documentation. The
* authors of MySQL hereby grant you an additional permission to link the
* program and your derivative works with the separately licensed software that
* they have included with MySQL.
*
* Without limiting anything contained in the foregoing, this file, which is
* part of MySQL Connector/J, is also subject to the Universal FOSS Exception,
* version 1.0, a copy of which can be found at
* http://oss.oracle.com/licenses/universal-foss-exception.
*
* 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, version 2.0,
* 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
package com.mysql.cj.protocol.a;
import java.io.IOException;
import java.util.Optional;
import com.mysql.cj.Messages;
import com.mysql.cj.conf.RuntimeProperty;
import com.mysql.cj.exceptions.CJPacketTooBigException;
import com.mysql.cj.protocol.MessageReader;
import com.mysql.cj.protocol.SocketConnection;
/**
* Simple implementation of {@link MessageReader} which handles the receiving of logical MySQL packets from the provided socket input stream.
* Multi-packets are handled outside of this reader.
*/
public class SimplePacketReader implements MessageReader {
protected SocketConnection socketConnection;
protected RuntimeProperty maxAllowedPacket;
private byte readPacketSequence = -1;
public SimplePacketReader(SocketConnection socketConnection, RuntimeProperty maxAllowedPacket) {
this.socketConnection = socketConnection;
this.maxAllowedPacket = maxAllowedPacket;
}
@Override
public NativePacketHeader readHeader() throws IOException {
NativePacketHeader hdr = new NativePacketHeader();
try {
this.socketConnection.getMysqlInput().readFully(hdr.getBuffer().array(), 0, NativeConstants.HEADER_LENGTH);
int packetLength = hdr.getMessageSize();
if (packetLength > this.maxAllowedPacket.getValue()) {
throw new CJPacketTooBigException(packetLength, this.maxAllowedPacket.getValue());
}
} catch (IOException | CJPacketTooBigException e) {
try {
this.socketConnection.forceClose();
} catch (Exception ex) {
// ignore
}
throw e;
}
this.readPacketSequence = hdr.getMessageSequence();
return hdr;
}
@Override
public NativePacketPayload readMessage(Optional reuse, NativePacketHeader header) throws IOException {
try {
int packetLength = header.getMessageSize();
NativePacketPayload buf;
if (reuse.isPresent()) {
buf = reuse.get();
// Set the Buffer to it's original state
buf.setPosition(0);
// Do we need to re-alloc the byte buffer?
if (buf.getByteBuffer().length < packetLength) {
// Note: We actually check the length of the buffer, rather than getBufLength(), because getBufLength()
// is not necessarily the actual length of the byte array used as the buffer
buf.setByteBuffer(new byte[packetLength]);
}
// Set the new length
buf.setPayloadLength(packetLength);
} else {
buf = new NativePacketPayload(new byte[packetLength]);
}
// Read the data from the server
int numBytesRead = this.socketConnection.getMysqlInput().readFully(buf.getByteBuffer(), 0, packetLength);
if (numBytesRead != packetLength) {
throw new IOException(Messages.getString("PacketReader.1", new Object[] { packetLength, numBytesRead }));
}
return buf;
} catch (IOException e) {
try {
this.socketConnection.forceClose();
} catch (Exception ex) {
// ignore
}
throw e;
}
}
@Override
public byte getMessageSequence() {
return this.readPacketSequence;
}
@Override
public void resetMessageSequence() {
this.readPacketSequence = 0;
}
}