/*
* Copyright 2012-2015 org.opencloudb.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.opencloudb.sample;
import java.io.UnsupportedEncodingException;
import java.nio.ByteBuffer;
import org.opencloudb.config.Fields;
import org.opencloudb.mysql.CharsetUtil;
import org.opencloudb.net.mysql.EOFPacket;
import org.opencloudb.net.mysql.FieldPacket;
import org.opencloudb.net.mysql.ResultSetHeaderPacket;
import org.opencloudb.net.mysql.RowDataPacket;
/**
* 基于MySQL协议的返回数据包[header|field,field,...|eof|row,row,...|eof]
*
* @author mycat
*/
public class SampleResponseHandler {
public static void response(SampleConnection c, String message) {
byte packetId = 0;
ByteBuffer buffer = c.allocate();
// header
ResultSetHeaderPacket header = new ResultSetHeaderPacket();
header.packetId = ++packetId;
header.fieldCount = 1;
buffer = header.write(buffer, c);
// fields
FieldPacket[] fields = new FieldPacket[header.fieldCount];
for (FieldPacket field : fields) {
field = new FieldPacket();
field.packetId = ++packetId;
field.charsetIndex = CharsetUtil.getIndex("Cp1252");
field.name = "SampleServer".getBytes();
field.type = Fields.FIELD_TYPE_VAR_STRING;
buffer = field.write(buffer, c);
}
// eof
EOFPacket eof = new EOFPacket();
eof.packetId = ++packetId;
buffer = eof.write(buffer, c);
// rows
RowDataPacket row = new RowDataPacket(header.fieldCount);
row.add(message != null ? encode(message, c.getCharset()) : encode("HelloWorld!", c.getCharset()));
row.packetId = ++packetId;
buffer = row.write(buffer, c);
// write lastEof
EOFPacket lastEof = new EOFPacket();
lastEof.packetId = ++packetId;
buffer = lastEof.write(buffer, c);
// write buffer
c.write(buffer);
}
private static byte[] encode(String src, String charset) {
if (src == null) {
return null;
}
try {
return src.getBytes(charset);
} catch (UnsupportedEncodingException e) {
// log something
return src.getBytes();
}
}
}