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

org.eclipse.jetty.server.handler.FileBufferedResponseHandler Maven / Gradle / Ivy

There is a newer version: 12.0.11
Show newest version
//
// ========================================================================
// Copyright (c) 1995-2022 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//

package org.eclipse.jetty.server.handler;

import java.io.File;
import java.nio.file.Path;
import java.util.Objects;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * 

* A Handler that can apply a * mechanism to buffer the entire response content until the output is closed. * This allows the commit to be delayed until the response is complete and thus * headers and response status can be changed while writing the body. *

*

* Note that the decision to buffer is influenced by the headers and status at the * first write, and thus subsequent changes to those headers will not influence the * decision to buffer or not. *

*

* Note also that there are no memory limits to the size of the buffer, thus * this handler can represent an unbounded memory commitment if the content * generated can also be unbounded. *

*/ public class FileBufferedResponseHandler extends BufferedResponseHandler { private static final Logger LOG = LoggerFactory.getLogger(FileBufferedResponseHandler.class); private Path _tempDir = new File(System.getProperty("java.io.tmpdir")).toPath(); public Path getTempDir() { return _tempDir; } public void setTempDir(Path tempDir) { _tempDir = Objects.requireNonNull(tempDir); } // TODO /* @Override protected BufferedInterceptor newBufferedInterceptor(HttpChannel httpChannel, Interceptor interceptor) { return new FileBufferedInterceptor(httpChannel, interceptor); } class FileBufferedInterceptor implements BufferedResponseHandler.BufferedInterceptor { private static final int MAX_MAPPED_BUFFER_SIZE = Integer.MAX_VALUE / 2; private final Interceptor _next; private final HttpChannel _channel; private Boolean _aggregating; private Path _filePath; private OutputStream _fileOutputStream; public FileBufferedInterceptor(HttpChannel httpChannel, Interceptor interceptor) { _next = interceptor; _channel = httpChannel; } @Override public Interceptor getNextInterceptor() { return _next; } @Override public void resetBuffer() { dispose(); BufferedInterceptor.super.resetBuffer(); } protected void dispose() { IO.close(_fileOutputStream); _fileOutputStream = null; _aggregating = null; if (_filePath != null) { try { Files.delete(_filePath); } catch (Throwable t) { if (LOG.isDebugEnabled()) LOG.debug("Could not immediately delete file (delaying to jvm exit) {}", _filePath, t); _filePath.toFile().deleteOnExit(); } _filePath = null; } } @Override public void write(ByteBuffer content, boolean last, Callback callback) { if (LOG.isDebugEnabled()) LOG.debug("{} write last={} {}", this, last, BufferUtil.toDetailString(content)); // If we are not committed, must decide if we should aggregate or not. if (_aggregating == null) _aggregating = shouldBuffer(_channel, last); // If we are not aggregating, then handle normally. if (!_aggregating) { getNextInterceptor().write(content, last, callback); return; } if (LOG.isDebugEnabled()) LOG.debug("{} aggregating", this); try { if (BufferUtil.hasContent(content)) aggregate(content); } catch (Throwable t) { dispose(); callback.failed(t); return; } if (last) commit(callback); else callback.succeeded(); } private void aggregate(ByteBuffer content) throws IOException { if (_fileOutputStream == null) { // Create a new OutputStream to a file. _filePath = Files.createTempFile(_tempDir, "BufferedResponse", ""); _fileOutputStream = Files.newOutputStream(_filePath, StandardOpenOption.WRITE); } BufferUtil.writeTo(content, _fileOutputStream); } private void commit(Callback callback) { if (_fileOutputStream == null) { // We have no content to write, signal next interceptor that we are finished. getNextInterceptor().write(BufferUtil.EMPTY_BUFFER, true, callback); return; } try { _fileOutputStream.close(); _fileOutputStream = null; } catch (Throwable t) { dispose(); callback.failed(t); return; } // Create an iterating callback to do the writing IteratingCallback icb = new IteratingCallback() { private final long fileLength = _filePath.toFile().length(); private long _pos = 0; private boolean _last = false; @Override protected Action process() throws Exception { if (_last) return Action.SUCCEEDED; long len = Math.min(MAX_MAPPED_BUFFER_SIZE, fileLength - _pos); _last = (_pos + len == fileLength); ByteBuffer buffer = BufferUtil.toMappedBuffer(_filePath, _pos, len); getNextInterceptor().write(buffer, _last, this); _pos += len; return Action.SCHEDULED; } @Override protected void onCompleteSuccess() { dispose(); callback.succeeded(); } @Override protected void onCompleteFailure(Throwable cause) { dispose(); callback.failed(cause); } }; icb.iterate(); } } */ }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy