Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

modify Metadata.class for geometry type #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
191 changes: 191 additions & 0 deletions AbstractRowEventParser.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,191 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 com.google.code.or.binlog.impl.parser;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import com.google.code.or.binlog.BinlogRowEventFilter;
import com.google.code.or.binlog.impl.event.TableMapEvent;
import com.google.code.or.binlog.impl.filter.BinlogRowEventFilterImpl;
import com.google.code.or.common.glossary.Column;
import com.google.code.or.common.glossary.Metadata;
import com.google.code.or.common.glossary.Row;
import com.google.code.or.common.glossary.column.BitColumn;
import com.google.code.or.common.glossary.column.BlobColumn;
import com.google.code.or.common.glossary.column.DateColumn;
import com.google.code.or.common.glossary.column.Datetime2Column;
import com.google.code.or.common.glossary.column.DatetimeColumn;
import com.google.code.or.common.glossary.column.DecimalColumn;
import com.google.code.or.common.glossary.column.DoubleColumn;
import com.google.code.or.common.glossary.column.EnumColumn;
import com.google.code.or.common.glossary.column.FloatColumn;
import com.google.code.or.common.glossary.column.Int24Column;
import com.google.code.or.common.glossary.column.LongColumn;
import com.google.code.or.common.glossary.column.LongLongColumn;
import com.google.code.or.common.glossary.column.NullColumn;
import com.google.code.or.common.glossary.column.SetColumn;
import com.google.code.or.common.glossary.column.ShortColumn;
import com.google.code.or.common.glossary.column.Time2Column;
import com.google.code.or.common.glossary.column.TimeColumn;
import com.google.code.or.common.glossary.column.Timestamp2Column;
import com.google.code.or.common.glossary.column.TimestampColumn;
import com.google.code.or.common.glossary.column.TinyColumn;
import com.google.code.or.common.glossary.column.YearColumn;
import com.google.code.or.common.util.CodecUtils;
import com.google.code.or.common.util.MySQLConstants;
import com.google.code.or.common.util.MySQLUtils;
import com.google.code.or.io.XInputStream;

/**
*
* @author Jingqi Xu
*/
public abstract class AbstractRowEventParser extends AbstractBinlogEventParser {
//
protected BinlogRowEventFilter rowEventFilter;

/**
*
*/
public AbstractRowEventParser(int eventType) {
super(eventType);
this.rowEventFilter = new BinlogRowEventFilterImpl();
}

/**
*
*/
public BinlogRowEventFilter getRowEventFilter() {
return rowEventFilter;
}

public void setRowEventFilter(BinlogRowEventFilter filter) {
this.rowEventFilter = filter;
}

/**
*
*/
protected Row parseRow(XInputStream is, TableMapEvent tme, BitColumn usedColumns)
throws IOException {
//
int unusedColumnCount = 0;
final byte[] types = tme.getColumnTypes();
final Metadata metadata = tme.getColumnMetadata();
final BitColumn nullColumns = is.readBit(types.length);
final List<Column> columns = new ArrayList<Column>(types.length);
for(int i = 0; i < types.length; ++i) {
//
int length = 0;
final int meta = metadata.getMetadata(i);
int type = CodecUtils.toUnsigned(types[i]);
if(type == MySQLConstants.TYPE_STRING && meta > 256) {
final int meta0 = meta >> 8;
final int meta1 = meta & 0xFF;
if ((meta0 & 0x30) != 0x30) { // a long CHAR() field: see #37426
type = meta0 | 0x30;
length = meta1 | (((meta0 & 0x30) ^ 0x30) << 4);
} else {
switch (meta0) {
case MySQLConstants.TYPE_SET:
case MySQLConstants.TYPE_ENUM:
case MySQLConstants.TYPE_STRING:
type = meta0;
length = meta1;
break;
default:
throw new RuntimeException("assertion failed, unknown column type: " + type);
}
}
}

//
if(!usedColumns.get(i)) {
unusedColumnCount++;
continue;
} else if(nullColumns.get(i - unusedColumnCount)) {
columns.add(NullColumn.valueOf(type));
continue;
}

//
switch(type) {
case MySQLConstants.TYPE_TINY: columns.add(TinyColumn.valueOf(is.readSignedInt(1))); break;
case MySQLConstants.TYPE_SHORT: columns.add(ShortColumn.valueOf(is.readSignedInt(2))); break;
case MySQLConstants.TYPE_INT24: columns.add(Int24Column.valueOf(is.readSignedInt(3))); break;
case MySQLConstants.TYPE_LONG: columns.add(LongColumn.valueOf(is.readSignedInt(4))); break;
case MySQLConstants.TYPE_LONGLONG: columns.add(LongLongColumn.valueOf(is.readSignedLong(8))); break;
case MySQLConstants.TYPE_FLOAT: columns.add(FloatColumn.valueOf(Float.intBitsToFloat(is.readInt(4)))); break;
case MySQLConstants.TYPE_DOUBLE: columns.add(DoubleColumn.valueOf(Double.longBitsToDouble(is.readLong(8)))); break;
case MySQLConstants.TYPE_YEAR: columns.add(YearColumn.valueOf(MySQLUtils.toYear(is.readInt(1)))); break;
case MySQLConstants.TYPE_DATE: columns.add(DateColumn.valueOf(MySQLUtils.toDate(is.readInt(3)))); break;
case MySQLConstants.TYPE_TIME: columns.add(TimeColumn.valueOf(MySQLUtils.toTime(is.readInt(3)))); break;
case MySQLConstants.TYPE_DATETIME: columns.add(DatetimeColumn.valueOf(MySQLUtils.toDatetime(is.readLong(8)))); break;
case MySQLConstants.TYPE_TIMESTAMP: columns.add(TimestampColumn.valueOf(MySQLUtils.toTimestamp(is.readLong(4)))); break;
case MySQLConstants.TYPE_ENUM: columns.add(EnumColumn.valueOf(is.readInt(length))); break;
case MySQLConstants.TYPE_SET: columns.add(SetColumn.valueOf(is.readLong(length))); break;
case MySQLConstants.TYPE_BIT:
final int bitLength = (meta >> 8) * 8 + (meta & 0xFF);
columns.add(is.readBit(bitLength, false));
break;
case MySQLConstants.TYPE_BLOB:
final int blobLength = is.readInt(meta);
columns.add(BlobColumn.valueOf(is.readBytes(blobLength)));
break;
case MySQLConstants.TYPE_NEWDECIMAL:
final int precision = meta & 0xFF;
final int scale = meta >> 8;
final int decimalLength = MySQLUtils.getDecimalBinarySize(precision, scale);
columns.add(DecimalColumn.valueOf(MySQLUtils.toDecimal(precision, scale, is.readBytes(decimalLength)), precision, scale));
break;
case MySQLConstants.TYPE_STRING:
final int stringLength = length < 256 ? is.readInt(1) : is.readInt(2);
columns.add(is.readFixedLengthString(stringLength));
break;
case MySQLConstants.TYPE_VARCHAR:
case MySQLConstants.TYPE_VAR_STRING:
final int varcharLength = meta < 256 ? is.readInt(1) : is.readInt(2);
columns.add(is.readFixedLengthString(varcharLength));
break;
case MySQLConstants.TYPE_TIME2:
final int value1 = is.readInt(3, false);
final int nanos1 = is.readInt((meta + 1) / 2, false);
columns.add(Time2Column.valueOf(MySQLUtils.toTime2(value1, nanos1)));
break;
case MySQLConstants.TYPE_DATETIME2:
final long value2 = is.readLong(5, false);
final int nanos2 = is.readInt((meta + 1) / 2, false);
columns.add(Datetime2Column.valueOf(MySQLUtils.toDatetime2(value2, nanos2)));
break;
case MySQLConstants.TYPE_TIMESTAMP2:
final long value3 = is.readLong(4, false);
final int nanos3 = is.readInt((meta + 1) / 2, false);
columns.add(Timestamp2Column.valueOf(MySQLUtils.toTimestamp2(value3, nanos3)));
break;
case MySQLConstants.TYPE_GEOMETRY:
final int geometryLength = is.readInt(4);
columns.add(BlobColumn.valueOf(is.readBytes(geometryLength)));
break;
default:
throw new RuntimeException("assertion failed, unknown column type: " + type);
}
}
return new Row(columns);
}
}