cn.wjybxx.dson.DsonLiteBinaryReader Maven / Gradle / Ivy
/*
* Copyright 2023-2024 wjybxx([email protected])
*
* 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 cn.wjybxx.dson;
import cn.wjybxx.dson.io.DsonIOException;
import cn.wjybxx.dson.io.DsonInput;
import cn.wjybxx.dson.types.*;
import java.util.Objects;
/**
* @author wjybxx
* date - 2023/4/22
*/
public class DsonLiteBinaryReader extends AbstractDsonLiteReader {
private DsonInput input;
public DsonLiteBinaryReader(DsonReaderSettings settings, DsonInput input) {
super(settings);
this.input = Objects.requireNonNull(input);
setContext(new Context().init(null, DsonContextType.TOP_LEVEL, null));
}
@Override
protected Context getContext() {
return (Context) super.getContext();
}
@Override
protected AbstractDsonLiteReader.Context newContext() {
return new Context();
}
@Override
public void close() {
if (settings.autoClose && input != null) {
input.close();
input = null;
}
super.close();
}
// region state
@Override
public DsonType readDsonType() {
Context context = this.getContext();
checkReadDsonTypeState(context);
final int fullType = input.isAtEnd() ? 0 : Byte.toUnsignedInt(input.readRawByte());
final int wreTypeBits = Dsons.wireTypeOfFullType(fullType);
DsonType dsonType = DsonType.forNumber(Dsons.dsonTypeOfFullType(fullType));
WireType wireType = dsonType.hasWireType() ? WireType.forNumber(wreTypeBits) : WireType.VARINT;
this.currentDsonType = dsonType;
this.currentWireType = wireType;
this.currentWireTypeBits = wreTypeBits;
this.currentName = INVALID_NAME;
onReadDsonType(context, dsonType);
return dsonType;
}
@Override
public DsonType peekDsonType() {
Context context = this.getContext();
checkReadDsonTypeState(context);
final int fullType = input.isAtEnd() ? 0 : Byte.toUnsignedInt(input.getByte(input.getPosition()));
return DsonType.forNumber(Dsons.dsonTypeOfFullType(fullType));
}
@Override
protected void doReadName() {
currentName = input.readUint32();
}
// endregion
// region 简单值
@Override
protected int doReadInt32() {
return currentWireType.readInt32(input);
}
@Override
protected long doReadInt64() {
return currentWireType.readInt64(input);
}
@Override
protected float doReadFloat() {
return DsonReaderUtils.readFloat(input, currentWireTypeBits);
}
@Override
protected double doReadDouble() {
return DsonReaderUtils.readDouble(input, currentWireTypeBits);
}
@Override
protected boolean doReadBool() {
return DsonReaderUtils.readBool(input, currentWireTypeBits);
}
@Override
protected String doReadString() {
return input.readString();
}
@Override
protected void doReadNull() {
}
@Override
protected Binary doReadBinary() {
return DsonReaderUtils.readBinary(input);
}
@Override
protected ExtInt32 doReadExtInt32() {
return DsonReaderUtils.readExtInt32(input, currentWireType);
}
@Override
protected ExtInt64 doReadExtInt64() {
return DsonReaderUtils.readExtInt64(input, currentWireType);
}
@Override
protected ExtDouble doReadExtDouble() {
return DsonReaderUtils.readExtDouble(input, currentWireTypeBits);
}
@Override
protected ExtString doReadExtString() {
return DsonReaderUtils.readExtString(input, currentWireTypeBits);
}
@Override
protected ObjectRef doReadRef() {
return DsonReaderUtils.readRef(input, currentWireTypeBits);
}
@Override
protected OffsetTimestamp doReadTimestamp() {
return DsonReaderUtils.readTimestamp(input);
}
// endregion
// region 容器
@Override
protected void doReadStartContainer(DsonContextType contextType, DsonType dsonType) {
Context newContext = newContext(getContext(), contextType, dsonType);
int length = input.readFixed32();
newContext.oldLimit = input.pushLimit(length);
newContext.name = currentName;
this.recursionDepth++;
setContext(newContext);
}
@Override
protected void doReadEndContainer() {
if (!input.isAtEnd()) {
throw DsonIOException.bytesRemain(input.getBytesUntilLimit());
}
Context context = getContext();
input.popLimit(context.oldLimit);
// 恢复上下文
recoverDsonType(context);
this.recursionDepth--;
setContext(context.parent);
returnContext(context);
}
// endregion
// region 特殊接口
@Override
protected void doSkipName() {
input.readUint32();
}
@Override
protected void doSkipValue() {
DsonReaderUtils.skipValue(input, getContextType(), currentDsonType, currentWireType, currentWireTypeBits);
}
@Override
protected void doSkipToEndOfObject() {
DsonReaderUtils.skipToEndOfObject(input);
}
@Override
protected byte[] doReadValueAsBytes() {
return DsonReaderUtils.readValueAsBytes(input, currentDsonType);
}
// endregion
// region context
private Context newContext(Context parent, DsonContextType contextType, DsonType dsonType) {
Context context = (Context) rentContext();
context.init(parent, contextType, dsonType);
return context;
}
protected static class Context extends AbstractDsonLiteReader.Context {
int oldLimit = -1;
public Context() {
}
public void reset() {
super.reset();
oldLimit = -1;
}
}
// endregion
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy