org.jabsorb.callback.CallbackController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.portal.workflow.kaleo.service
Show all versions of com.liferay.portal.workflow.kaleo.service
Liferay Portal Workflow Kaleo Service
/*
* jabsorb - a Java to JavaScript Advanced Object Request Broker
* http://www.jabsorb.org
*
* Copyright 2007-2009 The jabsorb team
*
* based on original code from
* JSON-RPC-Java - a JSON-RPC to Java Bridge with dynamic invocation
*
* Copyright Metaparadigm Pte. Ltd. 2004.
* Michael Clark
*
* Licensed 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.jabsorb.callback;
import java.io.Serializable;
import java.lang.reflect.AccessibleObject;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Class that is instantiated per bridge to maintain the list of callbacks and
* provides an interface to invoke them.
*/
public class CallbackController implements Serializable
{
/**
* Generated version id.
*/
private final static long serialVersionUID = 3;
/**
* The log used for this class.
*/
private final static Logger log = LoggerFactory
.getLogger(CallbackController.class);
/**
* Holds all callbacks registered with this controller. Type: CallbackData
*/
private Set callbackSet;
/**
* Default constructor.
*/
public CallbackController()
{
callbackSet = new HashSet();
}
/**
* Calls the 'invocation Error' callback handler.
*
* @param context The transport context (the HttpServletRequest object in the
* case of the HTTP transport).
* @param instance The object instance or null if it is a static method.
* @param accessibleObject Method/constructor that failed the invocation.
* @param error Error resulting from the invocation.
*/
public void errorCallback(Object context, Object instance,
AccessibleObject accessibleObject, Throwable error)
{
synchronized (callbackSet)
{
Iterator i = callbackSet.iterator();
while (i.hasNext())
{
CallbackData cbdata = (CallbackData) i.next();
if (cbdata.understands(context)
&& (cbdata.getCallback() instanceof ErrorInvocationCallback))
{
ErrorInvocationCallback ecb = (ErrorInvocationCallback) cbdata
.getCallback();
try
{
ecb.invocationError(context, instance, accessibleObject, error);
}
catch (Throwable th)
{
// Ignore all errors in callback, don't want
// event listener to bring everything to its knees.
}
}
}
}
}
/**
* Calls the 'postInvoke' callback handler.
*
* @param context The transport context (the HttpServletRequest object in the
* case of the HTTP transport).
* @param instance The object instance or null if it is a static method.
* @param accessibleObject The method/constructor that was just called.
* @param result The object that was returned.
* @throws Exception if postInvoke fails
*/
public void postInvokeCallback(Object context, Object instance,
AccessibleObject accessibleObject, Object result) throws Exception
{
synchronized (callbackSet)
{
Iterator i = callbackSet.iterator();
while (i.hasNext())
{
CallbackData cbdata = (CallbackData) i.next();
if (cbdata.understands(context))
{
cbdata.getCallback().postInvoke(context, instance, accessibleObject,
result);
}
}
}
}
/**
* Calls the 'preInvoke' callback handler.
*
* @param context The transport context (the HttpServletRequest object in the
* case of the HTTP transport).
* @param instance The object instance or null if it is a static method.
* @param accessibleObject The method/constructor that is about to be called.
* @param arguments The argements to be passed to the method.
* @throws Exception If preInvoke fails
*/
public void preInvokeCallback(Object context, Object instance,
AccessibleObject accessibleObject, Object arguments[]) throws Exception
{
synchronized (callbackSet)
{
Iterator i = callbackSet.iterator();
while (i.hasNext())
{
CallbackData cbdata = (CallbackData) i.next();
if (cbdata.understands(context))
{
cbdata.getCallback().preInvoke(context, instance, accessibleObject,
arguments);
}
}
}
}
/**
* Registers a callback to be called before and after method invocation
*
* @param callback The object implementing the InvocationCallback Interface
* @param contextInterface The type of transport Context interface the
* callback is interested in eg. HttpServletRequest.class for the
* servlet transport.
*/
public void registerCallback(InvocationCallback callback,
Class contextInterface)
{
synchronized (callbackSet)
{
callbackSet.add(new CallbackData(callback, contextInterface));
}
if (log.isDebugEnabled())
{
log.debug("registered callback " + callback.getClass().getName()
+ " with context interface " + contextInterface.getName());
}
}
/**
* Unregisters a callback
*
* @param callback The previously registered InvocationCallback object
* @param contextInterface The previously registered transport Context
* interface.
*/
public void unregisterCallback(InvocationCallback callback,
Class contextInterface)
{
synchronized (callbackSet)
{
callbackSet.remove(new CallbackData(callback, contextInterface));
}
if (log.isDebugEnabled())
{
log.debug("unregistered callback " + callback.getClass().getName()
+ " with context " + contextInterface.getName());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy