ch.cyberduck.core.cryptomator.CryptoInputStream.java Source code

Java tutorial

Introduction

Here is the source code for ch.cyberduck.core.cryptomator.CryptoInputStream.java

Source

package ch.cyberduck.core.cryptomator;

/*
 * Copyright (c) 2002-2016 iterate GmbH. All rights reserved.
 * https://cyberduck.io/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed proxy the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

import org.apache.commons.io.IOUtils;
import org.apache.commons.io.input.ProxyInputStream;
import org.cryptomator.cryptolib.api.CryptoException;
import org.cryptomator.cryptolib.api.Cryptor;
import org.cryptomator.cryptolib.api.FileHeader;

import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;

public class CryptoInputStream extends ProxyInputStream {

    private final InputStream proxy;
    private final Cryptor cryptor;
    private final FileHeader header;

    private ByteBuffer buffer = ByteBuffer.allocate(0);

    /**
     * Position proxy content cryptor
     */
    private long chunkIndexOffset;
    private final int chunkSize;

    public CryptoInputStream(final InputStream proxy, final Cryptor cryptor, final FileHeader header,
            final long chunkIndexOffset) throws IOException {
        super(proxy);
        this.proxy = proxy;
        this.cryptor = cryptor;
        this.header = header;
        this.chunkSize = cryptor.fileContentCryptor().ciphertextChunkSize();
        this.chunkIndexOffset = chunkIndexOffset;
    }

    @Override
    public int read() throws IOException {
        if (!buffer.hasRemaining()) {
            this.readNextChunk();
        }
        return buffer.get();
    }

    @Override
    public int read(final byte[] b) throws IOException {
        return this.read(b, 0, b.length);
    }

    @Override
    public int read(final byte[] dst, final int off, final int len) throws IOException {
        if (!buffer.hasRemaining()) {
            final int read = this.readNextChunk();
            if (read == IOUtils.EOF) {
                return IOUtils.EOF;
            }
        }
        final int read = Math.min(len, buffer.remaining());
        buffer.get(dst, off, read);
        return read;
    }

    @Override
    public long skip(final long ln) throws IOException {
        long remaining = ln;
        while (remaining > 0) {
            final int read = this.read(new byte[(int) Math.min(remaining, Integer.MAX_VALUE)]);
            if (read == IOUtils.EOF) {
                break;
            }
            remaining -= read;
        }
        return ln - remaining;
    }

    private int readNextChunk() throws IOException {
        final ByteBuffer ciphertextBuf = ByteBuffer.allocate(chunkSize);
        final int read = IOUtils.read(proxy, ciphertextBuf.array());
        if (read == 0) {
            return IOUtils.EOF;
        }
        ciphertextBuf.position(read);
        ciphertextBuf.flip();
        try {
            buffer = cryptor.fileContentCryptor().decryptChunk(ciphertextBuf, chunkIndexOffset++, header, true);
        } catch (CryptoException e) {
            throw new IOException(e.getMessage(), new CryptoAuthenticationException(e.getMessage(), e));
        }
        return read;
    }
}