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 wicket-devutils Show documentation
Show all versions of wicket-devutils Show documentation
Wicket development utilities provide helpful features that
are typically used during development only, but may be
turned on for additional production debugging.
/*
* 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.behavior.Behavior;
import org.apache.wicket.util.lang.Classes;
import org.apache.wicket.util.string.StringList;
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();
}
/**
* The given component claims to be stateless but isn't.
*
* @param e StatelessCheckFailureException
*/
protected void fail(StatelessCheckFailureException e)
{
throw e;
}
/**
* @see org.apache.wicket.application.IComponentOnBeforeRenderListener#onBeforeRender(org.apache.wicket.Component)
*/
@Override
public void onBeforeRender(final Component component)
{
if (mustCheck(component))
{
final IVisitor visitor = new IVisitor()
{
@Override
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
}
}
};
if (component.isStateless() == false)
{
StringList statefulBehaviors = new StringList();
for (Behavior b : component.getBehaviors())
{
if (b.getStatelessHint(component) == false)
{
statefulBehaviors.add(Classes.name(b.getClass()));
}
}
String reason;
if (statefulBehaviors.size() == 0)
{
reason = " Possible reason: no stateless hint";
}
else
{
reason = " Stateful behaviors: " + statefulBehaviors.join();
}
fail(new StatelessCheckFailureException(component, reason));
return;
}
if (component instanceof MarkupContainer)
{
MarkupContainer container = ((MarkupContainer)component);
// Traverse children
final Object o = container.visitChildren(visitor);
if (o != null)
{
fail(new StatelessCheckFailureException(container, " Offending component: " + o));
return;
}
}
if (component instanceof Page)
{
final Page p = (Page)component;
if (!p.isBookmarkable())
{
fail(new StatelessCheckFailureException(p, " Only bookmarkable pages can be stateless"));
return;
}
if (!p.isPageStateless())
{
fail(new StatelessCheckFailureException(p, " for unknown reason"));
return;
}
}
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy