Home  >  Article  >  Database  >  processInfo command package and analysis of mysql protocol

processInfo command package and analysis of mysql protocol

黄舟
黄舟Original
2017-03-07 13:44:041241browse

git

https://github.com/sea-boat/mysql-protocol

Overview

The mysql client queries the active processes on the server through the processInfo command.

mysql communication message structure

##string payloadMessage body, the length is the previously specified payload length
Type Name Description
int5bdf4c78156c7953567bb5a0aef2fc53 payload length Stored according to the least significant byte first, 3-byte payload and 1-byte sequence number combination Into the message header
intf35d6e602fd7d0f0edfa6f7d103c1b57 sequence number
processInfo command package

Payload

1              [0a] COM_PROCCESS_INFO

More details: http://dev.mysql.com/doc/internals/en/com-process-info.htm

processInfo command package class

/**
 * 
 * 
process info command packet.
* @author *
seaboat
*
email: 849586227@qq.com
*
blog: //m.sbmmt.com/;/pre>
 * @version 1.0
 * @see //m.sbmmt.com/
 */public class ProcessInfoPacket extends MySQLPacket {

    public byte payload;    @Override
    public int calcPacketSize() {        return 1;
    }    @Override
    protected String getPacketInfo() {        return "MySQL Process Info Packet";
    }    @Override
    public void read(byte[] data) {
        MySQLMessage mm = new MySQLMessage(data);
        packetLength = mm.readUB3();
        packetId = mm.read();
        payload = mm.read();
    }    @Override
    public void write(ByteBuffer buffer) {        int size = calcPacketSize();
        BufferUtil.writeUB3(buffer, size);
        buffer.put(packetId);
        buffer.put(COM_PROCESS_INFO);
    }

}

The above is the processInfo command package and analysis content of the mysql protocol. For more related content, please pay attention to the PHP Chinese website (m.sbmmt.com)!



Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn