com.liferay.portal.kernel.dao.jdbc.OutputBlob.java Source code

Java tutorial

Introduction

Here is the source code for com.liferay.portal.kernel.dao.jdbc.OutputBlob.java

Source

/**
 * Copyright (c) 2000-present Liferay, Inc. All rights reserved.
 *
 * This library is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This library is distributed in 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 Lesser General Public License for more
 * details.
 */

package com.liferay.portal.kernel.dao.jdbc;

import com.liferay.portal.kernel.internal.dao.jdbc.LimitedInputStream;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import java.sql.Blob;
import java.sql.SQLException;

/**
 * @author Shuyang Zhou
 */
public class OutputBlob implements Blob {

    public OutputBlob(InputStream inputStream, long length) {
        if (inputStream == null) {
            throw new IllegalArgumentException("Input stream is null");
        }

        if (length < 0) {
            throw new IllegalArgumentException("Length is less than 0");
        }

        _inputStream = inputStream;
        _length = length;
    }

    @Override
    public void free() throws SQLException {
        try {
            _inputStream.close();
        } catch (IOException ioe) {
            throw new SQLException(ioe.getMessage());
        }

        _inputStream = null;
    }

    @Override
    public InputStream getBinaryStream() {
        return _inputStream;
    }

    @Override
    public InputStream getBinaryStream(long pos, long length) throws SQLException {

        if (pos < 1) {
            throw new SQLException("Position is less than 1");
        }

        long offset = pos - 1;

        if ((offset >= _length) || ((offset + length) >= _length)) {
            throw new SQLException("Invalid range");
        }

        try {
            return new LimitedInputStream(_inputStream, offset, length);
        } catch (IOException ioe) {
            throw new SQLException(ioe.getMessage());
        }
    }

    @Override
    public byte[] getBytes(long pos, int length) throws SQLException {
        if (pos < 1) {
            throw new SQLException("Position is less than 1");
        }

        if (length < 0) {
            throw new SQLException("Length is less than 0");
        }

        byte[] bytes = new byte[length];

        try {
            int newLength = 0;

            int read = -1;

            while ((newLength < length)
                    && ((read = _inputStream.read(bytes, newLength, length - newLength)) != -1)) {

                newLength += read;
            }

            if (newLength < length) {
                byte[] newBytes = new byte[newLength];

                System.arraycopy(bytes, 0, newBytes, 0, newLength);

                bytes = newBytes;
            }
        } catch (IOException ioe) {
            throw new SQLException(ioe.getMessage());
        }

        return bytes;
    }

    @Override
    public long length() {
        return _length;
    }

    @Override
    public long position(Blob pattern, long start) {
        throw new UnsupportedOperationException();
    }

    @Override
    public long position(byte[] pattern, long start) {
        throw new UnsupportedOperationException();
    }

    @Override
    public OutputStream setBinaryStream(long pos) {
        throw new UnsupportedOperationException();
    }

    @Override
    public int setBytes(long pos, byte[] bytes) {
        throw new UnsupportedOperationException();
    }

    @Override
    public int setBytes(long pos, byte[] bytes, int offset, int length) {
        throw new UnsupportedOperationException();
    }

    @Override
    public void truncate(long length) {
        throw new UnsupportedOperationException();
    }

    private InputStream _inputStream;
    private final long _length;

}