org.ambraproject.wombat.config.theme.InternalTheme.java Source code

Java tutorial

Introduction

Here is the source code for org.ambraproject.wombat.config.theme.InternalTheme.java

Source

/*
 * Copyright (c) 2017 Public Library of Science
 *
 * 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 org.ambraproject.wombat.config.theme;

import com.google.common.base.Preconditions;
import com.google.common.collect.Sets;
import freemarker.cache.TemplateLoader;
import freemarker.cache.WebappTemplateLoader;

import javax.servlet.ServletContext;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.net.URLConnection;
import java.util.ArrayDeque;
import java.util.Collection;
import java.util.Deque;
import java.util.List;
import java.util.Set;

/**
 * A theme defined within the webapp.
 */
public class InternalTheme extends Theme {

    private final ServletContext servletContext;
    private final String resourceRoot;
    private final WebappTemplateLoader templateLoader;

    public InternalTheme(String key, List<? extends Theme> parents, ServletContext servletContext,
            String resourcePath) {
        super(key, parents);
        this.servletContext = Preconditions.checkNotNull(servletContext);
        this.resourceRoot = Preconditions.checkNotNull(resourcePath);
        this.templateLoader = new WebappTemplateLoader(servletContext, resourcePath);
    }

    @Override
    public TemplateLoader getTemplateLoader() throws IOException {
        return templateLoader;
    }

    @Override
    protected InputStream fetchStaticResource(String path) throws IOException {
        return servletContext.getResourceAsStream(resourceRoot + path);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    protected ResourceAttributes fetchResourceAttributes(String path) throws IOException {
        URL resource = servletContext.getResource(resourceRoot + path);
        if (resource == null) {
            return null;
        }
        URLConnection conn = resource.openConnection();
        return conn.getContentLengthLong() > 0 ? new UrlConnFileResourceAttributes(conn) : null;
    }

    private static class UrlConnFileResourceAttributes implements ResourceAttributes {
        private final long lastModified;
        private final long contentLength;

        protected UrlConnFileResourceAttributes(URLConnection conn) {
            contentLength = conn.getContentLengthLong();
            lastModified = conn.getLastModified();
        }

        @Override
        public long getLastModified() {
            return lastModified;
        }

        @Override
        public long getContentLength() {
            return contentLength;
        }
    }

    @Override
    protected Collection<String> fetchStaticResourcePaths(String root) throws IOException {
        String contextRoot = resourceRoot + root;

        Set<String> relativePaths = Sets.newTreeSet();
        Deque<String> queue = new ArrayDeque<>();
        queue.add(contextRoot);
        while (!queue.isEmpty()) {
            String path = queue.removeFirst();
            if (path.endsWith("/")) {
                Set<String> childPaths = servletContext.getResourcePaths(path);
                if (childPaths != null) {
                    for (String childPath : childPaths) {
                        queue.add(childPath);
                    }
                }
            } else {
                relativePaths.add(path.substring(contextRoot.length()));
            }
        }
        return relativePaths;
    }

    @Override
    public String describeSource() {
        return "Built-in: " + resourceRoot;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o)
            return true;
        if (o == null || getClass() != o.getClass())
            return false;
        if (!super.equals(o))
            return false;
        return resourceRoot.equals(((InternalTheme) o).resourceRoot);
    }

    @Override
    public int hashCode() {
        return 31 * super.hashCode() + resourceRoot.hashCode();
    }

}