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

com.yandex.money.api.net.ResponseLoggingInputStream Maven / Gradle / Ivy

Go to download

This Java library contains classes that allows you to do payments using Yandex.Money public API.

The newest version!
package com.yandex.money.api.net;

import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.logging.Logger;

/**
 * Logging wrapper for server responses
 * Supposes, that responses in UTF-8
 */
final class ResponseLoggingInputStream extends InputStream {

    private static Logger LOG = Logger.getLogger(ResponseLoggingInputStream.class.getName());

    private final InputStream inputStream;
    private final ByteArrayOutputStream buffer;

    public ResponseLoggingInputStream(InputStream inputStream) {
        if (inputStream == null) {
            throw new NullPointerException("input stream is null");
        }
        this.inputStream = inputStream;
        this.buffer = new ByteArrayOutputStream();
    }

    @Override
    public int read() throws IOException {
        int c = inputStream.read();
        if (c > -1) {
            buffer.write((byte) c);
        }
        return c;
    }

    @Override
    public int read(byte b[]) throws IOException {
        int read = inputStream.read(b);
        if (read > -1) {
            buffer.write(b, 0, read);
        }
        return read;
    }

    @Override
    public int read(byte b[], int off, int len) throws IOException {
        int read = inputStream.read(b, off, len);
        if (read > -1) {
            buffer.write(b, off, read);
        }
        return read;
    }

    @Override
    public void close() throws IOException {
        inputStream.close();
        buffer.close();
        LOG.info(buffer.toString("UTF-8"));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy