All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.siisise.io.ReadBase Maven / Gradle / Ivy

There is a newer version: 1.1.15
Show newest version
/*
 * Copyright 2022 okome.
 *
 * 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 net.siisise.io;

import java.io.InputStream;
import java.nio.ByteBuffer;
import java.nio.channels.ReadableByteChannel;
import net.siisise.math.Matics;

/**
 * Packet Block の共通項を探る抽象クラス.
 */
public abstract class ReadBase implements Input, IndexInput, RevInput, ReadableByteChannel {

    @Override
    public InputStream getInputStream() {
        return new FilterInput(this);
    }

    @Override
    public InputStream getBackInputStream() {
        return new RevInputStream(this);
    }

    @Override
    public byte get() {
        byte[] b = new byte[1];
        get(b,0,1);
        return b[0];
    }

    @Override
    public long get(byte[] b, int offset, int length) {
        if ( !Matics.sorted(0,offset,offset + length, b.length) ||  length() < length ) {
            throw new java.nio.BufferOverflowException();
        }
        return read(b,offset,length);
    }

    @Override
    public byte get(long index) {
        byte[] d = new byte[1];
        get(index, d, 0, 1);
        return d[0];
    }

    @Override
    public ReadBase get(long index, byte[] b) {
        return (ReadBase)get(index, b, 0, b.length);
    }

    @Override
    public int read() {
        byte[] d = new byte[1];
        return read(d,0,1) < 1 ? -1 : d[0] & 0xff;
    }

    @Override
    public int read(byte[] d) {
        return read(d, 0, d.length);
    }

    /**
     * データを読む.
     * サイズはdst.remainingとこれの小さい方.
     * @param dst 移動先
     * @return 読めたサイズ
     */
    @Override
    public int read(ByteBuffer dst) {
        int size = Math.min(dst.remaining(), size());
        if ( dst.hasArray() ) {
            int p = dst.position();
            int s = read(dst.array(), dst.arrayOffset() + p, size);
            dst.position(p+s);
            return s;
        }
        byte[] d = new byte[size];
        size = read(d,0,size);
        dst.put(d, 0, size);
        return size;
    }

    /**
     * 残りを配列にする
     * @return 配列
     */
    @Override
    public byte[] toByteArray() {
        byte[] b = new byte[size()];
        read(b);
        return b;
    }

    @Override
    public long skip(long length) {
        return Input.skipImpl(this, length);
    }

    /**
     * backSkip
     * @param length 移動量
     * @return 移動した量
     */
    @Override
    public long back(long length) {
        return RevInput.backImpl(this, length);
    }

    /**
     * PacketAを使った簡易実装.
     *
     * @param length 長さ
     * @return 読んだPacket
     */
    @Override
    public Packet readPacket(long length) {
        PacketA pac = new PacketA();
        pac.write(this, length);
        return pac;
    }

    @Override
    public int size() {
        return (int)Math.min(length(), Integer.MAX_VALUE);
    }

    @Override
    public int backSize() {
        return (int)Math.min(backLength(), Integer.MAX_VALUE);
    }

    @Override
    public byte revGet() {
        byte[] d = new byte[1];
        revGet(d, 0, 1);
        return d[0];
    }
    
    public ReadBase revGet(byte[] d) {
        return revGet(d, 0, d.length);
    }
    
    public ReadBase revGet(byte[] d, int offset, int length) {
        if ( backSize() < length ) {
            throw new java.nio.BufferUnderflowException();
        }
        backRead(d, offset, length);
        return this;
    }

    @Override
    public int backRead() {
        byte[] d = new byte[1];
        return backRead(d,0,1) < 1 ? -1 : d[0] & 0xff;
    }

    @Override
    public int backRead(byte[] data) {
        return backRead(data, 0, data.length);
    }

    @Override
    public Packet backReadPacket(long length) {
        Packet bp = new PacketA();
        RevOutput.backWrite(bp, this, length);
        return bp;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy