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

org.apache.wicket.resource.aggregation.AbstractDependencyRespectingResourceAggregatingHeaderResponse Maven / Gradle / Ivy

Go to download

Pax Wicket Service is an OSGi extension of the Wicket framework, allowing for dynamic loading and unloading of Wicket components and pageSources.

There is a newer version: 5.0.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.wicket.resource.aggregation;

import java.util.Set;

import org.apache.wicket.ResourceReference;
import org.apache.wicket.markup.html.IHeaderResponse;
import org.apache.wicket.resource.dependencies.AbstractResourceDependentResourceReference;
import org.apache.wicket.resource.dependencies.AbstractResourceDependentResourceReference.ResourceType;


/**
 * An implementation of AbstractResourceAggregatingHeaderResponse that renders references in the
 * correct order if they are {@link AbstractResourceDependentResourceReference} references, ensuring
 * that dependencies are rendered in the proper order before their parent (even if they do not
 * appear in the same group as the parent of the depdencies).
 * 
 * @author Jeremy Thomerson
 * @param 
 *            the type of ResourceReferenceCollection returned by
 *            {@link #newResourceReferenceCollection()} and passed to all the methods that take a
 *            ResourceReferenceCollection. You will typically just use ResourceReferenceCollection
 *            for this param, unless you are returning a specific type of
 *            ResourceReferenceCollection from your subclass.
 * @param 
 *            the class of the key that you will create from
 *            {@link #newGroupingKey(ResourceReferenceAndStringData)}
 */
public abstract class AbstractDependencyRespectingResourceAggregatingHeaderResponse
	extends AbstractResourceAggregatingHeaderResponse
{

	/**
	 * Construct.
	 * 
	 * @param real
	 *            the header response we decorate
	 */
	public AbstractDependencyRespectingResourceAggregatingHeaderResponse(IHeaderResponse real)
	{
		super(real);
	}

	@Override
	protected void renderCollection(Set alreadyRendered, K key,
		R coll)
	{
		for (ResourceReferenceAndStringData data : coll)
		{
			ResourceReference ref = data.getReference();
			if (ref instanceof AbstractResourceDependentResourceReference)
			{
				AbstractResourceDependentResourceReference parent = (AbstractResourceDependentResourceReference)ref;
				R childColl = newResourceReferenceCollection();
				for (AbstractResourceDependentResourceReference child : parent.getDependentResourceReferences())
				{
					childColl.add(toData(child));
				}
				// render the group of dependencies before the parent
				renderCollection(alreadyRendered, key, childColl);
			}
			// now render the parent since the dependencies are rendered
			renderIfNotAlreadyRendered(alreadyRendered, data);
		}
	}

	private static ResourceReferenceAndStringData toData(
		AbstractResourceDependentResourceReference child)
	{
		boolean css = ResourceType.CSS.equals(child.getResourceType());
		String string = css ? child.getMedia() : child.getUniqueId();
		return new ResourceReferenceAndStringData(child, string, css);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy