com.spectralogic.ds3client.Ds3InputStreamEntity.java Source code

Java tutorial

Introduction

Here is the source code for com.spectralogic.ds3client.Ds3InputStreamEntity.java

Source

/*
 * ******************************************************************************
 *   Copyright 2014-2017 Spectra Logic Corporation. All Rights Reserved.
 *   Licensed under the Apache License, Version 2.0 (the "License"). You may not use
 *   this file except in compliance with the License. A copy of the License is located at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 *   or in the "license" file accompanying this file.
 *   This file 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 com.spectralogic.ds3client;

import com.spectralogic.ds3client.exceptions.ContentLengthNotMatchException;
import com.spectralogic.ds3client.utils.IOUtils;
import com.spectralogic.ds3client.utils.PerformanceUtils;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.InputStreamEntity;

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

public class Ds3InputStreamEntity extends InputStreamEntity {

    private int bufferSize = 1024 * 1024;
    private final String path;

    public Ds3InputStreamEntity(final InputStream inStream, final long length, final ContentType contentType,
            final String path) {
        super(inStream, length, contentType);
        this.path = path;
    }

    public void setBufferSize(final int bufferSize) {
        this.bufferSize = bufferSize;
    }

    public long getBufferSize() {
        return bufferSize;
    }

    @Override
    public void writeTo(final OutputStream outStream) throws IOException {
        final long startTime = PerformanceUtils.getCurrentTime();
        final long totalBytes = IOUtils.copy(this.getContent(), outStream, bufferSize, path, true);
        final long endTime = PerformanceUtils.getCurrentTime();

        if (this.getContentLength() != -1 && totalBytes != this.getContentLength()) {
            throw new ContentLengthNotMatchException(path, this.getContentLength(), totalBytes);
        }

        PerformanceUtils.logMbps(startTime, endTime, totalBytes, path, true);
    }
}