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

com.obs.services.internal.RepeatableRequestEntity Maven / Gradle / Ivy

Go to download

The HuaweiCloud OBS Bundle SDK for Java used for accessing Object Storage Service, this SDK bundle includes third-party libraries and relocated to different namespaces

The newest version!
/**
 * Copyright 2019 Huawei Technologies Co.,Ltd.
 * 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 com.obs.services.internal;

import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;

import com.obs.log.ILogger;
import com.obs.log.LoggerBuilder;
import com.obs.services.internal.io.MayRepeatableInputStream;
import com.obs.services.internal.utils.Mimetypes;

import okhttp3.MediaType;
import okhttp3.RequestBody;
import okio.BufferedSink;

public class RepeatableRequestEntity extends RequestBody implements Closeable {
    private static final ILogger INTERFACE_LOG = 
            LoggerBuilder.getLogger("com.obs.services.internal.RestStorageService");

    private String contentType;
    private long contentLength = -1;

    private volatile long bytesWritten = 0;
    private InputStream inputStream;

    private static final int WRITE_BUFFER_SIZE = ObsConstraint.DEFAULT_CHUNK_SIZE;

    public RepeatableRequestEntity(InputStream is, String contentType, long contentLength,
            ObsProperties obsProperties) {
        if (is == null) {
            throw new IllegalArgumentException("InputStream cannot be null");
        }
        this.inputStream = is;
        this.contentLength = contentLength;
        this.contentType = contentType;

        if (!(this.inputStream instanceof MayRepeatableInputStream)) {
            this.inputStream = new MayRepeatableInputStream(is, obsProperties
                    .getIntProperty(ObsConstraint.WRITE_BUFFER_SIZE, ObsConstraint.DEFAULT_WRITE_BUFFER_STREAM));
        }
        this.inputStream.mark(0);
    }

    @Override
    public long contentLength() throws IOException {
        return this.contentLength;
    }

    public boolean isRepeatable() {
        return this.inputStream == null || this.inputStream.markSupported();
    }

    protected void writeToBIO(BufferedSink out) throws IOException {
        byte[] tmp = new byte[WRITE_BUFFER_SIZE];
        int count = 0;
        if (this.contentLength < 0) {
            count = this.inputStream.read(tmp);
            while (count != -1) {
                bytesWritten += count;
                out.write(tmp, 0, count);
                count = this.inputStream.read(tmp);
            }
        } else {
            // consume no more than length
            long remaining = this.contentLength;
            while (remaining > 0) {
                count = inputStream.read(tmp, 0, (int) Math.min(WRITE_BUFFER_SIZE, remaining));
                if (count == -1) {
                    break;
                }
                out.write(tmp, 0, count);
                bytesWritten += count;
                remaining -= count;
            }
        }
    }

    @Override
    public MediaType contentType() {
        return MediaType.parse(this.contentType == null ? Mimetypes.MIMETYPE_OCTET_STREAM : this.contentType);
    }

    @Override
    public void writeTo(BufferedSink sink) throws IOException {

        long start = System.currentTimeMillis();
        if (bytesWritten > 0) {
            inputStream.reset();
            bytesWritten = 0;
        }

        this.writeToBIO(sink);
        if (INTERFACE_LOG.isInfoEnabled()) {
            INTERFACE_LOG.info("write data end, cost " + (System.currentTimeMillis() - start) + " ms");
        }
    }

    @Override
    public void close() throws IOException {
        if (this.inputStream != null) {
            this.inputStream.close();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy