org.apache.wicket.devutils.stateless.StatelessChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.ops4j.pax.wicket.service Show documentation
Show all versions of org.ops4j.pax.wicket.service Show documentation
Pax Wicket Service is an OSGi extension of the Wicket framework, allowing for dynamic loading and
unloading of Wicket components and pageSources.
/*
* 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.devutils.stateless;
import org.apache.wicket.Component;
import org.apache.wicket.MarkupContainer;
import org.apache.wicket.Page;
import org.apache.wicket.application.IComponentOnBeforeRenderListener;
import org.apache.wicket.util.visit.IVisit;
import org.apache.wicket.util.visit.IVisitor;
/**
* Stateless checker. Checks if components with {@link StatelessComponent} annotation are really
* stateless. This is a utility that is intended for use primarily during development. If you add an
* instance of this class to your application, it will check all components or pages marked with the
* StatelessComponent annotation to make sure that they are stateless as you intended.
*
* This is useful when trying to maintain stateless pages since it is very easy to inadvertently add
* a component to a page that internally uses stateful links, etc.
*
* @author Marat Radchenko
* @see StatelessComponent
*/
public class StatelessChecker implements IComponentOnBeforeRenderListener
{
/**
* Returns true
if checker must check given component, false
* otherwise.
*
* @param component
* component to check.
* @return true
if checker must check given component.
*/
protected boolean mustCheck(final Component component)
{
final StatelessComponent ann = component.getClass().getAnnotation(StatelessComponent.class);
return (ann != null) && ann.enabled();
}
/**
* @see org.apache.wicket.application.IComponentOnBeforeRenderListener#onBeforeRender(org.apache.wicket.Component)
*/
public void onBeforeRender(final Component component)
{
if (mustCheck(component))
{
final IVisitor visitor = new IVisitor()
{
public void component(final Component comp, final IVisit visit)
{
if ((component instanceof Page) && mustCheck(comp))
{
// Do not go deeper, because this component will be
// checked by checker
// itself.
// Actually we could go deeper but that would mean we
// traverse it twice
// (for current component and for inspected one).
// We go deeper for Page because full tree will be
// inspected during
// isPageStateless call.
visit.dontGoDeeper();
}
else if (!comp.isStateless())
{
visit.stop(comp);
}
else
{
// continue
}
}
};
final String msg = "'" + component + "' claims to be stateless but isn't.";
if (!component.isStateless())
{
throw new IllegalArgumentException(msg +
" Possible reasons: no stateless hint, statefull behaviors");
}
if (component instanceof MarkupContainer)
{
// Traverse children
final Object o = ((MarkupContainer)component).visitChildren(visitor);
if (o != null)
{
throw new IllegalArgumentException(msg + " Offending component: " + o);
}
}
if (component instanceof Page)
{
final Page p = (Page)component;
if (!p.isBookmarkable())
{
throw new IllegalArgumentException(msg +
" Only bookmarkable pages can be stateless");
}
if (!p.isPageStateless())
{
throw new IllegalArgumentException(msg + " for unknown reason");
}
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy