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

com.facebook.presto.jdbc.internal.airlift.json.LengthLimitedWriter Maven / Gradle / Ivy

There is a newer version: 0.289
Show newest version
package com.facebook.presto.jdbc.internal.airlift.json;

import java.io.IOException;
import java.io.Writer;

import static java.util.Objects.requireNonNull;

class LengthLimitedWriter
        extends Writer
{
    private final Writer writer;
    private final int maxLength;
    private int count;

    public LengthLimitedWriter(Writer writer, int maxLength)
    {
        this.writer = requireNonNull(writer, "writer is null");
        this.maxLength = maxLength;
    }

    @Override
    public void write(char[] buffer, int offset, int length)
            throws IOException
    {
        count += length;
        if (count > maxLength) {
            throw new LengthLimitExceededException();
        }
        writer.write(buffer, offset, length);
    }

    @Override
    public void flush()
            throws IOException
    {
        writer.flush();
    }

    @Override
    public void close()
            throws IOException
    {
        writer.close();
    }

    // this needs to extend IOException so that Jackson doesn't wrap it
    public static class LengthLimitExceededException
            extends IOException
    {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy