/**
* JBoss, Home of Professional Open Source
* Copyright ${year}, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.arquillian.rusheye.parser;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
import java.util.LinkedHashSet;
import java.util.Set;
import org.arquillian.rusheye.listener.SuiteListener;
import org.arquillian.rusheye.suite.VisualSuite;
/**
* @author <a href="mailto:lfryc@redhat.com">Lukas Fryc</a>
* @version $Revision$
*/
public class Handler {
private Context context = new ListeningContext();
private VisualSuite visualSuite;
private Set<SuiteListener> parserListeners;
public Handler(Set<SuiteListener> parserListeners) {
this.parserListeners = parserListeners;
}
public VisualSuite getVisualSuite() {
return visualSuite;
}
public void setVisualSuite(VisualSuite visualSuite) {
this.visualSuite = visualSuite;
}
Context getContext() {
return context;
}
private class ListeningContext extends Context implements InvocationHandler {
SuiteListener wrappedListener = (SuiteListener) Proxy.newProxyInstance(Handler.this.getClass()
.getClassLoader(), new Class<?>[] {SuiteListener.class}, this);
@Override
public SuiteListener invokeListeners() {
return wrappedListener;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
Set<SuiteListener> listeners = new LinkedHashSet<SuiteListener>(parserListeners);
for (SuiteListener listener : listeners) {
Method wrappedMethod = listener.getClass().getMethod(method.getName(), method.getParameterTypes());
try {
wrappedMethod.invoke(listener, args);
} catch (InvocationTargetException e) {
if (e.getCause() instanceof RuntimeException) {
throw (RuntimeException) e.getCause();
} else {
throw new RuntimeException(e.getCause());
}
} catch (Exception e) {
throw new IllegalStateException("unexpected invocation exception: " + e.getMessage(), e);
}
}
return null;
}
}
}