org.apache.wicket.markup.DefaultMarkupResourceStreamProvider Maven / Gradle / Ivy
Show all versions of org.ops4j.pax.wicket.service Show documentation
/*
* 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.markup;
import java.util.Locale;
import org.apache.wicket.Application;
import org.apache.wicket.MarkupContainer;
import org.apache.wicket.util.resource.IResourceStream;
import org.apache.wicket.util.resource.locator.IResourceStreamLocator;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Wicket default implementation for loading the markup resource stream associated with a
* MarkupContainer.
*
* @author Jonathan Locke
* @author Juergen Donnerstag
*/
public class DefaultMarkupResourceStreamProvider implements IMarkupResourceStreamProvider
{
/** Log for reporting. */
private static final Logger log = LoggerFactory.getLogger(DefaultMarkupResourceStreamProvider.class);
/**
* Constructor.
*/
public DefaultMarkupResourceStreamProvider()
{
}
/**
* Create a new markup resource stream for the container.
*
* Note: it will only called once, the IResourceStream will be cached by MarkupCache.
*
* Note: IResourceStreamLocators should be used in case the strategy to find a markup resource
* should be extended for ALL components of your application.
*
* @see org.apache.wicket.util.resource.locator.IResourceStreamLocator
* @see org.apache.wicket.markup.DefaultMarkupResourceStreamProvider
*
* @param container
* @param containerClass
* The container the markup should be associated with
* @return A IResourceStream if the resource was found
*/
public IResourceStream getMarkupResourceStream(final MarkupContainer container,
Class> containerClass)
{
// Get locator to search for the resource
final IResourceStreamLocator locator = Application.get()
.getResourceSettings()
.getResourceStreamLocator();
String style = container.getStyle();
String variation = container.getVariation();
Locale locale = container.getLocale();
MarkupType markupType = container.getMarkupType();
String ext = (markupType != null ? markupType.getExtension() : null);
// Markup is associated with the containers class. Walk up the class
// hierarchy up to MarkupContainer to find the containers markup
// resource.
while (containerClass != MarkupContainer.class)
{
String path = containerClass.getName().replace('.', '/');
IResourceStream resourceStream = locator.locate(container.getClass(), path, style,
variation, locale, ext, false);
// Did we find it already?
if (resourceStream != null)
{
return new MarkupResourceStream(resourceStream, new ContainerInfo(container),
containerClass);
}
// Walk up the class hierarchy one level, if markup has not
// yet been found
containerClass = containerClass.getSuperclass();
}
return null;
}
}