com.mastfrog.acteur.io.FileWriter.java Source code

Java tutorial

Introduction

Here is the source code for com.mastfrog.acteur.io.FileWriter.java

Source

/*
 * The MIT License
 *
 * Copyright 2015 Tim Boudreau.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
 * THE SOFTWARE.
 */
package com.mastfrog.acteur.io;

import com.google.inject.Inject;
import com.mastfrog.acteur.Closables;
import com.mastfrog.util.Checks;
import io.netty.buffer.ByteBuf;
import io.netty.channel.ChannelFuture;
import io.netty.channel.ChannelFutureListener;
import io.netty.handler.codec.http.DefaultHttpContent;
import io.netty.handler.codec.http.LastHttpContent;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;

/**
 * Efficient implementation of streaming a {@link java.io.File} to the response.
 * Uses chunked encoding.  If a File is injected in the request scope, can use
 * the class rather than instantiating it direcly.  By default, streams the
 * file in 1024 byte chunks, unless passed a different value in the 3-argument
 * constructor.
 *
 * @author Tim Boudreau
 */
public class FileWriter implements ChannelFutureListener {

    public static final int DEFAULT_BUFFER_SIZE = 1024;

    private final byte[] buffer = new byte[DEFAULT_BUFFER_SIZE];
    private final InputStream stream;
    private final int bufferSize;

    public FileWriter(File file, Closables clos, int bufferSize) throws FileNotFoundException {
        Checks.notNull("file", file);
        Checks.notNull("clos", clos);
        Checks.nonNegative("bufferSize", bufferSize);
        stream = clos.add(new BufferedInputStream(new FileInputStream(file), buffer.length));
        this.bufferSize = bufferSize;
    }

    @Inject
    public FileWriter(File file, Closables clos) throws FileNotFoundException {
        this(file, clos, DEFAULT_BUFFER_SIZE);
    }

    @Override
    public void operationComplete(ChannelFuture f) throws Exception {
        if (!f.channel().isOpen()) {
            return;
        }
        ByteBuf buf = f.channel().alloc().buffer(bufferSize);
        int bytes = buf.writeBytes(stream, bufferSize);
        if (bytes == -1) {
            stream.close();
            f.channel().writeAndFlush(LastHttpContent.EMPTY_LAST_CONTENT).addListener(CLOSE);
            return;
        }
        f = f.channel().writeAndFlush(new DefaultHttpContent(buf));
        f.addListener(this);
    }
}