Package org.mariadb.jdbc.client.socket
Class PacketWriter
- java.lang.Object
-
- org.mariadb.jdbc.client.socket.PacketWriter
-
public class PacketWriter extends Object
-
-
Field Summary
Fields Modifier and Type Field Description protected byte[]bufprotected org.mariadb.jdbc.util.MutableIntcompressSequenceprotected intposprotected org.mariadb.jdbc.util.MutableIntsequencestatic intSMALL_BUFFER_SIZE
-
Constructor Summary
Constructors Constructor Description PacketWriter(OutputStream out, int maxQuerySizeToLog, org.mariadb.jdbc.util.MutableInt sequence, org.mariadb.jdbc.util.MutableInt compressSequence)Common feature to write data into socket, creating MariaDB Packet.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbufIsDataAfterMark()voidcheckMaxAllowedLength(int length)Count query size.voidclose()voidflush()Send packet to socket.voidflushBufferStopAtMark()Flush to last mark.booleanhasFlushed()voidinitPacket()booleanisMarked()voidmark()voidpermitTrace(boolean permitTrace)intpos()voidpos(int pos)byte[]resetMark()Reset mark flag and send bytes after mark flag.voidsetMaxAllowedPacket(int maxAllowedPacket)voidsetServerThreadId(Long serverThreadId, HostAddress hostAddress)Set server thread id.voidwriteAscii(String str)voidwriteByte(int value)Write byte into buf, flush buf to socket if needed.voidwriteBytes(byte[] arr)voidwriteBytes(byte[] arr, int off, int len)Write byte array to buf.voidwriteBytesAtPos(byte[] arr, int pos)voidwriteBytesEscaped(byte[] bytes, int len, boolean noBackslashEscapes)Write escape bytes to socket.voidwriteDouble(double value)voidwriteEmptyPacket()Send empty packet.voidwriteFloat(float value)voidwriteInt(int value)Write int value into buf.voidwriteLength(long length)Write field length into buf, flush socket if needed.voidwriteLong(long value)Write long value into buf.voidwriteShort(short value)Write short value into buf.protected voidwriteSocket(boolean commandEnd)Flush the internal buf.voidwriteString(String str)voidwriteStringEscaped(String str, boolean noBackslashEscapes)Write string to socket.
-
-
-
Field Detail
-
SMALL_BUFFER_SIZE
public static final int SMALL_BUFFER_SIZE
- See Also:
- Constant Field Values
-
sequence
protected final org.mariadb.jdbc.util.MutableInt sequence
-
compressSequence
protected final org.mariadb.jdbc.util.MutableInt compressSequence
-
buf
protected byte[] buf
-
pos
protected int pos
-
-
Constructor Detail
-
PacketWriter
public PacketWriter(OutputStream out, int maxQuerySizeToLog, org.mariadb.jdbc.util.MutableInt sequence, org.mariadb.jdbc.util.MutableInt compressSequence)
Common feature to write data into socket, creating MariaDB Packet.- Parameters:
out- output streammaxQuerySizeToLog- maximum query size to logsequence- packet sequencecompressSequence- compressed packet sequence
-
-
Method Detail
-
pos
public int pos()
-
pos
public void pos(int pos) throws IOException- Throws:
IOException
-
writeByte
public void writeByte(int value) throws IOExceptionWrite byte into buf, flush buf to socket if needed.- Parameters:
value- byte to send- Throws:
IOException- if socket error occur.
-
writeShort
public void writeShort(short value) throws IOExceptionWrite short value into buf. flush buf if too small.- Parameters:
value- short value- Throws:
IOException- if socket error occur
-
writeInt
public void writeInt(int value) throws IOExceptionWrite int value into buf. flush buf if too small.- Parameters:
value- int value- Throws:
IOException- if socket error occur
-
writeLong
public void writeLong(long value) throws IOExceptionWrite long value into buf. flush buf if too small.- Parameters:
value- long value- Throws:
IOException- if socket error occur
-
writeDouble
public void writeDouble(double value) throws IOException- Throws:
IOException
-
writeFloat
public void writeFloat(float value) throws IOException- Throws:
IOException
-
writeBytes
public void writeBytes(byte[] arr) throws IOException- Throws:
IOException
-
writeBytesAtPos
public void writeBytesAtPos(byte[] arr, int pos)
-
writeBytes
public void writeBytes(byte[] arr, int off, int len) throws IOExceptionWrite byte array to buf. If buf is full, flush socket.- Parameters:
arr- byte arrayoff- offsetlen- byte length to write- Throws:
IOException- if socket error occur
-
writeLength
public void writeLength(long length) throws IOExceptionWrite field length into buf, flush socket if needed.- Parameters:
length- field length- Throws:
IOException- if socket error occur.
-
writeAscii
public void writeAscii(String str) throws IOException
- Throws:
IOException
-
writeString
public void writeString(String str) throws IOException
- Throws:
IOException
-
writeStringEscaped
public void writeStringEscaped(String str, boolean noBackslashEscapes) throws IOException
Write string to socket.- Parameters:
str- stringnoBackslashEscapes- escape method- Throws:
IOException- if socket error occur
-
writeBytesEscaped
public void writeBytesEscaped(byte[] bytes, int len, boolean noBackslashEscapes) throws IOExceptionWrite escape bytes to socket.- Parameters:
bytes- byteslen- len to writenoBackslashEscapes- escape method- Throws:
IOException- if socket error occur
-
writeEmptyPacket
public void writeEmptyPacket() throws IOExceptionSend empty packet.- Throws:
IOException- if socket error occur.
-
flush
public void flush() throws IOExceptionSend packet to socket.- Throws:
IOException- if socket error occur.
-
checkMaxAllowedLength
public void checkMaxAllowedLength(int length) throws MaxAllowedPacketExceptionCount query size. If query size is greater than max_allowed_packet and nothing has been already send, throw an exception to avoid having the connection closed.- Parameters:
length- additional length to query size- Throws:
MaxAllowedPacketException- if query has not to be sent.
-
setMaxAllowedPacket
public void setMaxAllowedPacket(int maxAllowedPacket)
-
permitTrace
public void permitTrace(boolean permitTrace)
-
setServerThreadId
public void setServerThreadId(Long serverThreadId, HostAddress hostAddress)
Set server thread id.- Parameters:
serverThreadId- current server thread id.hostAddress- host information
-
mark
public void mark()
-
isMarked
public boolean isMarked()
-
hasFlushed
public boolean hasFlushed()
-
flushBufferStopAtMark
public void flushBufferStopAtMark() throws IOExceptionFlush to last mark.- Throws:
IOException- if flush fail.
-
bufIsDataAfterMark
public boolean bufIsDataAfterMark()
-
resetMark
public byte[] resetMark()
Reset mark flag and send bytes after mark flag.- Returns:
- bytes after mark flag
-
initPacket
public void initPacket()
-
writeSocket
protected void writeSocket(boolean commandEnd) throws IOExceptionFlush the internal buf.- Parameters:
commandEnd- command end- Throws:
IOException- id connection error occur.
-
close
public void close() throws IOException- Throws:
IOException
-
-