All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ryantenney.metrics.spring.TimedMethodInterceptor Maven / Gradle / Ivy

/*
 * Copyright 2012 Ryan W Tenney (http://ryan.10e.us)
 *            and Martello Technologies (http://martellotech.com)
 *
 * 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 com.ryantenney.metrics.spring;

import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.Map;

import org.aopalliance.intercept.MethodInterceptor;
import org.aopalliance.intercept.MethodInvocation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.aop.Pointcut;
import org.springframework.aop.support.annotation.AnnotationMatchingPointcut;
import org.springframework.core.Ordered;
import org.springframework.util.ReflectionUtils;
import org.springframework.util.ReflectionUtils.MethodCallback;
import org.springframework.util.ReflectionUtils.MethodFilter;

import com.codahale.metrics.MetricRegistry;
import com.codahale.metrics.Timer;
import com.codahale.metrics.annotation.Timed;

class TimedMethodInterceptor implements MethodInterceptor, MethodCallback, Ordered {

	private static final Logger LOG = LoggerFactory.getLogger(TimedMethodInterceptor.class);

	public static final Pointcut POINTCUT = new AnnotationMatchingPointcut(null, Timed.class);
	public static final MethodFilter METHOD_FILTER = new AnnotationFilter(Timed.class);

	private final MetricRegistry metrics;
	private final Class targetClass;
	private final Map timers;

	public TimedMethodInterceptor(final MetricRegistry metrics, final Class targetClass) {
		this.metrics = metrics;
		this.targetClass = targetClass;
		this.timers = new HashMap();

		LOG.debug("Creating method interceptor for class {}", targetClass.getCanonicalName());
		LOG.debug("Scanning for @Timed annotated methods");

		ReflectionUtils.doWithMethods(targetClass, this, METHOD_FILTER);
	}

	@Override
	public Object invoke(MethodInvocation invocation) throws Throwable {
		final Timer timer = timers.get(MethodKey.forMethod(invocation.getMethod()));
		final com.codahale.metrics.Timer.Context timerCtx = timer != null ? timer.time() : null;
		try {
			return invocation.proceed();
		}
		finally {
			if (timerCtx != null) {
				timerCtx.close();
			}
		}
	}

	@Override
	public void doWith(Method method) throws IllegalAccessException {
		final Timed annotation = method.getAnnotation(Timed.class);
		final String metricName = Util.forTimedMethod(targetClass, method, annotation);
		final MethodKey methodKey = MethodKey.forMethod(method);
		final Timer timer = metrics.timer(metricName);

		timers.put(methodKey, timer);

		LOG.debug("Created Timer {} for method {}", metricName, methodKey);
	}

	@Override
	public int getOrder() {
		return HIGHEST_PRECEDENCE;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy