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

org.eclipse.jetty.http.content.PreCompressedHttpContentFactory Maven / Gradle / Ivy

There is a newer version: 12.1.0.alpha0
Show newest version
//
// ========================================================================
// Copyright (c) 1995 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.http.content;

import java.io.IOException;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

import org.eclipse.jetty.http.CompressedContentFormat;
import org.eclipse.jetty.http.content.HttpContent.Factory;

/**
 * This {@link HttpContent.Factory} populates the {@link HttpContent#getPreCompressedContentFormats()} field for any
 * {@link HttpContent} fetched through this factory.
 */
public class PreCompressedHttpContentFactory implements HttpContent.Factory
{
    private final HttpContent.Factory _factory;
    private final List _preCompressedFormats;

    public PreCompressedHttpContentFactory(Factory factory, CompressedContentFormat[] preCompressedFormats)
    {
        this(factory, Arrays.asList(preCompressedFormats));
    }

    public PreCompressedHttpContentFactory(HttpContent.Factory factory, List preCompressedFormats)
    {
        _factory = factory;
        _preCompressedFormats = preCompressedFormats;
    }

    @Override
    public HttpContent getContent(String pathInContext) throws IOException
    {
        HttpContent content = _factory.getContent(pathInContext);
        if (content == null)
            return null;

        Set compressedFormats = new HashSet<>();
        for (CompressedContentFormat contentFormat : _preCompressedFormats)
        {
            HttpContent preCompressedContent = _factory.getContent(pathInContext + contentFormat.getExtension());
            if (preCompressedContent != null)
                compressedFormats.add(contentFormat);
        }

        return new CompressedFormatsHttpContent(content, compressedFormats);
    }

    @Override
    public String toString()
    {
        return "%s@%x[%s,%s]".formatted(getClass().getSimpleName(), hashCode(), _factory, _preCompressedFormats);
    }

    private static class CompressedFormatsHttpContent extends HttpContent.Wrapper
    {
        private final Set compressedFormats;

        public CompressedFormatsHttpContent(HttpContent content, Set compressedFormats)
        {
            super(content);
            this.compressedFormats = compressedFormats;
        }

        @Override
        public Set getPreCompressedContentFormats()
        {
            return compressedFormats;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy