Class PerformanceInterceptorServiceImpl
java.lang.Object
org.apache.avalon.framework.logger.AbstractLogEnabled
org.apache.fulcrum.yaafi.interceptor.baseservice.BaseInterceptorServiceImpl
org.apache.fulcrum.yaafi.interceptor.performance.PerformanceInterceptorServiceImpl
- All Implemented Interfaces:
org.apache.avalon.framework.configuration.Configurable
,org.apache.avalon.framework.configuration.Reconfigurable
,org.apache.avalon.framework.context.Contextualizable
,org.apache.avalon.framework.logger.LogEnabled
,org.apache.avalon.framework.thread.ThreadSafe
,AvalonInterceptorService
,PerformanceInterceptorService
public class PerformanceInterceptorServiceImpl
extends BaseInterceptorServiceImpl
implements PerformanceInterceptorService, org.apache.avalon.framework.configuration.Reconfigurable, org.apache.avalon.framework.context.Contextualizable, org.apache.avalon.framework.thread.ThreadSafe
A service logging the execution time of service invocations.
- Author:
- Siegfried Goeschl
-
Field Summary
Fields inherited from interface org.apache.fulcrum.yaafi.framework.interceptor.AvalonInterceptorService
ON_ENTRY, ON_ERROR, ON_EXIT
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(org.apache.avalon.framework.configuration.Configuration configuration) protected void
createStopWatch
(AvalonInterceptorContext interceptorContext) Creates a stop watchprotected StopWatch
getStopWatch
(AvalonInterceptorContext interceptorContext) Gets the stop watchprotected void
log
(int mode, AvalonInterceptorContext interceptorContext, StopWatch stopWatch) Logs the execution time.void
onEntry
(AvalonInterceptorContext interceptorContext) Called before a service method is invoked.void
onError
(AvalonInterceptorContext interceptorContext, Throwable t) Called when a service method throws an exeptionvoid
onExit
(AvalonInterceptorContext interceptorContext, Object result) Called after a service method was invoked.void
reconfigure
(org.apache.avalon.framework.configuration.Configuration configuration) protected String
Prints the argument list.protected String
toString
(AvalonInterceptorContext interceptorContext, StopWatch stopWatch, int mode) Create the log message for the performance logfile.Methods inherited from class org.apache.fulcrum.yaafi.interceptor.baseservice.BaseInterceptorServiceImpl
contextualize, getClassLoader, getServiceApplicationDir, getServiceManager, getServiceName, getServiceTempDir, isEnabled, isServiceMonitored, makeAbsoluteFile
Methods inherited from class org.apache.avalon.framework.logger.AbstractLogEnabled
enableLogging, getLogger, setupLogger, setupLogger, setupLogger
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.apache.avalon.framework.context.Contextualizable
contextualize
-
Constructor Details
-
PerformanceInterceptorServiceImpl
public PerformanceInterceptorServiceImpl()Constructor
-
-
Method Details
-
configure
public void configure(org.apache.avalon.framework.configuration.Configuration configuration) throws org.apache.avalon.framework.configuration.ConfigurationException - Specified by:
configure
in interfaceorg.apache.avalon.framework.configuration.Configurable
- Overrides:
configure
in classBaseInterceptorServiceImpl
- Throws:
org.apache.avalon.framework.configuration.ConfigurationException
- See Also:
-
reconfigure
public void reconfigure(org.apache.avalon.framework.configuration.Configuration configuration) throws org.apache.avalon.framework.configuration.ConfigurationException - Specified by:
reconfigure
in interfaceorg.apache.avalon.framework.configuration.Reconfigurable
- Overrides:
reconfigure
in classBaseInterceptorServiceImpl
- Throws:
org.apache.avalon.framework.configuration.ConfigurationException
- See Also:
-
onEntry
Description copied from interface:AvalonInterceptorService
Called before a service method is invoked.- Specified by:
onEntry
in interfaceAvalonInterceptorService
- Overrides:
onEntry
in classBaseInterceptorServiceImpl
- Parameters:
interceptorContext
- shared interceptor context- See Also:
-
onError
Description copied from interface:AvalonInterceptorService
Called when a service method throws an exeption- Specified by:
onError
in interfaceAvalonInterceptorService
- Overrides:
onError
in classBaseInterceptorServiceImpl
- Parameters:
interceptorContext
- shared interceptor contextt
- the resulting exception- See Also:
-
onExit
Description copied from interface:AvalonInterceptorService
Called after a service method was invoked.- Specified by:
onExit
in interfaceAvalonInterceptorService
- Overrides:
onExit
in classBaseInterceptorServiceImpl
- Parameters:
interceptorContext
- shared interceptor contextresult
- the result of the invocation- See Also:
-
createStopWatch
Creates a stop watch- Parameters:
interceptorContext
- the current interceptor context
-
getStopWatch
Gets the stop watch- Parameters:
interceptorContext
- the current interceptor context- Returns:
- the stop watch
-
log
Logs the execution time.- Parameters:
mode
- the invocation mode (onEntry, onExit, onError)interceptorContext
- the current interceptor contextstopWatch
- the stop watch
-
toString
protected String toString(AvalonInterceptorContext interceptorContext, StopWatch stopWatch, int mode) Create the log message for the performance logfile.- Parameters:
interceptorContext
- the contextstopWatch
- the stopwatchmode
- the mode (onEntry, onExit, onError)- Returns:
- the log message
-
toString
Prints the argument list.- Parameters:
args
- array of arguments- Returns:
- the debug output
-