io.github.matteobertozzi.yajbe.YajbeReaderByteArray Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jackson-dataformat-yajbe Show documentation
Show all versions of jackson-dataformat-yajbe Show documentation
YAJBE is a compact binary data format built to be a drop-in replacement for JSON (JavaScript Object Notation).
The newest version!
/*
* 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 io.github.matteobertozzi.yajbe;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
final class YajbeReaderByteArray extends YajbeReader {
private final byte[] data;
private final int length;
private int offset;
public YajbeReaderByteArray(final byte[] data, final int offset, final int len) {
this.data = data;
this.offset = offset;
this.length = len;
}
@Override
protected int peek() {
return (offset < length) ? (data[offset] & 0xff) : -1;
}
@Override
protected int read() {
return (offset < length) ? (data[offset++] & 0xff) : -1;
}
@Override
protected ByteArraySlice readNBytes(final int n) throws IOException {
if (data.length < (offset + n)) {
throw new IOException("invalid length:" + n + ", avail:" + (data.length - offset));
}
final ByteArraySlice slice = new ByteArraySlice(data, offset, n);
offset += n;
return slice;
}
@Override
protected void readNBytes(final byte[] buf, final int off, final int len) {
System.arraycopy(data, offset, buf, off, len);
offset += len;
}
@Override
protected String readString(final int n) {
final String r = new String(data, offset, n, StandardCharsets.UTF_8);
offset += n;
return r;
}
@Override
protected long readFixed(final int width) {
final int off = this.offset;
this.offset += width;
return readFixed(data, off, width);
}
@Override
protected int readFixedInt(final int width) {
final int off = this.offset;
this.offset += width;
return readFixedInt(data, off, width);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy