org.apache.wicket.atmosphere.EventSubscription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wicket-atmosphere Show documentation
Show all versions of wicket-atmosphere Show documentation
Wicket-Atmosphere provides integration of the Atmosphere Framework in Wicket.
/*
* 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.atmosphere;
import java.lang.reflect.Method;
import org.apache.wicket.Component;
import org.apache.wicket.WicketRuntimeException;
import org.apache.wicket.behavior.Behavior;
import com.google.common.base.Objects;
import com.google.common.base.Predicate;
import com.google.common.base.Predicates;
/**
* The subscription of a method on a component to certain events. This is used by {@link EventBus}
* to track the subscriptions.
*
* @author papegaaij
*/
public class EventSubscription
{
private final String componentPath;
private final Integer behaviorIndex;
private final String methodName;
private final Predicate filter;
private final Predicate contextAwareFilter;
/**
* Construct.
*
* @param component
* @param behavior
* @param method
*/
public EventSubscription(Component component, Behavior behavior, Method method)
{
componentPath = component.getPageRelativePath();
behaviorIndex = behavior == null ? null : component.getBehaviorId(behavior);
Class> eventType = method.getParameterTypes()[1];
Subscribe subscribe = method.getAnnotation(Subscribe.class);
filter = Predicates.and(payloadOfType(eventType), createFilter(subscribe.filter()));
contextAwareFilter = createFilter(subscribe.contextAwareFilter());
methodName = method.getName();
}
/**
* Construct.
*
* @param component
* @param behavior
* @param method
* @param filter
* @param contextAwareFilter
*/
public EventSubscription(Component component, Behavior behavior, Method method,
Predicate filter, Predicate contextAwareFilter)
{
componentPath = component.getPageRelativePath();
behaviorIndex = behavior == null ? null : component.getBehaviorId(behavior);
this.filter = filter == null ? new NoFilterPredicate() : filter;
this.contextAwareFilter = contextAwareFilter == null ? new NoFilterPredicate()
: contextAwareFilter;
methodName = method.getName();
}
private static Predicate payloadOfType(final Class> type)
{
return new Predicate()
{
@Override
public boolean apply(AtmosphereEvent input)
{
return type.isInstance(input.getPayload());
}
};
}
private static Predicate createFilter(
Class extends Predicate> filterClass)
{
try
{
return filterClass.newInstance();
}
catch (InstantiationException e)
{
throw new WicketRuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new WicketRuntimeException(e);
}
}
/**
* @return The path of the subscribed component
*/
public String getComponentPath()
{
return componentPath;
}
/**
* @return The index of the subscribed behavior, or null if the subscription is for the
* component itself
*/
public Integer getBehaviorIndex()
{
return behaviorIndex;
}
/**
* @return The filter on incoming events, a combination of the type and the
* {@link Subscribe#filter()} parameter.
*/
public Predicate getFilter()
{
return filter;
}
/**
* @return The context ware filter on incoming events, constructed from the
* {@link Subscribe#contextAwareFilter()} parameter.
*/
public Predicate getContextAwareFilter()
{
return contextAwareFilter;
}
/**
* @return The method that is subscribed
*/
public String getMethodName()
{
return methodName;
}
@Override
public int hashCode()
{
return Objects.hashCode(componentPath, behaviorIndex, methodName);
}
@Override
public boolean equals(Object obj)
{
if (obj instanceof EventSubscription)
{
EventSubscription other = (EventSubscription)obj;
return Objects.equal(componentPath, other.getComponentPath()) &&
Objects.equal(behaviorIndex, other.getBehaviorIndex()) &&
Objects.equal(methodName, other.getMethodName());
}
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy