com.google.code.or.io.util.XSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of open-replicator Show documentation
Show all versions of open-replicator Show documentation
Open Replicator is a high performance MySQL binlog parser written in Java.
/**
* 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.io.util;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import com.google.code.or.common.glossary.UnsignedLong;
import com.google.code.or.common.glossary.column.StringColumn;
import com.google.code.or.io.XOutputStream;
import com.google.code.or.io.impl.XOutputStreamImpl;
/**
*
* @author Jingqi Xu
*/
public final class XSerializer implements XOutputStream {
//
private final XOutputStream tos;
private final ByteArrayOutputStream bos;
/**
*
*/
public XSerializer() {
this.bos = new ByteArrayOutputStream();
this.tos = new XOutputStreamImpl(this.bos);
}
public XSerializer(int size) {
this.bos = new ByteArrayOutputStream(size);
this.tos = new XOutputStreamImpl(this.bos);
}
/**
*
*/
public byte[] toByteArray() {
flush();
return this.bos.toByteArray();
}
/**
*
*/
public void flush() {
try {
this.tos.flush();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void close() throws IOException {
try {
this.tos.close();
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeBytes(byte[] value) {
try {
this.tos.writeBytes(value);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeBytes(int value, int length) {
try {
this.tos.writeBytes(value, length);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeBytes(byte[] value, int offset, int length) {
try {
this.tos.writeBytes(value, offset, length);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeInt(int value, int length) {
try {
this.tos.writeInt(value, length);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeLong(long value, int length) {
try {
this.tos.writeLong(value, length);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeUnsignedLong(UnsignedLong value) {
try {
this.tos.writeUnsignedLong(value);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeLengthCodedString(StringColumn value) {
try {
this.tos.writeLengthCodedString(value);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeFixedLengthString(StringColumn value) {
try {
this.tos.writeFixedLengthString(value);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
public void writeNullTerminatedString(StringColumn value) {
try {
this.tos.writeNullTerminatedString(value);
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}