Maison  >  Article  >  base de données  >  详细分析mysql 协议的query包及解析

详细分析mysql 协议的query包及解析

黄舟
黄舟original
2017-03-07 13:47:551390parcourir

git

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

概况

mysql客户端可以用query包向服务端发送一个基于文本查询。

mysql通信报文结构

类型 名字 描述
int5bdf4c78156c7953567bb5a0aef2fc53 payload长度 按照the least significant byte first存储,3个字节的payload和1个字节的序列号组合成报文头
intf35d6e602fd7d0f0edfa6f7d103c1b57 序列号
string payload 报文体,长度即为前面指定的payload长度

query包

Payload

1              [03] COM_QUERYstring[EOF]    the query the server shall execute

更多详情 : https://dev.mysql.com/doc/internals/en/com-query.html

query包类

/**
 * 
 * <pre class="brush:php;toolbar:false"><b>mysql query packet.</b>
* @author *
seaboat
*
<b>email: </b>849586227@qq.com
*
<b>blog: </b>http://www.php.cn/;/pre>
 * @version 1.0
 * @see http://www.php.cn/
 */public class QueryPacket extends MySQLPacket {
    public byte flag;    
    public byte[] message;    
    public void read(byte[] data) {
        MySQLMessage mm = new MySQLMessage(data);
        packetLength = mm.readUB3();
        packetId = mm.read();
        flag = mm.read();
        message = mm.readBytes();
    }    public void write(ByteBuffer buffer) {        
    int size = calcPacketSize();
        BufferUtil.writeUB3(buffer, size);
        buffer.put(packetId);
        buffer.put(COM_QUERY);
        buffer.put(message);
    }    @Override
    public int calcPacketSize() {        
    int size = 1;        
    if (message != null) {
            size += message.length;
        }        
        return size;
    }    
    @Override
    protected String getPacketInfo() {        
    return "MySQL Query Packet";
    }

}

 以上就是详细分析mysql 协议的query包及解析的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn